/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | \\ / A nd | For copyright notice see file Copyright \\/ M anipulation | ------------------------------------------------------------------------------- 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 reconstructPar Description Reconstructs a mesh and fields of a case that is decomposed for parallel execution of FOAM. \*---------------------------------------------------------------------------*/ #include "argList.H" #include "timeSelector.H" #include "fvCFD.H" #include "IOobjectList.H" #include "processorMeshes.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(true, true); argList::noParallel(); # include "addRegionOption.H" argList::validOptions.insert("fields", "\"(list of fields)\""); argList::validOptions.insert("noLagrangian", ""); # include "setRootCase.H" # 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