/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\/ 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 . Description Cell layer addition/removal mesh modifier \*---------------------------------------------------------------------------*/ #include "layerAdditionRemoval.H" #include "polyTopoChanger.H" #include "polyMesh.H" #include "Time.H" #include "primitiveMesh.H" #include "polyTopoChange.H" #include "addToRunTimeSelectionTable.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { defineTypeNameAndDebug(layerAdditionRemoval, 0); addToRunTimeSelectionTable ( polyMeshModifier, layerAdditionRemoval, dictionary ); } const Foam::scalar Foam::layerAdditionRemoval::addDelta_ = 0.3; const Foam::scalar Foam::layerAdditionRemoval::removeDelta_ = 0.1; // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // void Foam::layerAdditionRemoval::checkDefinition() { if (!faceZoneID_.active()) { FatalErrorInFunction << "Master face zone named " << faceZoneID_.name() << " cannot be found." << abort(FatalError); } if ( minLayerThickness_ < VSMALL || maxLayerThickness_ < minLayerThickness_ ) { FatalErrorInFunction << "Incorrect layer thickness definition." << abort(FatalError); } label nFaces = topoChanger().mesh().faceZones()[faceZoneID_.index()].size(); reduce(nFaces, sumOp