mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Added DimensionedField handling to decomposePar
This commit is contained in:
@ -2,6 +2,7 @@ decomposePar.C
|
|||||||
domainDecomposition.C
|
domainDecomposition.C
|
||||||
domainDecompositionMesh.C
|
domainDecompositionMesh.C
|
||||||
domainDecompositionDistribute.C
|
domainDecompositionDistribute.C
|
||||||
|
dimFieldDecomposer.C
|
||||||
fvFieldDecomposer.C
|
fvFieldDecomposer.C
|
||||||
pointFieldDecomposer.C
|
pointFieldDecomposer.C
|
||||||
lagrangianFieldDecomposer.C
|
lagrangianFieldDecomposer.C
|
||||||
|
|||||||
@ -81,6 +81,7 @@ Usage
|
|||||||
#include "pointFields.H"
|
#include "pointFields.H"
|
||||||
|
|
||||||
#include "readFields.H"
|
#include "readFields.H"
|
||||||
|
#include "dimFieldDecomposer.H"
|
||||||
#include "fvFieldDecomposer.H"
|
#include "fvFieldDecomposer.H"
|
||||||
#include "pointFieldDecomposer.H"
|
#include "pointFieldDecomposer.H"
|
||||||
#include "lagrangianFieldDecomposer.H"
|
#include "lagrangianFieldDecomposer.H"
|
||||||
@ -354,6 +355,25 @@ int main(int argc, char *argv[])
|
|||||||
readFields(mesh, objects, volTensorFields);
|
readFields(mesh, objects, volTensorFields);
|
||||||
|
|
||||||
|
|
||||||
|
// Construct the dimensioned fields
|
||||||
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
PtrList<DimensionedField<scalar, volMesh> > dimScalarFields;
|
||||||
|
readFields(mesh, objects, dimScalarFields);
|
||||||
|
|
||||||
|
PtrList<DimensionedField<vector, volMesh> > dimVectorFields;
|
||||||
|
readFields(mesh, objects, dimVectorFields);
|
||||||
|
|
||||||
|
PtrList<DimensionedField<sphericalTensor, volMesh> >
|
||||||
|
dimSphericalTensorFields;
|
||||||
|
readFields(mesh, objects, dimSphericalTensorFields);
|
||||||
|
|
||||||
|
PtrList<DimensionedField<symmTensor, volMesh> > dimSymmTensorFields;
|
||||||
|
readFields(mesh, objects, dimSymmTensorFields);
|
||||||
|
|
||||||
|
PtrList<DimensionedField<tensor, volMesh> > dimTensorFields;
|
||||||
|
readFields(mesh, objects, dimTensorFields);
|
||||||
|
|
||||||
|
|
||||||
// Construct the surface fields
|
// Construct the surface fields
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
PtrList<surfaceScalarField> surfaceScalarFields;
|
PtrList<surfaceScalarField> surfaceScalarFields;
|
||||||
@ -727,19 +747,6 @@ int main(int argc, char *argv[])
|
|||||||
);
|
);
|
||||||
|
|
||||||
// FV fields
|
// FV fields
|
||||||
if
|
|
||||||
(
|
|
||||||
volScalarFields.size()
|
|
||||||
|| volVectorFields.size()
|
|
||||||
|| volSphericalTensorFields.size()
|
|
||||||
|| volSymmTensorFields.size()
|
|
||||||
|| volTensorFields.size()
|
|
||||||
|| surfaceScalarFields.size()
|
|
||||||
|| surfaceVectorFields.size()
|
|
||||||
|| surfaceSphericalTensorFields.size()
|
|
||||||
|| surfaceSymmTensorFields.size()
|
|
||||||
|| surfaceTensorFields.size()
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
fvFieldDecomposer fieldDecomposer
|
fvFieldDecomposer fieldDecomposer
|
||||||
(
|
(
|
||||||
@ -763,16 +770,25 @@ int main(int argc, char *argv[])
|
|||||||
fieldDecomposer.decomposeFields(surfaceTensorFields);
|
fieldDecomposer.decomposeFields(surfaceTensorFields);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Dimensioned fields
|
||||||
|
{
|
||||||
|
dimFieldDecomposer fieldDecomposer
|
||||||
|
(
|
||||||
|
mesh,
|
||||||
|
procMesh,
|
||||||
|
faceProcAddressing,
|
||||||
|
cellProcAddressing
|
||||||
|
);
|
||||||
|
|
||||||
|
fieldDecomposer.decomposeFields(dimScalarFields);
|
||||||
|
fieldDecomposer.decomposeFields(dimVectorFields);
|
||||||
|
fieldDecomposer.decomposeFields(dimSphericalTensorFields);
|
||||||
|
fieldDecomposer.decomposeFields(dimSymmTensorFields);
|
||||||
|
fieldDecomposer.decomposeFields(dimTensorFields);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Point fields
|
// Point fields
|
||||||
if
|
|
||||||
(
|
|
||||||
pointScalarFields.size()
|
|
||||||
|| pointVectorFields.size()
|
|
||||||
|| pointSphericalTensorFields.size()
|
|
||||||
|| pointSymmTensorFields.size()
|
|
||||||
|| pointTensorFields.size()
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
labelIOList pointProcAddressing
|
labelIOList pointProcAddressing
|
||||||
(
|
(
|
||||||
@ -822,21 +838,6 @@ int main(int argc, char *argv[])
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Lagrangian fields
|
// Lagrangian fields
|
||||||
if
|
|
||||||
(
|
|
||||||
lagrangianLabelFields[cloudI].size()
|
|
||||||
|| lagrangianLabelFieldFields[cloudI].size()
|
|
||||||
|| lagrangianScalarFields[cloudI].size()
|
|
||||||
|| lagrangianScalarFieldFields[cloudI].size()
|
|
||||||
|| lagrangianVectorFields[cloudI].size()
|
|
||||||
|| lagrangianVectorFieldFields[cloudI].size()
|
|
||||||
|| lagrangianSphericalTensorFields[cloudI].size()
|
|
||||||
|| lagrangianSphericalTensorFieldFields[cloudI].size()
|
|
||||||
|| lagrangianSymmTensorFields[cloudI].size()
|
|
||||||
|| lagrangianSymmTensorFieldFields[cloudI].size()
|
|
||||||
|| lagrangianTensorFields[cloudI].size()
|
|
||||||
|| lagrangianTensorFieldFields[cloudI].size()
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
fieldDecomposer.decomposeFields
|
fieldDecomposer.decomposeFields
|
||||||
(
|
(
|
||||||
|
|||||||
@ -0,0 +1,52 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2011-2011 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include "dimFieldDecomposer.H"
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::dimFieldDecomposer::dimFieldDecomposer
|
||||||
|
(
|
||||||
|
const fvMesh& completeMesh,
|
||||||
|
const fvMesh& procMesh,
|
||||||
|
const labelList& faceAddressing,
|
||||||
|
const labelList& cellAddressing
|
||||||
|
)
|
||||||
|
:
|
||||||
|
completeMesh_(completeMesh),
|
||||||
|
procMesh_(procMesh),
|
||||||
|
faceAddressing_(faceAddressing),
|
||||||
|
cellAddressing_(cellAddressing)
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::dimFieldDecomposer::~dimFieldDecomposer()
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,130 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2011-2011 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Class
|
||||||
|
Foam::dimFieldDecomposer
|
||||||
|
|
||||||
|
Description
|
||||||
|
Dimensioned field decomposer.
|
||||||
|
|
||||||
|
SourceFiles
|
||||||
|
dimFieldDecomposer.C
|
||||||
|
dimFieldDecomposerDecomposeFields.C
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifndef dimFieldDecomposer_H
|
||||||
|
#define dimFieldDecomposer_H
|
||||||
|
|
||||||
|
#include "fvMesh.H"
|
||||||
|
#include "fvPatchFieldMapper.H"
|
||||||
|
#include "surfaceFields.H"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
namespace Foam
|
||||||
|
{
|
||||||
|
|
||||||
|
class IOobjectList;
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
Class fvFieldDecomposer Declaration
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
class dimFieldDecomposer
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
|
||||||
|
// Private data
|
||||||
|
|
||||||
|
//- Reference to complete mesh
|
||||||
|
const fvMesh& completeMesh_;
|
||||||
|
|
||||||
|
//- Reference to processor mesh
|
||||||
|
const fvMesh& procMesh_;
|
||||||
|
|
||||||
|
//- Reference to face addressing
|
||||||
|
const labelList& faceAddressing_;
|
||||||
|
|
||||||
|
//- Reference to cell addressing
|
||||||
|
const labelList& cellAddressing_;
|
||||||
|
|
||||||
|
|
||||||
|
// Private Member Functions
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construct
|
||||||
|
dimFieldDecomposer(const dimFieldDecomposer&);
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const dimFieldDecomposer&);
|
||||||
|
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
// Constructors
|
||||||
|
|
||||||
|
//- Construct from components
|
||||||
|
dimFieldDecomposer
|
||||||
|
(
|
||||||
|
const fvMesh& completeMesh,
|
||||||
|
const fvMesh& procMesh,
|
||||||
|
const labelList& faceAddressing,
|
||||||
|
const labelList& cellAddressing
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
//- Destructor
|
||||||
|
~dimFieldDecomposer();
|
||||||
|
|
||||||
|
|
||||||
|
// Member Functions
|
||||||
|
|
||||||
|
//- Decompose field
|
||||||
|
template<class Type>
|
||||||
|
tmp<DimensionedField<Type, volMesh> > decomposeField
|
||||||
|
(
|
||||||
|
const DimensionedField<Type, volMesh>& field
|
||||||
|
) const;
|
||||||
|
|
||||||
|
|
||||||
|
//- Decompose llist of fields
|
||||||
|
template<class GeoField>
|
||||||
|
void decomposeFields(const PtrList<GeoField>& fields) const;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
} // End namespace Foam
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
#ifdef NoRepository
|
||||||
|
# include "dimFieldDecomposerDecomposeFields.C"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1,74 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2011-2011 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include "dimFieldDecomposer.H"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
template<class Type>
|
||||||
|
Foam::tmp<Foam::DimensionedField<Type, Foam::volMesh> >
|
||||||
|
Foam::dimFieldDecomposer::decomposeField
|
||||||
|
(
|
||||||
|
const DimensionedField<Type, volMesh>& field
|
||||||
|
) const
|
||||||
|
{
|
||||||
|
// Create and map the internal field values
|
||||||
|
Field<Type> mappedField(field, cellAddressing_);
|
||||||
|
|
||||||
|
// Create the field for the processor
|
||||||
|
return tmp<DimensionedField<Type, volMesh> >
|
||||||
|
(
|
||||||
|
new DimensionedField<Type, volMesh>
|
||||||
|
(
|
||||||
|
IOobject
|
||||||
|
(
|
||||||
|
field.name(),
|
||||||
|
procMesh_.time().timeName(),
|
||||||
|
procMesh_,
|
||||||
|
IOobject::NO_READ,
|
||||||
|
IOobject::NO_WRITE
|
||||||
|
),
|
||||||
|
procMesh_,
|
||||||
|
field.dimensions(),
|
||||||
|
mappedField
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template<class GeoField>
|
||||||
|
void Foam::dimFieldDecomposer::decomposeFields
|
||||||
|
(
|
||||||
|
const PtrList<GeoField>& fields
|
||||||
|
) const
|
||||||
|
{
|
||||||
|
forAll(fields, fieldI)
|
||||||
|
{
|
||||||
|
decomposeField(fields[fieldI])().write();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
Reference in New Issue
Block a user