/*---------------------------------------------------------------------------*\ ========= | \\ / 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 . Application setsToZones Group grpMeshManipulationUtilities Description Add pointZones/faceZones/cellZones to the mesh from similar named pointSets/faceSets/cellSets. There is one catch: for faceZones you also need to specify a flip condition which basically denotes the side of the face. In this app it reads a cellSet (xxxCells if 'xxx' is the name of the faceSet) which is the masterCells of the zone. There are lots of situations in which this will go wrong but it is the best I can think of for now. If one is not interested in sideNess specify the -noFlipMap command line option. \*---------------------------------------------------------------------------*/ #include "argList.H" #include "Time.H" #include "polyMesh.H" #include "IStringStream.H" #include "cellSet.H" #include "faceSet.H" #include "pointSet.H" #include "OFstream.H" #include "IFstream.H" #include "IOobjectList.H" #include "SortableList.H" #include "timeSelector.H" using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // int main(int argc, char *argv[]) { timeSelector::addOptions(true, false); argList::addNote ( "add point/face/cell Zones from similar named point/face/cell Sets" ); argList::addBoolOption ( "noFlipMap", "ignore orientation of faceSet" ); #include "addRegionOption.H" #include "addTimeOptions.H" #include "setRootCase.H" #include "createTime.H" const bool noFlipMap = args.optionFound("noFlipMap"); // Get times list (void)timeSelector::selectIfPresent(runTime, args); #include "createNamedPolyMesh.H" // Search for list of objects for the time of the mesh word setsInstance = runTime.findInstance ( polyMesh::meshSubDir/"sets", word::null, IOobject::MUST_READ, mesh.facesInstance() ); IOobjectList objects(mesh, setsInstance, polyMesh::meshSubDir/"sets"); Info<< "Searched : " << setsInstance/polyMesh::meshSubDir/"sets" << nl << "Found : " << objects.names() << nl << endl; IOobjectList pointObjects(objects.lookupClass(pointSet::typeName)); //Pout<< "pointSets:" << pointObjects.names() << endl; forAllConstIter(IOobjectList, pointObjects, iter) { // Not in memory. Load it. pointSet set(*iter()); SortableList