/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright held by original author \\/ 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \*---------------------------------------------------------------------------*/ #include "domainDecomposition.H" #include "Time.H" #include "dictionary.H" #include "labelIOList.H" #include "processorPolyPatch.H" #include "fvMesh.H" #include "OSspecific.H" #include "Map.H" #include "globalMeshData.H" #include "DynamicList.H" // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // void domainDecomposition::mark ( const labelList& zoneElems, const label zoneI, labelList& elementToZone ) { forAll(zoneElems, i) { label pointi = zoneElems[i]; if (elementToZone[pointi] == -1) { // First occurrence elementToZone[pointi] = zoneI; } else if (elementToZone[pointi] >= 0) { // Multiple zones elementToZone[pointi] = -2; } } } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // from components domainDecomposition::domainDecomposition(const IOobject& io) : fvMesh(io), decompositionDict_ ( IOobject ( "decomposeParDict", time().system(), *this, IOobject::MUST_READ, IOobject::NO_WRITE ) ), nProcs_(readInt(decompositionDict_.lookup("numberOfSubdomains"))), distributed_(false), cellToProc_(nCells()), procPointAddressing_(nProcs_), procFaceAddressing_(nProcs_), nInternalProcFaces_(nProcs_), nLiveProcFaces_(nProcs_), procCellAddressing_(nProcs_), procBoundaryAddressing_(nProcs_), procPatchSize_(nProcs_), procPatchStartIndex_(nProcs_), procNeighbourProcessors_(nProcs_), procProcessorPatchSize_(nProcs_), procProcessorPatchStartIndex_(nProcs_), globallySharedPoints_(0), cyclicParallel_(false) { if (decompositionDict_.found("distributed")) { distributed_ = Switch(decompositionDict_.lookup("distributed")); } } // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // domainDecomposition::~domainDecomposition() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // bool domainDecomposition::writeDecomposition() { Info<< "\nConstructing processor meshes" << endl; // Make a lookup map for globally shared points Map