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
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 #ifndef fvMesh_H
00048 #define fvMesh_H
00049
00050 #include <OpenFOAM/polyMesh.H>
00051 #include <OpenFOAM/lduMesh.H>
00052 #include <OpenFOAM/primitiveMesh.H>
00053 #include <finiteVolume/fvBoundaryMesh.H>
00054 #include <finiteVolume/surfaceInterpolation.H>
00055 #include <OpenFOAM/DimensionedField.H>
00056 #include <finiteVolume/volFieldsFwd.H>
00057 #include <finiteVolume/surfaceFieldsFwd.H>
00058 #include <OpenFOAM/pointFieldsFwd.H>
00059 #include <finiteVolume/slicedVolFieldsFwd.H>
00060 #include <finiteVolume/slicedSurfaceFieldsFwd.H>
00061 #include <OpenFOAM/className.H>
00062
00063
00064
00065 namespace Foam
00066 {
00067
00068 class fvMeshLduAddressing;
00069 class volMesh;
00070
00071
00072
00073
00074
00075
00076 class fvMesh
00077 :
00078 public polyMesh,
00079 public lduMesh,
00080 public surfaceInterpolation
00081 {
00082
00083
00084
00085 fvBoundaryMesh boundary_;
00086
00087
00088
00089
00090 mutable fvMeshLduAddressing* lduPtr_;
00091
00092
00093
00094
00095
00096 mutable label curTimeIndex_;
00097
00098
00099 mutable void* VPtr_;
00100
00101
00102 mutable DimensionedField<scalar, volMesh>* V0Ptr_;
00103
00104
00105 mutable DimensionedField<scalar, volMesh>* V00Ptr_;
00106
00107
00108 mutable slicedSurfaceVectorField* SfPtr_;
00109
00110
00111 mutable surfaceScalarField* magSfPtr_;
00112
00113
00114 mutable slicedVolVectorField* CPtr_;
00115
00116
00117 mutable slicedSurfaceVectorField* CfPtr_;
00118
00119
00120 mutable surfaceScalarField* phiPtr_;
00121
00122
00123
00124
00125
00126
00127
00128 void clearGeomNotOldVol();
00129
00130
00131 void clearGeom();
00132
00133
00134 void clearAddressing();
00135
00136
00137
00138
00139 void makeSf() const;
00140 void makeMagSf() const;
00141
00142 void makeC() const;
00143 void makeCf() const;
00144
00145
00146
00147 fvMesh(const fvMesh&);
00148
00149
00150 void operator=(const fvMesh&);
00151
00152
00153 public:
00154
00155
00156
00157 typedef fvMesh Mesh;
00158 typedef fvBoundaryMesh BoundaryMesh;
00159
00160
00161
00162 ClassName("fvMesh");
00163
00164
00165
00166
00167
00168 explicit fvMesh(const IOobject& io);
00169
00170
00171
00172 fvMesh
00173 (
00174 const IOobject& io,
00175 const Xfer<pointField>& points,
00176 const Xfer<faceList>& faces,
00177 const Xfer<labelList>& allOwner,
00178 const Xfer<labelList>& allNeighbour,
00179 const bool syncPar = true
00180 );
00181
00182
00183
00184 fvMesh
00185 (
00186 const IOobject& io,
00187 const Xfer<pointField>& points,
00188 const Xfer<faceList>& faces,
00189 const Xfer<cellList>& cells,
00190 const bool syncPar = true
00191 );
00192
00193
00194
00195
00196 virtual ~fvMesh();
00197
00198
00199
00200
00201
00202
00203
00204 void addFvPatches
00205 (
00206 const List<polyPatch*>&,
00207 const bool validBoundary = true
00208 );
00209
00210
00211
00212 virtual readUpdateState readUpdate();
00213
00214
00215
00216
00217
00218 const Time& time() const
00219 {
00220 return polyMesh::time();
00221 }
00222
00223
00224 virtual const objectRegistry& thisDb() const
00225 {
00226 return polyMesh::thisDb();
00227 }
00228
00229
00230
00231
00232 const word& name() const
00233 {
00234 return polyMesh::name();
00235 }
00236
00237
00238 const fvBoundaryMesh& boundary() const;
00239
00240
00241 virtual const lduAddressing& lduAddr() const;
00242
00243
00244
00245 virtual lduInterfacePtrsList interfaces() const
00246 {
00247 return boundary().interfaces();
00248 }
00249
00250
00251 const unallocLabelList& owner() const
00252 {
00253 return lduAddr().lowerAddr();
00254 }
00255
00256
00257 const unallocLabelList& neighbour() const
00258 {
00259 return lduAddr().upperAddr();
00260 }
00261
00262
00263 const DimensionedField<scalar, volMesh>& V() const;
00264
00265
00266 const DimensionedField<scalar, volMesh>& V0() const;
00267
00268
00269 const DimensionedField<scalar, volMesh>& V00() const;
00270
00271
00272 tmp<DimensionedField<scalar, volMesh> > Vsc() const;
00273
00274
00275 tmp<DimensionedField<scalar, volMesh> > Vsc0() const;
00276
00277
00278 const surfaceVectorField& Sf() const;
00279
00280
00281 const surfaceScalarField& magSf() const;
00282
00283
00284 const surfaceScalarField& phi() const;
00285
00286
00287 const volVectorField& C() const;
00288
00289
00290 const surfaceVectorField& Cf() const;
00291
00292
00293
00294
00295
00296 void clearOut();
00297
00298
00299 virtual void updateMesh(const mapPolyMesh& mpm);
00300
00301
00302 virtual tmp<scalarField> movePoints(const pointField&);
00303
00304
00305 virtual void mapFields(const mapPolyMesh& mpm);
00306
00307
00308
00309 void removeFvBoundary();
00310
00311
00312 surfaceScalarField& setPhi();
00313
00314
00315 DimensionedField<scalar, volMesh>& setV0();
00316
00317
00318
00319
00320
00321 virtual bool writeObjects
00322 (
00323 IOstream::streamFormat fmt,
00324 IOstream::versionNumber ver,
00325 IOstream::compressionType cmp
00326 ) const;
00327
00328
00329 virtual bool write() const;
00330
00331
00332
00333
00334 bool operator!=(const fvMesh&) const;
00335 bool operator==(const fvMesh&) const;
00336 };
00337
00338
00339
00340
00341 }
00342
00343
00344
00345 #ifdef NoRepository
00346 # include <finiteVolume/fvPatchFvMeshTemplates.C>
00347 #endif
00348
00349
00350
00351 #endif
00352
00353