Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef Cloud_H
00036 #define Cloud_H
00037
00038 #include <OpenFOAM/cloud.H>
00039 #include <OpenFOAM/IDLList.H>
00040 #include <OpenFOAM/IOField.H>
00041 #include <OpenFOAM/polyMesh.H>
00042
00043
00044
00045 namespace Foam
00046 {
00047
00048
00049 template<class ParticleType>
00050 class Cloud;
00051
00052 template<class ParticleType>
00053 class IOPosition;
00054
00055 template<class ParticleType>
00056 Ostream& operator<<
00057 (
00058 Ostream&,
00059 const Cloud<ParticleType>&
00060 );
00061
00062
00063
00064
00065
00066
00067 template<class ParticleType>
00068 class Cloud
00069 :
00070 public cloud,
00071 public IDLList<ParticleType>
00072 {
00073
00074
00075 const polyMesh& polyMesh_;
00076
00077
00078 mutable label particleCount_;
00079
00080
00081 mutable DynamicList<label> labels_;
00082
00083
00084
00085
00086
00087 void initCloud(const bool checkClass);
00088
00089
00090 void readCloudUniformProperties();
00091
00092
00093 void writeCloudUniformProperties() const;
00094
00095
00096 public:
00097
00098 template<class ParticleT>
00099 friend class Particle;
00100 template<class ParticleT>
00101 friend class IOPosition;
00102
00103 typedef ParticleType particleType;
00104
00105 typedef typename IDLList<ParticleType>::iterator iterator;
00106 typedef typename IDLList<ParticleType>::const_iterator const_iterator;
00107
00108
00109 TypeName("Cloud");
00110
00111
00112
00113
00114
00115 static word cloudPropertiesName;
00116
00117
00118
00119
00120
00121 Cloud
00122 (
00123 const polyMesh& mesh,
00124 const IDLList<ParticleType>& particles
00125 );
00126
00127
00128 Cloud
00129 (
00130 const polyMesh& mesh,
00131 const word& cloudName,
00132 const IDLList<ParticleType>& particles
00133 );
00134
00135
00136
00137 Cloud
00138 (
00139 const polyMesh& mesh,
00140 const bool checkClass = true
00141 );
00142
00143
00144
00145
00146 Cloud
00147 (
00148 const polyMesh& pMesh,
00149 const word& cloudName,
00150 const bool checkClass = true
00151 );
00152
00153
00154
00155
00156
00157
00158
00159 const polyMesh& pMesh() const
00160 {
00161 return polyMesh_;
00162 }
00163
00164
00165 bool internalFace(const label facei) const
00166 {
00167 return polyMesh_.isInternalFace(facei);
00168 }
00169
00170
00171 bool boundaryFace(const label facei) const
00172 {
00173 return !internalFace(facei);
00174 }
00175
00176
00177 label facePatch(const label facei) const
00178 {
00179 return polyMesh_.boundaryMesh().whichPatch(facei);
00180 }
00181
00182
00183 label patchFace(const label patchi, const label facei) const
00184 {
00185 return polyMesh_.boundaryMesh()[patchi].whichFace(facei);
00186 }
00187
00188 label size() const
00189 {
00190 return IDLList<ParticleType>::size();
00191 };
00192
00193
00194
00195
00196 const const_iterator begin() const
00197 {
00198 return IDLList<ParticleType>::begin();
00199 };
00200
00201 const const_iterator cbegin() const
00202 {
00203 return IDLList<ParticleType>::cbegin();
00204 };
00205
00206 const const_iterator end() const
00207 {
00208 return IDLList<ParticleType>::end();
00209 };
00210
00211 const const_iterator cend() const
00212 {
00213 return IDLList<ParticleType>::cend();
00214 };
00215
00216 iterator begin()
00217 {
00218 return IDLList<ParticleType>::begin();
00219 };
00220
00221 iterator end()
00222 {
00223 return IDLList<ParticleType>::end();
00224 };
00225
00226
00227
00228
00229 void clear()
00230 {
00231 return IDLList<ParticleType>::clear();
00232 };
00233
00234
00235 label getNewParticleID() const;
00236
00237
00238 void addParticle(ParticleType* pPtr);
00239
00240
00241 void deleteParticle(ParticleType&);
00242
00243
00244
00245 template<class TrackingData>
00246 void move(TrackingData& td);
00247
00248
00249
00250 virtual void autoMap(const mapPolyMesh&);
00251
00252
00253
00254
00255
00256 IOobject fieldIOobject
00257 (
00258 const word& fieldName,
00259 const IOobject::readOption r
00260 ) const;
00261
00262
00263 template<class DataType>
00264 void checkFieldIOobject
00265 (
00266 const Cloud<ParticleType>& c,
00267 const IOField<DataType>& data
00268 ) const;
00269
00270
00271
00272 virtual void readFields();
00273
00274
00275
00276
00277
00278
00279 virtual void writeFields() const;
00280
00281
00282
00283 virtual bool writeObject
00284 (
00285 IOstream::streamFormat fmt,
00286 IOstream::versionNumber ver,
00287 IOstream::compressionType cmp
00288 ) const;
00289
00290
00291 void writePositions() const;
00292
00293
00294
00295
00296 friend Ostream& operator<< <ParticleType>
00297 (
00298 Ostream&,
00299 const Cloud<ParticleType>&
00300 );
00301 };
00302
00303
00304
00305
00306 }
00307
00308
00309
00310 #ifdef NoRepository
00311 # include "Cloud.C"
00312 #endif
00313
00314
00315
00316 #endif
00317
00318