Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | cfMesh: A library for mesh generation
\\ / O peration |
\\ / A nd | Author: Franjo Juretic (franjo.juretic@c-fields.com)
\\/ M anipulation | Copyright (C) Creative Fields, Ltd.
-------------------------------------------------------------------------------
License
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/>.
Generates boundary layers in the existing mesh, based on the settings
given in meshDict. It also performs necessary quality optimisation.
\*---------------------------------------------------------------------------*/
#include "argList.H"
#include "polyMeshGenModifier.H"
#include "meshOptimizer.H"
using namespace Foam::Module;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
void generateLayer
(
polyMeshGen& mesh,
const dictionary& meshDict,
const bool layers2D
)
const dictionary& bndLayers = meshDict.subDict("boundaryLayers");
label nLayers;
if (bndLayers.readIfPresent("nLayers", nLayers))
else if (bndLayers.found("patchBoundaryLayers"))
{
const dictionary& patchLayers =
bndLayers.subDict("patchBoundaryLayers");
const wordList createLayers = patchLayers.toc();
forAll(createLayers, patchI)
bl.addLayerForPatch(createLayers[patchI]);
}
void meshOptimisation(polyMeshGen& mesh)
{
meshOptimizer mOpt(mesh);
mOpt.optimizeMeshFV();
mOpt.optimizeLowQualityFaces();
mOpt.untangleMeshFV();
mOpt.optimizeBoundaryLayer();
mOpt.untangleMeshFV();
}
void layerRefinement(polyMeshGen& mesh, const dictionary& meshDict)
{
argList::addNote
(
"(cfmesh)\n"
"Generate boundary layers in the existing mesh,"
" based on the settings given in meshDict."
);
#include "setRootCase.H"
#include "createTime.H"
IOdictionary meshDict
(
IOobject
(
"meshDict",
runTime.system(),
runTime,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);
const bool is2DLayer = args.found("2DLayers");
// ************************************************************************* //