/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | Version: 4.0 \\ / 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 . Application reconstructParMesh Author Hrvoje Jasak, Wikki Ltd. All rights reserved Description Reconstructs a mesh using geometrical matching and catenation. Use following topological changes in parallel to create global mesh and xxxxProcAddressing files in the processor meshes. \*---------------------------------------------------------------------------*/ #include "fvCFD.H" #include "processorMeshesReconstructor.H" #include "fvFieldReconstructor.H" #include "pointFieldReconstructor.H" #include "tetPointFieldReconstructor.H" #include "reconstructLagrangian.H" #include "faCFD.H" #include "faMesh.H" #include "processorFaMeshes.H" #include "faFieldReconstructor.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // int main(int argc, char *argv[]) { // enable -constant ... if someone really wants it // enable -zeroTime to prevent accidentally trashing the initial fields timeSelector::addOptions(false, true); argList::noParallel(); # include "addRegionOption.H" argList::validOptions.insert("cellDist", ""); argList::validOptions.insert("fields", "\"(list of fields)\""); argList::validOptions.insert("noLagrangian", ""); # include "setRootCase.H" bool writeCellDist = args.optionFound("cellDist"); # include "createTime.H" HashSet selectedFields; if (args.optionFound("fields")) { args.optionLookup("fields")() >> selectedFields; } bool noLagrangian = args.optionFound("noLagrangian"); // Determine the processor count directly label nProcs = 0; while (isDir(args.path()/(word("processor") + name(nProcs)))) { ++nProcs; } if (!nProcs) { FatalErrorIn(args.executable()) << "No processor* directories found" << exit(FatalError); } // Create the processor databases PtrList