ENH: change some iterator -> const_iterator access BUG: found some places with forAllIter and ::iterator !
642 lines
23 KiB
C
642 lines
23 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ 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 <http://www.gnu.org/licenses/>.
|
|
|
|
InClass
|
|
domainDecomposition
|
|
|
|
Description
|
|
Private member of domainDecomposition.
|
|
Decomposes the mesh into bits
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "domainDecomposition.H"
|
|
#include "IOstreams.H"
|
|
#include "SLPtrList.H"
|
|
#include "boolList.H"
|
|
#include "primitiveMesh.H"
|
|
#include "cyclicPolyPatch.H"
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::domainDecomposition::decomposeMesh()
|
|
{
|
|
// Decide which cell goes to which processor
|
|
distributeCells();
|
|
|
|
// Distribute the cells according to the given processor label
|
|
|
|
// calculate the addressing information for the original mesh
|
|
Info<< "\nCalculating original mesh data" << endl;
|
|
|
|
// set references to the original mesh
|
|
const polyBoundaryMesh& patches = boundaryMesh();
|
|
const faceList& fcs = faces();
|
|
const labelList& owner = faceOwner();
|
|
const labelList& neighbour = faceNeighbour();
|
|
|
|
// loop through the list of processor labels for the cell and add the
|
|
// cell shape to the list of cells for the appropriate processor
|
|
|
|
Info<< "\nDistributing cells to processors" << endl;
|
|
|
|
// Memory management
|
|
{
|
|
List<SLList<label> > procCellList(nProcs_);
|
|
|
|
forAll(cellToProc_, celli)
|
|
{
|
|
if (cellToProc_[celli] >= nProcs_)
|
|
{
|
|
FatalErrorIn("domainDecomposition::decomposeMesh()")
|
|
<< "Impossible processor label " << cellToProc_[celli]
|
|
<< "for cell " << celli
|
|
<< abort(FatalError);
|
|
}
|
|
else
|
|
{
|
|
procCellList[cellToProc_[celli]].append(celli);
|
|
}
|
|
}
|
|
|
|
// Convert linked lists into normal lists
|
|
forAll(procCellList, procI)
|
|
{
|
|
procCellAddressing_[procI] = procCellList[procI];
|
|
}
|
|
}
|
|
|
|
Info<< "\nDistributing faces to processors" << endl;
|
|
|
|
// Loop through all internal faces and decide which processor they belong to
|
|
// First visit all internal faces. If cells at both sides belong to the
|
|
// same processor, the face is an internal face. If they are different,
|
|
// it belongs to both processors.
|
|
|
|
// Memory management
|
|
{
|
|
List<SLList<label> > procFaceList(nProcs_);
|
|
|
|
forAll(neighbour, facei)
|
|
{
|
|
if (cellToProc_[owner[facei]] == cellToProc_[neighbour[facei]])
|
|
{
|
|
// Face internal to processor
|
|
procFaceList[cellToProc_[owner[facei]]].append(facei);
|
|
}
|
|
}
|
|
|
|
// Detect inter-processor boundaries
|
|
|
|
// Neighbour processor for each subdomain
|
|
List<SLList<label> > interProcBoundaries(nProcs_);
|
|
|
|
// Face labels belonging to each inter-processor boundary
|
|
List<SLList<SLList<label> > > interProcBFaces(nProcs_);
|
|
|
|
List<SLList<label> > procPatchIndex(nProcs_);
|
|
|
|
forAll(neighbour, facei)
|
|
{
|
|
if (cellToProc_[owner[facei]] != cellToProc_[neighbour[facei]])
|
|
{
|
|
// inter - processor patch face found. Go through the list of
|
|
// inside boundaries for the owner processor and try to find
|
|
// this inter-processor patch.
|
|
|
|
label ownerProc = cellToProc_[owner[facei]];
|
|
label neighbourProc = cellToProc_[neighbour[facei]];
|
|
|
|
SLList<label>::iterator curInterProcBdrsOwnIter =
|
|
interProcBoundaries[ownerProc].begin();
|
|
|
|
SLList<SLList<label> >::iterator curInterProcBFacesOwnIter =
|
|
interProcBFaces[ownerProc].begin();
|
|
|
|
bool interProcBouFound = false;
|
|
|
|
// WARNING: Synchronous SLList iterators
|
|
|
|
for
|
|
(
|
|
;
|
|
curInterProcBdrsOwnIter
|
|
!= interProcBoundaries[ownerProc].end()
|
|
&& curInterProcBFacesOwnIter
|
|
!= interProcBFaces[ownerProc].end();
|
|
++curInterProcBdrsOwnIter, ++curInterProcBFacesOwnIter
|
|
)
|
|
{
|
|
if (curInterProcBdrsOwnIter() == neighbourProc)
|
|
{
|
|
// the inter - processor boundary exists. Add the face
|
|
interProcBouFound = true;
|
|
|
|
curInterProcBFacesOwnIter().append(facei);
|
|
|
|
SLList<label>::iterator curInterProcBdrsNeiIter =
|
|
interProcBoundaries[neighbourProc].begin();
|
|
|
|
SLList<SLList<label> >::iterator
|
|
curInterProcBFacesNeiIter =
|
|
interProcBFaces[neighbourProc].begin();
|
|
|
|
bool neighbourFound = false;
|
|
|
|
// WARNING: Synchronous SLList iterators
|
|
|
|
for
|
|
(
|
|
;
|
|
curInterProcBdrsNeiIter !=
|
|
interProcBoundaries[neighbourProc].end()
|
|
&& curInterProcBFacesNeiIter !=
|
|
interProcBFaces[neighbourProc].end();
|
|
++curInterProcBdrsNeiIter,
|
|
++curInterProcBFacesNeiIter
|
|
)
|
|
{
|
|
if (curInterProcBdrsNeiIter() == ownerProc)
|
|
{
|
|
// boundary found. Add the face
|
|
neighbourFound = true;
|
|
|
|
curInterProcBFacesNeiIter().append(facei);
|
|
}
|
|
|
|
if (neighbourFound) break;
|
|
}
|
|
|
|
if (interProcBouFound && !neighbourFound)
|
|
{
|
|
FatalErrorIn("domainDecomposition::decomposeMesh()")
|
|
<< "Inconsistency in inter - "
|
|
<< "processor boundary lists for processors "
|
|
<< ownerProc << " and " << neighbourProc
|
|
<< abort(FatalError);
|
|
}
|
|
}
|
|
|
|
if (interProcBouFound) break;
|
|
}
|
|
|
|
if (!interProcBouFound)
|
|
{
|
|
// inter - processor boundaries do not exist and need to
|
|
// be created
|
|
|
|
// set the new addressing information
|
|
|
|
// owner
|
|
interProcBoundaries[ownerProc].append(neighbourProc);
|
|
interProcBFaces[ownerProc].append(SLList<label>(facei));
|
|
|
|
// neighbour
|
|
interProcBoundaries[neighbourProc].append(ownerProc);
|
|
interProcBFaces[neighbourProc].append(SLList<label>(facei));
|
|
}
|
|
}
|
|
}
|
|
|
|
// Loop through patches. For cyclic boundaries detect inter-processor
|
|
// faces; for all other, add faces to the face list and remember start
|
|
// and size of all patches.
|
|
|
|
// for all processors, set the size of start index and patch size
|
|
// lists to the number of patches in the mesh
|
|
forAll(procPatchSize_, procI)
|
|
{
|
|
procPatchSize_[procI].setSize(patches.size());
|
|
procPatchStartIndex_[procI].setSize(patches.size());
|
|
}
|
|
|
|
forAll(patches, patchi)
|
|
{
|
|
// Reset size and start index for all processors
|
|
forAll(procPatchSize_, procI)
|
|
{
|
|
procPatchSize_[procI][patchi] = 0;
|
|
procPatchStartIndex_[procI][patchi] =
|
|
procFaceList[procI].size();
|
|
}
|
|
|
|
const label patchStart = patches[patchi].start();
|
|
|
|
if (!isA<cyclicPolyPatch>(patches[patchi]))
|
|
{
|
|
// Normal patch. Add faces to processor where the cell
|
|
// next to the face lives
|
|
|
|
const unallocLabelList& patchFaceCells =
|
|
patches[patchi].faceCells();
|
|
|
|
forAll(patchFaceCells, facei)
|
|
{
|
|
const label curProc = cellToProc_[patchFaceCells[facei]];
|
|
|
|
// add the face
|
|
procFaceList[curProc].append(patchStart + facei);
|
|
|
|
// increment the number of faces for this patch
|
|
procPatchSize_[curProc][patchi]++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Cyclic patch special treatment
|
|
|
|
const polyPatch& cPatch = patches[patchi];
|
|
|
|
const label cycOffset = cPatch.size()/2;
|
|
|
|
// Set reference to faceCells for both patches
|
|
const labelList::subList firstFaceCells
|
|
(
|
|
cPatch.faceCells(),
|
|
cycOffset
|
|
);
|
|
|
|
const labelList::subList secondFaceCells
|
|
(
|
|
cPatch.faceCells(),
|
|
cycOffset,
|
|
cycOffset
|
|
);
|
|
|
|
forAll(firstFaceCells, facei)
|
|
{
|
|
if
|
|
(
|
|
cellToProc_[firstFaceCells[facei]]
|
|
!= cellToProc_[secondFaceCells[facei]]
|
|
)
|
|
{
|
|
// This face becomes an inter-processor boundary face
|
|
// inter - processor patch face found. Go through
|
|
// the list of inside boundaries for the owner
|
|
// processor and try to find this inter-processor
|
|
// patch.
|
|
|
|
cyclicParallel_ = true;
|
|
|
|
label ownerProc = cellToProc_[firstFaceCells[facei]];
|
|
label neighbourProc =
|
|
cellToProc_[secondFaceCells[facei]];
|
|
|
|
SLList<label>::iterator curInterProcBdrsOwnIter =
|
|
interProcBoundaries[ownerProc].begin();
|
|
|
|
SLList<SLList<label> >::iterator
|
|
curInterProcBFacesOwnIter =
|
|
interProcBFaces[ownerProc].begin();
|
|
|
|
bool interProcBouFound = false;
|
|
|
|
// WARNING: Synchronous SLList iterators
|
|
|
|
for
|
|
(
|
|
;
|
|
curInterProcBdrsOwnIter !=
|
|
interProcBoundaries[ownerProc].end()
|
|
&& curInterProcBFacesOwnIter !=
|
|
interProcBFaces[ownerProc].end();
|
|
++curInterProcBdrsOwnIter,
|
|
++curInterProcBFacesOwnIter
|
|
)
|
|
{
|
|
if (curInterProcBdrsOwnIter() == neighbourProc)
|
|
{
|
|
// the inter - processor boundary exists.
|
|
// Add the face
|
|
interProcBouFound = true;
|
|
|
|
curInterProcBFacesOwnIter().append
|
|
(patchStart + facei);
|
|
|
|
SLList<label>::iterator curInterProcBdrsNeiIter
|
|
= interProcBoundaries[neighbourProc].begin();
|
|
|
|
SLList<SLList<label> >::iterator
|
|
curInterProcBFacesNeiIter =
|
|
interProcBFaces[neighbourProc].begin();
|
|
|
|
bool neighbourFound = false;
|
|
|
|
// WARNING: Synchronous SLList iterators
|
|
|
|
for
|
|
(
|
|
;
|
|
curInterProcBdrsNeiIter
|
|
!= interProcBoundaries[neighbourProc].end()
|
|
&& curInterProcBFacesNeiIter
|
|
!= interProcBFaces[neighbourProc].end();
|
|
++curInterProcBdrsNeiIter,
|
|
++curInterProcBFacesNeiIter
|
|
)
|
|
{
|
|
if (curInterProcBdrsNeiIter() == ownerProc)
|
|
{
|
|
// boundary found. Add the face
|
|
neighbourFound = true;
|
|
|
|
curInterProcBFacesNeiIter()
|
|
.append
|
|
(
|
|
patchStart
|
|
+ cycOffset
|
|
+ facei
|
|
);
|
|
}
|
|
|
|
if (neighbourFound) break;
|
|
}
|
|
|
|
if (interProcBouFound && !neighbourFound)
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"domainDecomposition::decomposeMesh()"
|
|
) << "Inconsistency in inter-processor "
|
|
<< "boundary lists for processors "
|
|
<< ownerProc << " and " << neighbourProc
|
|
<< " in cyclic boundary matching"
|
|
<< abort(FatalError);
|
|
}
|
|
}
|
|
|
|
if (interProcBouFound) break;
|
|
}
|
|
|
|
if (!interProcBouFound)
|
|
{
|
|
// inter - processor boundaries do not exist
|
|
// and need to be created
|
|
|
|
// set the new addressing information
|
|
|
|
// owner
|
|
interProcBoundaries[ownerProc]
|
|
.append(neighbourProc);
|
|
interProcBFaces[ownerProc]
|
|
.append(SLList<label>(patchStart + facei));
|
|
|
|
// neighbour
|
|
interProcBoundaries[neighbourProc]
|
|
.append(ownerProc);
|
|
interProcBFaces[neighbourProc]
|
|
.append
|
|
(
|
|
SLList<label>
|
|
(
|
|
patchStart
|
|
+ cycOffset
|
|
+ facei
|
|
)
|
|
);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// This cyclic face remains on the processor
|
|
label ownerProc = cellToProc_[firstFaceCells[facei]];
|
|
|
|
// add the face
|
|
procFaceList[ownerProc].append(patchStart + facei);
|
|
|
|
// increment the number of faces for this patch
|
|
procPatchSize_[ownerProc][patchi]++;
|
|
|
|
// Note: I cannot add the other side of the cyclic
|
|
// boundary here because this would violate the order.
|
|
// They will be added in a separate loop below
|
|
//
|
|
}
|
|
}
|
|
|
|
// Ordering in cyclic boundaries is important.
|
|
// Add the other half of cyclic faces for cyclic boundaries
|
|
// that remain on the processor
|
|
forAll(secondFaceCells, facei)
|
|
{
|
|
if
|
|
(
|
|
cellToProc_[firstFaceCells[facei]]
|
|
== cellToProc_[secondFaceCells[facei]]
|
|
)
|
|
{
|
|
// This cyclic face remains on the processor
|
|
label ownerProc = cellToProc_[firstFaceCells[facei]];
|
|
|
|
// add the second face
|
|
procFaceList[ownerProc].append
|
|
(patchStart + cycOffset + facei);
|
|
|
|
// increment the number of faces for this patch
|
|
procPatchSize_[ownerProc][patchi]++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Convert linked lists into normal lists
|
|
// Add inter-processor boundaries and remember start indices
|
|
forAll(procFaceList, procI)
|
|
{
|
|
// Get internal and regular boundary processor faces
|
|
SLList<label>& curProcFaces = procFaceList[procI];
|
|
|
|
// Get reference to processor face addressing
|
|
labelList& curProcFaceAddressing = procFaceAddressing_[procI];
|
|
|
|
labelList& curProcNeighbourProcessors =
|
|
procNeighbourProcessors_[procI];
|
|
|
|
labelList& curProcProcessorPatchSize =
|
|
procProcessorPatchSize_[procI];
|
|
|
|
labelList& curProcProcessorPatchStartIndex =
|
|
procProcessorPatchStartIndex_[procI];
|
|
|
|
// calculate the size
|
|
label nFacesOnProcessor = curProcFaces.size();
|
|
|
|
for
|
|
(
|
|
SLList<SLList<label> >::iterator curInterProcBFacesIter =
|
|
interProcBFaces[procI].begin();
|
|
curInterProcBFacesIter != interProcBFaces[procI].end();
|
|
++curInterProcBFacesIter
|
|
)
|
|
{
|
|
nFacesOnProcessor += curInterProcBFacesIter().size();
|
|
}
|
|
|
|
curProcFaceAddressing.setSize(nFacesOnProcessor);
|
|
|
|
// Fill in the list. Calculate turning index.
|
|
// Turning index will be -1 only for some faces on processor
|
|
// boundaries, i.e. the ones where the current processor ID
|
|
// is in the cell which is a face neighbour.
|
|
// Turning index is stored as the sign of the face addressing list
|
|
|
|
label nFaces = 0;
|
|
|
|
// Add internal and boundary faces
|
|
// Remember to increment the index by one such that the
|
|
// turning index works properly.
|
|
forAllConstIter(SLList<label>, curProcFaces, curProcFacesIter)
|
|
{
|
|
curProcFaceAddressing[nFaces] = curProcFacesIter() + 1;
|
|
nFaces++;
|
|
}
|
|
|
|
// Add inter-processor boundary faces. At the beginning of each
|
|
// patch, grab the patch start index and size
|
|
|
|
curProcNeighbourProcessors.setSize
|
|
(
|
|
interProcBoundaries[procI].size()
|
|
);
|
|
|
|
curProcProcessorPatchSize.setSize
|
|
(
|
|
interProcBoundaries[procI].size()
|
|
);
|
|
|
|
curProcProcessorPatchStartIndex.setSize
|
|
(
|
|
interProcBoundaries[procI].size()
|
|
);
|
|
|
|
label nProcPatches = 0;
|
|
|
|
SLList<label>::iterator curInterProcBdrsIter =
|
|
interProcBoundaries[procI].begin();
|
|
|
|
SLList<SLList<label> >::iterator curInterProcBFacesIter =
|
|
interProcBFaces[procI].begin();
|
|
|
|
for
|
|
(
|
|
;
|
|
curInterProcBdrsIter != interProcBoundaries[procI].end()
|
|
&& curInterProcBFacesIter != interProcBFaces[procI].end();
|
|
++curInterProcBdrsIter, ++curInterProcBFacesIter
|
|
)
|
|
{
|
|
curProcNeighbourProcessors[nProcPatches] =
|
|
curInterProcBdrsIter();
|
|
|
|
// Get start index for processor patch
|
|
curProcProcessorPatchStartIndex[nProcPatches] = nFaces;
|
|
|
|
label& curSize =
|
|
curProcProcessorPatchSize[nProcPatches];
|
|
|
|
curSize = 0;
|
|
|
|
// add faces for this processor boundary
|
|
|
|
forAllConstIter
|
|
(
|
|
SLList<label>,
|
|
curInterProcBFacesIter(),
|
|
curFacesIter
|
|
)
|
|
{
|
|
// add the face
|
|
|
|
// Remember to increment the index by one such that the
|
|
// turning index works properly.
|
|
if (cellToProc_[owner[curFacesIter()]] == procI)
|
|
{
|
|
curProcFaceAddressing[nFaces] = curFacesIter() + 1;
|
|
}
|
|
else
|
|
{
|
|
// turning face
|
|
curProcFaceAddressing[nFaces] = -(curFacesIter() + 1);
|
|
}
|
|
|
|
// increment the size
|
|
curSize++;
|
|
|
|
nFaces++;
|
|
}
|
|
|
|
nProcPatches++;
|
|
}
|
|
}
|
|
}
|
|
|
|
Info<< "\nDistributing points to processors" << endl;
|
|
// For every processor, loop through the list of faces for the processor.
|
|
// For every face, loop through the list of points and mark the point as
|
|
// used for the processor. Collect the list of used points for the
|
|
// processor.
|
|
|
|
forAll(procPointAddressing_, procI)
|
|
{
|
|
boolList pointLabels(nPoints(), false);
|
|
|
|
// Get reference to list of used faces
|
|
const labelList& procFaceLabels = procFaceAddressing_[procI];
|
|
|
|
forAll(procFaceLabels, facei)
|
|
{
|
|
// Because of the turning index, some labels may be negative
|
|
const labelList& facePoints = fcs[mag(procFaceLabels[facei]) - 1];
|
|
|
|
forAll(facePoints, pointi)
|
|
{
|
|
// Mark the point as used
|
|
pointLabels[facePoints[pointi]] = true;
|
|
}
|
|
}
|
|
|
|
// Collect the used points
|
|
labelList& procPointLabels = procPointAddressing_[procI];
|
|
|
|
procPointLabels.setSize(pointLabels.size());
|
|
|
|
label nUsedPoints = 0;
|
|
|
|
forAll(pointLabels, pointi)
|
|
{
|
|
if (pointLabels[pointi])
|
|
{
|
|
procPointLabels[nUsedPoints] = pointi;
|
|
|
|
nUsedPoints++;
|
|
}
|
|
}
|
|
|
|
// Reset the size of used points
|
|
procPointLabels.setSize(nUsedPoints);
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|