CloudFunctionObjectList.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2017 OpenFOAM Foundation
9  Copyright (C) 2020-2021 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
30 #include "entry.H"
31 
32 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
33 
34 template<class CloudType>
36 (
37  CloudType& owner
38 )
39 :
41  owner_(owner),
42  dict_()
43 {}
44 
45 
46 template<class CloudType>
48 (
49  CloudType& owner,
50  const dictionary& dict,
51  const bool readFields
52 )
53 :
55  owner_(owner),
56  dict_(dict)
57 {
58  if (readFields)
59  {
60  Info<< "Constructing cloud functions" << endl;
61 
62  this->resize(dict.size());
63 
64  label count = 0;
65  for (const word& modelName : dict.toc())
66  {
67  const dictionary& modelDict = dict.subDict(modelName);
68 
69  {
70  this->set
71  (
72  count,
74  (
75  modelDict,
76  owner,
77  modelDict.get<word>("type"),
78  modelName
79  )
80  );
81  }
82  ++count;
83  }
84 
85  if (!count)
86  {
87  Info<< " none" << endl;
88  }
89  }
90 }
91 
92 
93 template<class CloudType>
95 (
96  const CloudFunctionObjectList& cfol
97 )
98 :
99  PtrList<CloudFunctionObject<CloudType>>(cfol),
100  owner_(cfol.owner_),
101  dict_(cfol.dict_)
102 {}
103 
104 
105 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
106 
107 template<class CloudType>
109 (
110  const typename parcelType::trackingData& td
111 )
112 {
113  for (auto& cfo : *this)
114  {
115  cfo.preEvolve(td);
116  }
117 }
118 
119 
120 template<class CloudType>
122 (
123  const typename parcelType::trackingData& td
124 )
125 {
126  for (auto& cfo : *this)
127  {
128  cfo.postEvolve(td);
129  }
130 }
131 
132 
133 template<class CloudType>
135 (
136  parcelType& p,
137  const scalar dt,
138  const point& position0,
139  const typename parcelType::trackingData& td
140 )
141 {
142  if (!td.keepParticle)
143  {
144  return td.keepParticle;
145  }
146 
147  for (auto& cfo : *this)
148  {
149  if (!cfo.postMove(p, dt, position0, td))
150  {
151  return false;
152  }
153  }
155  return true;
156 }
157 
158 
159 template<class CloudType>
161 (
162  parcelType& p,
163  const polyPatch& pp,
164  const typename parcelType::trackingData& td
165 )
166 {
167  if (!td.keepParticle)
168  {
169  return td.keepParticle;
170  }
171 
172  for (auto& cfo : *this)
173  {
174  if (!cfo.postPatch(p, pp, td))
175  {
176  return false;
177  }
178  }
180  return true;
181 }
182 
183 
184 template<class CloudType>
186 (
187  parcelType& p,
188  const typename parcelType::trackingData& td
189 )
190 {
191  if (!td.keepParticle)
192  {
193  return td.keepParticle;
194  }
195 
196  for (auto& cfo : *this)
197  {
198  if (!cfo.postFace(p, td))
199  {
200  return false;
201  }
202  }
203 
204  return true;
205 }
206 
207 
208 // ************************************************************************* //
dictionary dict
DSMCCloud< dsmcParcel > CloudType
patchWriters resize(patchIds.size())
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
virtual bool postPatch(parcelType &p, const polyPatch &pp, const typename parcelType::trackingData &td)
Post-patch hook.
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:531
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tf1, const word &name, const dimensionSet &dimensions, const bool initCopy=false)
Global function forwards to reuseTmpDimensionedField::New.
T get(const word &keyword, enum keyType::option matchOpt=keyType::REGEX) const
Find and return a T. FatalIOError if not found, or if the number of tokens is incorrect.
CloudFunctionObjectList(CloudType &owner)
Null constructor.
unsigned int count(const UList< bool > &bools, const bool val=true)
Count number of &#39;true&#39; entries.
Definition: BitOps.H:73
void readFields(const typename GeoFieldType::Mesh &mesh, const IOobjectList &objects, const NameMatchPredicate &selectedFields, DynamicList< regIOobject *> &storedObjects)
Read the selected GeometricFields of the templated type and store on the objectRegistry.
A class for handling words, derived from Foam::string.
Definition: word.H:63
virtual void postEvolve(const typename parcelType::trackingData &td)
Post-evolve hook.
virtual bool postFace(parcelType &p, const typename parcelType::trackingData &td)
Post-face hook.
vector point
Point is a vector.
Definition: point.H:37
A list of pointers to objects of type <T>, with allocation/deallocation management of the pointers...
Definition: List.H:55
messageStream Info
Information stream (stdout output on master, null elsewhere)
virtual void preEvolve(const typename parcelType::trackingData &td)
Pre-evolve hook.
volScalarField & p
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:69
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:67
Templated cloud function object base class.
uindirectPrimitivePatch pp(UIndirectList< face >(mesh.faces(), faceLabels), mesh.points())
virtual bool postMove(parcelType &p, const scalar dt, const point &position0, const typename parcelType::trackingData &td)
Post-move hook.