/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2015 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 . Application refineWallLayer Description Utility to refine cells next to patches. Takes a patchName and number of layers to refine. Works out cells within these layers and refines those in the wall-normal direction. \*---------------------------------------------------------------------------*/ #include "argList.H" #include "Time.H" #include "polyTopoChange.H" #include "polyTopoChanger.H" #include "mapPolyMesh.H" #include "polyMesh.H" #include "cellCuts.H" #include "cellSet.H" #include "meshCutter.H" using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // int main(int argc, char *argv[]) { #include "addOverwriteOption.H" argList::noParallel(); argList::validArgs.append("patchName"); argList::validArgs.append("edgeWeight"); argList::addOption ( "useSet", "name", "restrict cells to refine based on specified cellSet name" ); #include "setRootCase.H" #include "createTime.H" runTime.functionObjects().off(); #include "createPolyMesh.H" const word oldInstance = mesh.pointsInstance(); const word patchName = args[1]; const scalar weight = args.argRead(2); const bool overwrite = args.optionFound("overwrite"); label patchID = mesh.boundaryMesh().findPatchID(patchName); if (patchID == -1) { FatalErrorIn(args.executable()) << "Cannot find patch " << patchName << endl << "Valid patches are " << mesh.boundaryMesh().names() << exit(FatalError); } const polyPatch& pp = mesh.boundaryMesh()[patchID]; // Cells cut labelHashSet cutCells(4*pp.size()); const labelList& meshPoints = pp.meshPoints(); forAll(meshPoints, pointI) { label meshPointI = meshPoints[pointI]; const labelList& pCells = mesh.pointCells()[meshPointI]; forAll(pCells, pCellI) { cutCells.insert(pCells[pCellI]); } } Info<< "Selected " << cutCells.size() << " cells connected to patch " << pp.name() << endl << endl; // // List of cells to refine // word setName; if (args.optionReadIfPresent("useSet", setName)) { Info<< "Subsetting cells to cut based on cellSet" << setName << nl << endl; cellSet cells(mesh, setName); Info<< "Read " << cells.size() << " cells from cellSet " << cells.instance()/cells.local()/cells.name() << nl << endl; forAllConstIter(cellSet, cells, iter) { cutCells.erase(iter.key()); } Info<< "Removed from cells to cut all the ones not in set " << setName << nl << endl; } // Mark all meshpoints on patch boolList vertOnPatch(mesh.nPoints(), false); forAll(meshPoints, pointI) { const label meshPointI = meshPoints[pointI]; vertOnPatch[meshPointI] = true; } // Mark cut edges. DynamicList