pointBoundaryMesh.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) 2011-2018 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 
26 #include "pointBoundaryMesh.H"
27 #include "polyBoundaryMesh.H"
28 #include "facePointPatch.H"
29 #include "pointMesh.H"
30 #include "PstreamBuffers.H"
31 #include "lduSchedule.H"
32 #include "globalMeshData.H"
33 
34 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
35 
36 Foam::pointBoundaryMesh::pointBoundaryMesh
37 (
38  const pointMesh& m,
39  const polyBoundaryMesh& basicBdry
40 )
41 :
42  pointPatchList(basicBdry.size()),
43  mesh_(m)
44 {
45  // Set boundary patches
46  pointPatchList& Patches = *this;
47 
48  forAll(Patches, patchi)
49  {
50  Patches.set
51  (
52  patchi,
53  facePointPatch::New(basicBdry[patchi], *this).ptr()
54  );
55  }
56 }
57 
58 
59 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
60 
62 {
63  return mesh()().boundaryMesh().findPatchID(patchName);
64 }
65 
66 
68 (
69  const keyType& key,
70  const bool usePatchGroups
71 ) const
72 {
73  return mesh()().boundaryMesh().findIndices(key, usePatchGroups);
74 }
75 
76 
77 void Foam::pointBoundaryMesh::calcGeometry()
78 {
80 
81  if
82  (
85  )
86  {
87  forAll(*this, patchi)
88  {
89  operator[](patchi).initGeometry(pBufs);
90  }
91 
92  pBufs.finishedSends();
93 
94  forAll(*this, patchi)
95  {
96  operator[](patchi).calcGeometry(pBufs);
97  }
98  }
100  {
101  const lduSchedule& patchSchedule = mesh().globalData().patchSchedule();
102 
103  // Dummy.
104  pBufs.finishedSends();
105 
106  forAll(patchSchedule, patchEvali)
107  {
108  label patchi = patchSchedule[patchEvali].patch;
109 
110  if (patchSchedule[patchEvali].init)
111  {
112  operator[](patchi).initGeometry(pBufs);
113  }
114  else
115  {
116  operator[](patchi).calcGeometry(pBufs);
117  }
118  }
119  }
120 }
121 
122 
124 {
126 
127  if
128  (
131  )
132  {
133  forAll(*this, patchi)
134  {
135  operator[](patchi).initMovePoints(pBufs, p);
136  }
137 
138  pBufs.finishedSends();
139 
140  forAll(*this, patchi)
141  {
142  operator[](patchi).movePoints(pBufs, p);
143  }
144  }
146  {
147  const lduSchedule& patchSchedule = mesh().globalData().patchSchedule();
148 
149  // Dummy.
150  pBufs.finishedSends();
151 
152  forAll(patchSchedule, patchEvali)
153  {
154  label patchi = patchSchedule[patchEvali].patch;
155 
156  if (patchSchedule[patchEvali].init)
157  {
158  operator[](patchi).initMovePoints(pBufs, p);
159  }
160  else
161  {
162  operator[](patchi).movePoints(pBufs, p);
163  }
164  }
165  }
166 }
167 
168 
170 {
172 
173  if
174  (
177  )
178  {
179  forAll(*this, patchi)
180  {
181  operator[](patchi).initUpdateMesh(pBufs);
182  }
183 
184  pBufs.finishedSends();
185 
186  forAll(*this, patchi)
187  {
188  operator[](patchi).updateMesh(pBufs);
189  }
190  }
192  {
193  const lduSchedule& patchSchedule = mesh().globalData().patchSchedule();
194 
195  // Dummy.
196  pBufs.finishedSends();
197 
198  forAll(patchSchedule, patchEvali)
199  {
200  label patchi = patchSchedule[patchEvali].patch;
201 
202  if (patchSchedule[patchEvali].init)
203  {
204  operator[](patchi).initUpdateMesh(pBufs);
205  }
206  else
207  {
208  operator[](patchi).updateMesh(pBufs);
209  }
210  }
211  }
212 }
213 
214 
215 // ************************************************************************* //
A class for handling keywords in dictionaries.
Definition: keyType.H:64
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
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
bool set(const label) const
Is element set.
Definition: PtrListI.H:65
void finishedSends(const bool block=true)
Mark all sends as having been done. This will start receives.
const lduSchedule & patchSchedule() const
Order in which the patches should be initialised/evaluated.
void movePoints(const pointField &)
Correct polyBoundaryMesh after moving points.
label findPatchID(const word &patchName) const
Find patch index given a name.
const T & operator[](const label) const
Return element const reference.
Definition: UPtrListI.H:103
Addressing for all faces on surface of mesh. Can either be read from polyMesh or from triSurface...
Definition: boundaryMesh.H:59
void updateMesh()
Correct polyBoundaryMesh after topology update.
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
Mesh representing a set of points created from polyMesh.
Definition: pointMesh.H:48
const globalMeshData & globalData() const
Return parallel info.
Definition: pointMesh.H:112
A class for handling words, derived from string.
Definition: word.H:59
Foam::polyBoundaryMesh.
const pointMesh & mesh() const
Return the mesh reference.
Buffers for inter-processor communications streams (UOPstream, UIPstream).
label size() const
Return the number of elements in the UPtrList.
Definition: UPtrListI.H:29
static commsTypes defaultCommsType
Default commsType.
Definition: UPstream.H:272
label patchi
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: List.H:63
labelList findIndices(const keyType &, const bool useGroups) const
Find patch indices given a name.
volScalarField & p
PtrList< pointPatch > pointPatchList
container classes for pointPatch