516 lines
13 KiB
C
516 lines
13 KiB
C
|
/*---------------------------------------------------------------------------*\
|
||
|
========= |
|
||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||
|
\\ / O peration |
|
||
|
\\ / A nd | Copyright held by original author
|
||
|
\\/ 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 2 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, write to the Free Software Foundation,
|
||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
|
||
|
Description
|
||
|
Selects a section of mesh based on a cellSet.
|
||
|
|
||
|
The utility sub-sets the mesh to choose only a part of interest. Check
|
||
|
the setSet/cellSet utilities to see how to select cells based on various.
|
||
|
|
||
|
The mesh will subset all points, faces and cells needed to make a sub-mesh
|
||
|
but will not preserve attached boundary types.
|
||
|
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
#include "fvMeshSubset.H"
|
||
|
#include "argList.H"
|
||
|
#include "cellSet.H"
|
||
|
#include "IOobjectList.H"
|
||
|
#include "volFields.H"
|
||
|
|
||
|
using namespace Foam;
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
|
||
|
template<class Type>
|
||
|
void subsetVolFields
|
||
|
(
|
||
|
const fvMeshSubset& meshSubset,
|
||
|
const wordList& fieldNames,
|
||
|
PtrList<GeometricField<Type, fvPatchField, volMesh> >& subFields
|
||
|
)
|
||
|
{
|
||
|
const fvMesh& baseMesh = meshSubset.baseMesh();
|
||
|
|
||
|
forAll(fieldNames, i)
|
||
|
{
|
||
|
const word& fieldName = fieldNames[i];
|
||
|
|
||
|
Info<< "Subsetting field " << fieldName << endl;
|
||
|
|
||
|
GeometricField<Type, fvPatchField, volMesh> fld
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
fieldName,
|
||
|
baseMesh.time().timeName(),
|
||
|
baseMesh,
|
||
|
IOobject::MUST_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
baseMesh
|
||
|
);
|
||
|
|
||
|
subFields.set(i, meshSubset.interpolate(fld));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
template<class Type>
|
||
|
void subsetSurfaceFields
|
||
|
(
|
||
|
const fvMeshSubset& meshSubset,
|
||
|
const wordList& fieldNames,
|
||
|
PtrList<GeometricField<Type, fvsPatchField, surfaceMesh> >& subFields
|
||
|
)
|
||
|
{
|
||
|
const fvMesh& baseMesh = meshSubset.baseMesh();
|
||
|
|
||
|
forAll(fieldNames, i)
|
||
|
{
|
||
|
const word& fieldName = fieldNames[i];
|
||
|
|
||
|
Info<< "Subsetting field " << fieldName << endl;
|
||
|
|
||
|
GeometricField<Type, fvsPatchField, surfaceMesh> fld
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
fieldName,
|
||
|
baseMesh.time().timeName(),
|
||
|
baseMesh,
|
||
|
IOobject::MUST_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
baseMesh
|
||
|
);
|
||
|
|
||
|
subFields.set(i, meshSubset.interpolate(fld));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
template<class Type>
|
||
|
void subsetPointFields
|
||
|
(
|
||
|
const fvMeshSubset& meshSubset,
|
||
|
const pointMesh& pMesh,
|
||
|
const wordList& fieldNames,
|
||
|
PtrList<GeometricField<Type, pointPatchField, pointMesh> >& subFields
|
||
|
)
|
||
|
{
|
||
|
const fvMesh& baseMesh = meshSubset.baseMesh();
|
||
|
|
||
|
forAll(fieldNames, i)
|
||
|
{
|
||
|
const word& fieldName = fieldNames[i];
|
||
|
|
||
|
Info<< "Subsetting field " << fieldName << endl;
|
||
|
|
||
|
GeometricField<Type, pointPatchField, pointMesh> fld
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
fieldName,
|
||
|
baseMesh.time().timeName(),
|
||
|
baseMesh,
|
||
|
IOobject::MUST_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
pMesh
|
||
|
);
|
||
|
|
||
|
subFields.set(i, meshSubset.interpolate(fld));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Main program:
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
argList::validArgs.append("set");
|
||
|
argList::validOptions.insert("patch", "patch name");
|
||
|
argList::validOptions.insert("overwrite", "");
|
||
|
|
||
|
# include "setRootCase.H"
|
||
|
# include "createTime.H"
|
||
|
# include "createMesh.H"
|
||
|
|
||
|
word setName(args.additionalArgs()[0]);
|
||
|
bool overwrite = args.options().found("overwrite");
|
||
|
|
||
|
|
||
|
Info<< "Reading cell set from " << setName << endl << endl;
|
||
|
|
||
|
// Create mesh subsetting engine
|
||
|
fvMeshSubset meshSubset
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
"set",
|
||
|
runTime.timeName(),
|
||
|
mesh,
|
||
|
IOobject::NO_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
mesh
|
||
|
);
|
||
|
|
||
|
|
||
|
label patchI = -1;
|
||
|
|
||
|
if (args.options().found("patch"))
|
||
|
{
|
||
|
word patchName(args.options()["patch"]);
|
||
|
|
||
|
patchI = mesh.boundaryMesh().findPatchID(patchName);
|
||
|
|
||
|
if (patchI == -1)
|
||
|
{
|
||
|
FatalErrorIn(args.executable()) << "Illegal patch " << patchName
|
||
|
<< nl << "Valid patches are " << mesh.boundaryMesh().names()
|
||
|
<< exit(FatalError);
|
||
|
}
|
||
|
|
||
|
Info<< "Adding exposed internal faces to patch " << patchName << endl
|
||
|
<< endl;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
Info<< "Adding exposed internal faces to a patch called"
|
||
|
<< " \"oldInternalFaces\" (created if nessecary)" << endl
|
||
|
<< endl;
|
||
|
}
|
||
|
|
||
|
|
||
|
cellSet currentSet(mesh, setName);
|
||
|
|
||
|
meshSubset.setLargeCellSubset(currentSet, patchI, true);
|
||
|
|
||
|
IOobjectList objects(mesh, runTime.timeName());
|
||
|
|
||
|
|
||
|
// Read vol fields and subset
|
||
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
wordList scalarNames(objects.names(volScalarField::typeName));
|
||
|
PtrList<volScalarField> scalarFlds(scalarNames.size());
|
||
|
subsetVolFields(meshSubset, scalarNames, scalarFlds);
|
||
|
|
||
|
wordList vectorNames(objects.names(volVectorField::typeName));
|
||
|
PtrList<volVectorField> vectorFlds(vectorNames.size());
|
||
|
subsetVolFields(meshSubset, vectorNames, vectorFlds);
|
||
|
|
||
|
wordList sphericalTensorNames
|
||
|
(
|
||
|
objects.names(volSphericalTensorField::typeName)
|
||
|
);
|
||
|
PtrList<volSphericalTensorField> sphericalTensorFlds
|
||
|
(
|
||
|
sphericalTensorNames.size()
|
||
|
);
|
||
|
subsetVolFields(meshSubset, sphericalTensorNames, sphericalTensorFlds);
|
||
|
|
||
|
wordList symmTensorNames(objects.names(volSymmTensorField::typeName));
|
||
|
PtrList<volSymmTensorField> symmTensorFlds(symmTensorNames.size());
|
||
|
subsetVolFields(meshSubset, symmTensorNames, symmTensorFlds);
|
||
|
|
||
|
wordList tensorNames(objects.names(volTensorField::typeName));
|
||
|
PtrList<volTensorField> tensorFlds(tensorNames.size());
|
||
|
subsetVolFields(meshSubset, tensorNames, tensorFlds);
|
||
|
|
||
|
|
||
|
// Read surface fields and subset
|
||
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
wordList surfScalarNames(objects.names(surfaceScalarField::typeName));
|
||
|
PtrList<surfaceScalarField> surfScalarFlds(surfScalarNames.size());
|
||
|
subsetSurfaceFields(meshSubset, surfScalarNames, surfScalarFlds);
|
||
|
|
||
|
wordList surfVectorNames(objects.names(surfaceVectorField::typeName));
|
||
|
PtrList<surfaceVectorField> surfVectorFlds(surfVectorNames.size());
|
||
|
subsetSurfaceFields(meshSubset, surfVectorNames, surfVectorFlds);
|
||
|
|
||
|
wordList surfSphericalTensorNames
|
||
|
(
|
||
|
objects.names(surfaceSphericalTensorField::typeName)
|
||
|
);
|
||
|
PtrList<surfaceSphericalTensorField> surfSphericalTensorFlds
|
||
|
(
|
||
|
surfSphericalTensorNames.size()
|
||
|
);
|
||
|
subsetSurfaceFields
|
||
|
(
|
||
|
meshSubset,
|
||
|
surfSphericalTensorNames,
|
||
|
surfSphericalTensorFlds
|
||
|
);
|
||
|
|
||
|
wordList surfSymmTensorNames
|
||
|
(
|
||
|
objects.names(surfaceSymmTensorField::typeName)
|
||
|
);
|
||
|
PtrList<surfaceSymmTensorField> surfSymmTensorFlds
|
||
|
(
|
||
|
surfSymmTensorNames.size()
|
||
|
);
|
||
|
subsetSurfaceFields(meshSubset, surfSymmTensorNames, surfSymmTensorFlds);
|
||
|
|
||
|
wordList surfTensorNames(objects.names(surfaceTensorField::typeName));
|
||
|
PtrList<surfaceTensorField> surfTensorFlds(surfTensorNames.size());
|
||
|
subsetSurfaceFields(meshSubset, surfTensorNames, surfTensorFlds);
|
||
|
|
||
|
|
||
|
// Read point fields and subset
|
||
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
pointMesh pMesh(mesh);
|
||
|
|
||
|
wordList pointScalarNames(objects.names(pointScalarField::typeName));
|
||
|
PtrList<pointScalarField> pointScalarFlds(pointScalarNames.size());
|
||
|
subsetPointFields(meshSubset, pMesh, pointScalarNames, pointScalarFlds);
|
||
|
|
||
|
wordList pointVectorNames(objects.names(pointVectorField::typeName));
|
||
|
PtrList<pointVectorField> pointVectorFlds(pointVectorNames.size());
|
||
|
subsetPointFields(meshSubset, pMesh, pointVectorNames, pointVectorFlds);
|
||
|
|
||
|
wordList pointSphericalTensorNames
|
||
|
(
|
||
|
objects.names(pointSphericalTensorField::typeName)
|
||
|
);
|
||
|
PtrList<pointSphericalTensorField> pointSphericalTensorFlds
|
||
|
(
|
||
|
pointSphericalTensorNames.size()
|
||
|
);
|
||
|
subsetPointFields
|
||
|
(
|
||
|
meshSubset,
|
||
|
pMesh,
|
||
|
pointSphericalTensorNames,
|
||
|
pointSphericalTensorFlds
|
||
|
);
|
||
|
|
||
|
wordList pointSymmTensorNames
|
||
|
(
|
||
|
objects.names(pointSymmTensorField::typeName)
|
||
|
);
|
||
|
PtrList<pointSymmTensorField> pointSymmTensorFlds
|
||
|
(
|
||
|
pointSymmTensorNames.size()
|
||
|
);
|
||
|
subsetPointFields
|
||
|
(
|
||
|
meshSubset,
|
||
|
pMesh,
|
||
|
pointSymmTensorNames,
|
||
|
pointSymmTensorFlds
|
||
|
);
|
||
|
|
||
|
wordList pointTensorNames(objects.names(pointTensorField::typeName));
|
||
|
PtrList<pointTensorField> pointTensorFlds(pointTensorNames.size());
|
||
|
subsetPointFields(meshSubset, pMesh, pointTensorNames, pointTensorFlds);
|
||
|
|
||
|
|
||
|
|
||
|
// Write mesh and fields to new time
|
||
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
if (!overwrite)
|
||
|
{
|
||
|
runTime++;
|
||
|
}
|
||
|
|
||
|
Info<< "Writing subsetted mesh and fields to time " << runTime.value()
|
||
|
<< endl;
|
||
|
meshSubset.subMesh().write();
|
||
|
|
||
|
|
||
|
// Write out mesh mapping information
|
||
|
labelIOList pointMap
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
"pointMap",
|
||
|
meshSubset.subMesh().dbDir(),
|
||
|
polyMesh::meshSubDir,
|
||
|
meshSubset.subMesh(),
|
||
|
IOobject::NO_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
meshSubset.pointMap()
|
||
|
);
|
||
|
pointMap.write();
|
||
|
|
||
|
labelIOList faceMap
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
"faceMap",
|
||
|
meshSubset.subMesh().dbDir(),
|
||
|
polyMesh::meshSubDir,
|
||
|
meshSubset.subMesh(),
|
||
|
IOobject::NO_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
meshSubset.faceMap()
|
||
|
);
|
||
|
faceMap.write();
|
||
|
|
||
|
labelIOList cellMap
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
"cellMap",
|
||
|
meshSubset.subMesh().dbDir(),
|
||
|
polyMesh::meshSubDir,
|
||
|
meshSubset.subMesh(),
|
||
|
IOobject::NO_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
meshSubset.cellMap()
|
||
|
);
|
||
|
cellMap.write();
|
||
|
|
||
|
labelIOList patchMap
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
"patchMap",
|
||
|
meshSubset.subMesh().dbDir(),
|
||
|
polyMesh::meshSubDir,
|
||
|
meshSubset.subMesh(),
|
||
|
IOobject::NO_READ,
|
||
|
IOobject::NO_WRITE
|
||
|
),
|
||
|
meshSubset.patchMap()
|
||
|
);
|
||
|
patchMap.write();
|
||
|
|
||
|
|
||
|
// Subsetting adds 'subset' prefix. Rename field to be like original.
|
||
|
forAll(scalarFlds, i)
|
||
|
{
|
||
|
scalarFlds[i].rename(scalarNames[i]);
|
||
|
|
||
|
scalarFlds[i].write();
|
||
|
}
|
||
|
forAll(vectorFlds, i)
|
||
|
{
|
||
|
vectorFlds[i].rename(vectorNames[i]);
|
||
|
|
||
|
vectorFlds[i].write();
|
||
|
}
|
||
|
forAll(sphericalTensorFlds, i)
|
||
|
{
|
||
|
sphericalTensorFlds[i].rename(sphericalTensorNames[i]);
|
||
|
|
||
|
sphericalTensorFlds[i].write();
|
||
|
}
|
||
|
forAll(symmTensorFlds, i)
|
||
|
{
|
||
|
symmTensorFlds[i].rename(symmTensorNames[i]);
|
||
|
|
||
|
symmTensorFlds[i].write();
|
||
|
}
|
||
|
forAll(tensorFlds, i)
|
||
|
{
|
||
|
tensorFlds[i].rename(tensorNames[i]);
|
||
|
|
||
|
tensorFlds[i].write();
|
||
|
}
|
||
|
|
||
|
// Surface ones.
|
||
|
forAll(surfScalarFlds, i)
|
||
|
{
|
||
|
surfScalarFlds[i].rename(surfScalarNames[i]);
|
||
|
|
||
|
surfScalarFlds[i].write();
|
||
|
}
|
||
|
forAll(surfVectorFlds, i)
|
||
|
{
|
||
|
surfVectorFlds[i].rename(surfVectorNames[i]);
|
||
|
|
||
|
surfVectorFlds[i].write();
|
||
|
}
|
||
|
forAll(surfSphericalTensorFlds, i)
|
||
|
{
|
||
|
surfSphericalTensorFlds[i].rename(surfSphericalTensorNames[i]);
|
||
|
|
||
|
surfSphericalTensorFlds[i].write();
|
||
|
}
|
||
|
forAll(surfSymmTensorFlds, i)
|
||
|
{
|
||
|
surfSymmTensorFlds[i].rename(surfSymmTensorNames[i]);
|
||
|
|
||
|
surfSymmTensorFlds[i].write();
|
||
|
}
|
||
|
forAll(surfTensorNames, i)
|
||
|
{
|
||
|
surfTensorFlds[i].rename(surfTensorNames[i]);
|
||
|
|
||
|
surfTensorFlds[i].write();
|
||
|
}
|
||
|
|
||
|
// Point ones
|
||
|
forAll(pointScalarFlds, i)
|
||
|
{
|
||
|
pointScalarFlds[i].rename(pointScalarNames[i]);
|
||
|
|
||
|
pointScalarFlds[i].write();
|
||
|
}
|
||
|
forAll(pointVectorFlds, i)
|
||
|
{
|
||
|
pointVectorFlds[i].rename(pointVectorNames[i]);
|
||
|
|
||
|
pointVectorFlds[i].write();
|
||
|
}
|
||
|
forAll(pointSphericalTensorFlds, i)
|
||
|
{
|
||
|
pointSphericalTensorFlds[i].rename(pointSphericalTensorNames[i]);
|
||
|
|
||
|
pointSphericalTensorFlds[i].write();
|
||
|
}
|
||
|
forAll(pointSymmTensorFlds, i)
|
||
|
{
|
||
|
pointSymmTensorFlds[i].rename(pointSymmTensorNames[i]);
|
||
|
|
||
|
pointSymmTensorFlds[i].write();
|
||
|
}
|
||
|
forAll(pointTensorNames, i)
|
||
|
{
|
||
|
pointTensorFlds[i].rename(pointTensorNames[i]);
|
||
|
|
||
|
pointTensorFlds[i].write();
|
||
|
}
|
||
|
|
||
|
|
||
|
Info << nl << "End" << endl;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|