/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011 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 . \*---------------------------------------------------------------------------*/ #include "domainDecomposition.H" #include "decompositionMethod.H" #include "cpuTime.H" #include "cellSet.H" #include "regionSplit.H" #include "Tuple2.H" #include "faceSet.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // void Foam::domainDecomposition::distributeCells() { Info<< "\nCalculating distribution of cells" << endl; cpuTime decompositionTime; // See if any faces need to have owner and neighbour on same processor // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ labelHashSet sameProcFaces; if (decompositionDict_.found("preservePatches")) { wordList pNames(decompositionDict_.lookup("preservePatches")); Info<< nl << "Keeping owner of faces in patches " << pNames << " on same processor. This only makes sense for cyclics." << endl; const polyBoundaryMesh& patches = boundaryMesh(); forAll(pNames, i) { const label patchI = patches.findPatchID(pNames[i]); if (patchI == -1) { FatalErrorIn("domainDecomposition::distributeCells()") << "Unknown preservePatch " << pNames[i] << endl << "Valid patches are " << patches.names() << exit(FatalError); } const polyPatch& pp = patches[patchI]; forAll(pp, i) { sameProcFaces.insert(pp.start() + i); } } } if (decompositionDict_.found("preserveFaceZones")) { wordList zNames(decompositionDict_.lookup("preserveFaceZones")); Info<< nl << "Keeping owner and neighbour of faces in zones " << zNames << " on same processor" << endl; const faceZoneMesh& fZones = faceZones(); forAll(zNames, i) { label zoneI = fZones.findZoneID(zNames[i]); if (zoneI == -1) { FatalErrorIn("domainDecomposition::distributeCells()") << "Unknown preserveFaceZone " << zNames[i] << endl << "Valid faceZones are " << fZones.names() << exit(FatalError); } const faceZone& fz = fZones[zoneI]; forAll(fz, i) { sameProcFaces.insert(fz[i]); } } } // Specified processor for owner and neighbour of faces Map