BUGFIX: Uninitialised member variables
[foam-extend-3.2.git] / applications / utilities / parallelProcessing / decomposePar / distributeCells.C
blobf952c8677bfc1fe332a62def1f5156e4cffd842a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "domainDecomposition.H"
28 #include "decompositionMethod.H"
29 #include "cpuTime.H"
30 #include "cyclicPolyPatch.H"
31 #include "cellSet.H"
32 #include "regionSplit.H"
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 void domainDecomposition::distributeCells()
38     Info<< "\nCalculating distribution of cells" << endl;
40     cpuTime decompositionTime;
43     // See if any faces need to have owner and neighbour on same processor
44     // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
46     labelHashSet sameProcFaces;
48     if (decompositionDict_.found("preservePatches"))
49     {
50         wordList pNames(decompositionDict_.lookup("preservePatches"));
52         Info<< "Keeping owner and neighbour of faces in patches " << pNames
53             << " on same processor" << endl;
55         const polyBoundaryMesh& patches = boundaryMesh();
57         forAll(pNames, i)
58         {
59             label patchI = patches.findPatchID(pNames[i]);
61             if (patchI == -1)
62             {
63                 FatalErrorIn("domainDecomposition::distributeCells()")
64                     << "Unknown preservePatch " << pNames[i]
65                     << nl << "Valid patches are " << patches.names()
66                     << exit(FatalError);
67             }
69             const polyPatch& pp = patches[patchI];
71             forAll(pp, i)
72             {
73                 sameProcFaces.insert(pp.start() + i);
74             }
75         }
76     }
77     if (decompositionDict_.found("preserveFaceZones"))
78     {
79         wordList zNames(decompositionDict_.lookup("preserveFaceZones"));
81         Info<< "Keeping owner and neighbour of faces in zones " << zNames
82             << " on same processor" << endl;
84         const faceZoneMesh& fZones = faceZones();
86         forAll(zNames, i)
87         {
88             label zoneI = fZones.findZoneID(zNames[i]);
90             if (zoneI == -1)
91             {
92                 FatalErrorIn("domainDecomposition::distributeCells()")
93                     << "Unknown preserveFaceZone " << zNames[i]
94                     << endl << "Valid faceZones are " << fZones.names()
95                     << exit(FatalError);
96             }
98             const faceZone& fz = fZones[zoneI];
100             forAll(fz, i)
101             {
102                 sameProcFaces.insert(fz[i]);
103             }
104         }
105     }
108     // Construct decomposition method and either do decomposition on
109     // cell centres or on agglomeration
112     autoPtr<decompositionMethod> decomposePtr = decompositionMethod::New
113     (
114         decompositionDict_,
115         *this
116     );
118     if (sameProcFaces.empty())
119     {
120         cellToProc_ = decomposePtr().decompose(cellCentres());
121     }
122     else
123     {
124         Info<< "Selected " << sameProcFaces.size()
125             << " faces whose owner and neighbour cell should be kept on the"
126             << " same processor" << endl;
128         // Faces where owner and neighbour are not 'connected' (= all except
129         // sameProcFaces)
130         boolList blockedFace(nFaces(), true);
132         forAllConstIter(labelHashSet, sameProcFaces, iter)
133         {
134             blockedFace[iter.key()] = false;
135         }
137         // Connect coupled boundary faces
138         const polyBoundaryMesh& patches =  boundaryMesh();
140         forAll(patches, patchI)
141         {
142             const polyPatch& pp = patches[patchI];
144             if (pp.coupled())
145             {
146                 forAll(pp, i)
147                 {
148                     blockedFace[pp.start() + i] = false;
149                 }
150             }
151         }
153         // Determine global regions, separated by blockedFaces
154         regionSplit globalRegion(*this, blockedFace);
157         // Determine region cell centres
158         // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
160         // This just takes the first cell in the region. Otherwise the problem
161         // is with cyclics - if we'd average the region centre might be
162         // somewhere in the middle of the domain which might not be anywhere
163         // near any of the cells.
165         const point greatPoint(GREAT, GREAT, GREAT);
167         pointField regionCentres(globalRegion.nRegions(), greatPoint);
169         forAll(globalRegion, cellI)
170         {
171             label regionI = globalRegion[cellI];
173             if (regionCentres[regionI] == greatPoint)
174             {
175                 regionCentres[regionI] = cellCentres()[cellI];
176             }
177         }
179         // Do decomposition on agglomeration
180         // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
181         cellToProc_ = decomposePtr().decompose(globalRegion, regionCentres);
182     }
184     Info<< "\nFinished decomposition in "
185         << decompositionTime.elapsedCpuTime()
186         << " s" << endl;
190 // ************************************************************************* //