sequentialGAMGProcAgglomeration.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2013-2025 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
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.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
27 #include "GAMGAgglomeration.H"
29 
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
35 
37  (
41  );
42 }
43 
44 
45 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
46 
48 (
49  GAMGAgglomeration& agglom,
50  const dictionary& dict
51 )
52 :
53  GAMGProcAgglomeration(agglom, dict),
54  mergeLevels_(dict.lookupOrDefault<label>("mergeLevels", 1))
55 {}
56 
57 
58 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
59 
62 {
63  forAllReverse(comms_, i)
64  {
65  if (comms_[i] != -1)
66  {
67  UPstream::freeCommunicator(comms_[i]);
68  }
69  }
70 }
71 
72 
73 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
74 
76 {
77  if (debug)
78  {
79  Pout<< nl << "Starting mesh overview" << endl;
80  printStats(Pout, agglom_);
81  }
82 
83  if (agglom_.size() >= 1)
84  {
85  // Agglomerate one but last level (since also agglomerating
86  // restrictAddressing)
87  for
88  (
89  label fineLevelIndex = 2;
90  fineLevelIndex < agglom_.size();
91  fineLevelIndex++
92  )
93  {
94  if (agglom_.hasMeshLevel(fineLevelIndex))
95  {
96  // Get the fine mesh
97  const lduMesh& levelMesh = agglom_.meshLevel(fineLevelIndex);
98  label levelComm = levelMesh.comm();
99  label nProcs = UPstream::nProcs(levelComm);
100 
101  if (nProcs > 1)
102  {
103  // Processor restriction map: per processor the coarse
104  // processor
105  labelList procAgglomMap(nProcs);
106 
107  forAll(procAgglomMap, proci)
108  {
109  procAgglomMap[proci] = proci/(1<<mergeLevels_);
110  }
111 
112  // Master processor
113  labelList masterProcs;
114  // Local processors that agglomerate. agglomProcIDs[0]
115  // is in masterProc.
116  List<label> agglomProcIDs;
118  (
119  levelComm,
120  procAgglomMap,
121  masterProcs,
122  agglomProcIDs
123  );
124 
125  // Allocate a communicator for the processor-agglomerated
126  // matrix
127  comms_.append
128  (
130  (
131  levelComm,
132  masterProcs
133  )
134  );
135 
136  // Use processor agglomeration maps to do the actual
137  // collecting.
138  if (Pstream::myProcNo(levelComm) != -1)
139  {
141  (
142  fineLevelIndex,
143  procAgglomMap,
144  masterProcs,
145  agglomProcIDs,
146  comms_.last()
147  );
148  }
149  }
150  }
151  }
152  }
153 
154  // Print a bit
155  if (debug)
156  {
157  Pout<< nl << "Agglomerated mesh overview" << endl;
158  printStats(Pout, agglom_);
159  }
160 
161  return true;
162 }
163 
164 
165 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:449
#define forAllReverse(list, i)
Reverse loop across all elements in list.
Definition: UList.H:461
Macros for easy insertion into run-time selection tables.
Geometric agglomerated algebraic multigrid agglomeration class.
static void calculateRegionMaster(const label comm, const labelList &procAgglomMap, labelList &masterProcs, List< label > &agglomProcIDs)
Given fine to coarse processor map determine:
Processor agglomeration of GAMGAgglomerations.
virtual bool agglomerate()=0
Modify agglomeration. Return true if modified.
T & last()
Return the last element of the list.
Definition: UListI.H:128
static void freeCommunicator(const label communicator, const bool doPstream=true)
Free a previously allocated communicator.
Definition: UPstream.C:311
static label nProcs(const label communicator=0)
Number of processes in parallel run.
Definition: UPstream.H:411
static label allocateCommunicator(const label parent, const labelList &subRanks, const bool doPstream=true)
Allocate a new communicator.
Definition: UPstream.C:245
static int myProcNo(const label communicator=0)
Number of this process (starting from masterNo() = 0)
Definition: UPstream.H:429
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Abstract base class for meshes which provide LDU addressing for the construction of lduMatrix and LDU...
Definition: lduMesh.H:60
virtual label comm() const =0
Return communicator used for parallel communication.
Sequential processor agglomeration agglomerates 2^mergeLevels sequential groups of processors into th...
sequentialGAMGProcAgglomeration(GAMGAgglomeration &agglom, const dictionary &dict)
Construct given agglomerator and controls.
virtual bool agglomerate()
Modify agglomeration. Return true if modified.
Namespace for OpenFOAM.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
addToRunTimeSelectionTable(polyPatch, mergedCyclicPolyPatch, word)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:288
prefixOSstream Pout(cout, "Pout")
Definition: IOstreams.H:53
defineTypeNameAndDebug(atmosphericBoundaryLayer, 0)
static const char nl
Definition: Ostream.H:297
dictionary dict