allGAMGProcAgglomeration.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-2026 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 :
54 {}
55 
56 
57 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
58 
60 {
61  forAllReverse(comms_, i)
62  {
63  if (comms_[i] != -1)
64  {
65  UPstream::freeCommunicator(comms_[i]);
66  }
67  }
68 }
69 
70 
71 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
72 
74 {
75  if (debug)
76  {
77  Pout<< nl << "Starting mesh overview" << endl;
78  printStats(Pout, agglom_);
79  }
80 
81  if (agglom_.size() >= 1)
82  {
83  // Agglomerate one but last level (since also agglomerating
84  // restrictAddressing)
85  label fineLevelIndex = agglom_.size()-1;
86 
87  if (agglom_.hasMeshLevel(fineLevelIndex))
88  {
89  // Get the fine mesh
90  const lduMesh& levelMesh = agglom_.meshLevel(fineLevelIndex);
91  label levelComm = levelMesh.comm();
92  label nProcs = UPstream::nProcs(levelComm);
93 
94  if (nProcs > 1)
95  {
96  // Processor restriction map: per processor the coarse processor
97  labelList procAgglomMap(nProcs, 0);
98 
99  // Master processor
100  labelList masterProcs;
101 
102  // Local processors that agglomerate. agglomProcIDs[0] is in
103  // masterProc.
104  List<label> agglomProcIDs;
105 
107  (
108  levelComm,
109  procAgglomMap,
110  masterProcs,
111  agglomProcIDs
112  );
113 
114  // Allocate a communicator for the processor-agglomerated matrix
115  comms_.append
116  (
118  (
119  levelComm,
120  masterProcs
121  )
122  );
123 
124  // Use processor agglomeration maps to do the actual collecting.
125  if (Pstream::myProcNo(levelComm) != -1)
126  {
128  (
129  fineLevelIndex,
130  procAgglomMap,
131  masterProcs,
132  agglomProcIDs,
133  comms_.last()
134  );
135  }
136  }
137  }
138  }
139 
140  // Print a bit
141  if (debug)
142  {
143  Pout<< nl << "Agglomerated mesh overview" << endl;
144  printStats(Pout, agglom_);
145  }
146 
147  return true;
148 }
149 
150 
151 // ************************************************************************* //
#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
Agglomerates all processor matrices onto the master processor at the coarsest but one level.
allGAMGProcAgglomeration(GAMGAgglomeration &agglom, const dictionary &dict)
Construct given agglomerator and controls.
virtual ~allGAMGProcAgglomeration()
Destructor.
virtual bool agglomerate()
Modify agglomeration. Return true if modified.
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.
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