/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | Version: 3.2 \\ / A nd | Web: http://www.foam-extend.org \\/ M anipulation | For copyright notice see file Copyright ------------------------------------------------------------------------------- License This file is part of foam-extend. foam-extend 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. foam-extend 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 foam-extend. If not, see . 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 "objectRegistry.H" #include "foamTime.H" #include "directTopoChange.H" #include "mapPolyMesh.H" #include "polyMesh.H" #include "cellCuts.H" #include "cellSet.H" #include "meshCutter.H" using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Main program: int main(int argc, char *argv[]) { Foam::argList::noParallel(); Foam::argList::validArgs.append("patchName"); Foam::argList::validArgs.append("edgeWeight"); Foam::argList::validOptions.insert("useSet", "cellSet"); Foam::argList::validOptions.insert("overwrite", ""); # include "setRootCase.H" # include "createTime.H" runTime.functionObjects().off(); # include "createPolyMesh.H" const word oldInstance = mesh.pointsInstance(); word patchName(args.additionalArgs()[0]); scalar weight(readScalar(IStringStream(args.additionalArgs()[1])())); 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 // bool useSet = args.optionFound("useSet"); if (useSet) { word setName(args.option("useSet")); Info<< "Subsetting cells to cut based on cellSet" << setName << endl << endl; cellSet cells(mesh, setName); Info<< "Read " << cells.size() << " cells from cellSet " << cells.instance()/cells.local()/cells.name() << endl << endl; for ( cellSet::const_iterator iter = cells.begin(); iter != cells.end(); ++iter ) { cutCells.erase(iter.key()); } Info<< "Removed from cells to cut all the ones not in set " << setName << endl << endl; } // Mark all meshpoints on patch boolList vertOnPatch(mesh.nPoints(), false); forAll(meshPoints, pointI) { label meshPointI = meshPoints[pointI]; vertOnPatch[meshPointI] = true; } // Mark cut edges. DynamicList