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 #ifndef KinematicCloud_H
00043 #define KinematicCloud_H
00044
00045 #include <lagrangian/Cloud.H>
00046 #include <lagrangianIntermediate/kinematicCloud.H>
00047 #include <OpenFOAM/IOdictionary.H>
00048 #include <OpenFOAM/autoPtr.H>
00049 #include <OpenFOAM/Random.H>
00050 #include <finiteVolume/fvMesh.H>
00051 #include <finiteVolume/volFields.H>
00052 #include <finiteVolume/fvMatrices.H>
00053 #include <lagrangianIntermediate/particleForces.H>
00054
00055 #include <lagrangianIntermediate/IntegrationSchemesFwd.H>
00056
00057
00058
00059 namespace Foam
00060 {
00061
00062
00063
00064 template<class CloudType>
00065 class DispersionModel;
00066
00067 template<class CloudType>
00068 class DragModel;
00069
00070 template<class CloudType>
00071 class InjectionModel;
00072
00073 template<class CloudType>
00074 class PostProcessingModel;
00075
00076 template<class CloudType>
00077 class PatchInteractionModel;
00078
00079
00080
00081
00082
00083 template<class ParcelType>
00084 class KinematicCloud
00085 :
00086 public Cloud<ParcelType>,
00087 public kinematicCloud
00088 {
00089
00090
00091
00092 KinematicCloud(const KinematicCloud&);
00093
00094
00095 void operator=(const KinematicCloud&);
00096
00097
00098 protected:
00099
00100
00101
00102
00103 const fvMesh& mesh_;
00104
00105
00106 IOdictionary particleProperties_;
00107
00108
00109 typename ParcelType::constantProperties constProps_;
00110
00111
00112 const Switch active_;
00113
00114
00115
00116 const label parcelTypeId_;
00117
00118
00119
00120 const Switch coupled_;
00121
00122
00123
00124 const Switch cellValueSourceCorrection_;
00125
00126
00127 Random rndGen_;
00128
00129
00130
00131
00132
00133 const volScalarField& rho_;
00134
00135
00136 const volVectorField& U_;
00137
00138
00139 const volScalarField& mu_;
00140
00141
00142
00143
00144
00145 const dimensionedVector& g_;
00146
00147
00148
00149 particleForces forces_;
00150
00151
00152 dictionary interpolationSchemes_;
00153
00154
00155
00156
00157
00158 autoPtr<DispersionModel<KinematicCloud<ParcelType> > >
00159 dispersionModel_;
00160
00161
00162 autoPtr<DragModel<KinematicCloud<ParcelType> > > dragModel_;
00163
00164
00165 autoPtr<InjectionModel<KinematicCloud<ParcelType> > >
00166 injectionModel_;
00167
00168
00169 autoPtr<PatchInteractionModel<KinematicCloud<ParcelType> > >
00170 patchInteractionModel_;
00171
00172
00173 autoPtr<PostProcessingModel<KinematicCloud<ParcelType> > >
00174 postProcessingModel_;
00175
00176
00177
00178
00179
00180 autoPtr<vectorIntegrationScheme> UIntegrator_;
00181
00182
00183
00184
00185
00186 DimensionedField<vector, volMesh> UTrans_;
00187
00188
00189
00190
00191
00192 void preEvolve();
00193
00194
00195 void evolveCloud();
00196
00197
00198 void postEvolve();
00199
00200
00201 public:
00202
00203
00204
00205
00206 KinematicCloud
00207 (
00208 const word& cloudName,
00209 const volScalarField& rho,
00210 const volVectorField& U,
00211 const volScalarField& mu,
00212 const dimensionedVector& g,
00213 bool readFields = true
00214 );
00215
00216
00217
00218 virtual ~KinematicCloud();
00219
00220
00221
00222 typedef ParcelType parcelType;
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232 inline const fvMesh& mesh() const;
00233
00234
00235 inline const IOdictionary& particleProperties() const;
00236
00237
00238 inline const typename ParcelType::constantProperties&
00239 constProps() const;
00240
00241
00242
00243
00244
00245 inline const Switch active() const;
00246
00247
00248 inline label parcelTypeId() const;
00249
00250
00251 inline const Switch coupled() const;
00252
00253
00254 inline const Switch cellValueSourceCorrection() const;
00255
00256
00257 inline Random& rndGen();
00258
00259
00260
00261
00262
00263 inline const volVectorField& U() const;
00264
00265
00266 inline const volScalarField& rho() const;
00267
00268
00269 inline const volScalarField& mu() const;
00270
00271
00272
00273
00274
00275 inline const dimensionedVector& g() const;
00276
00277
00278
00279 inline const particleForces& forces() const;
00280
00281
00282
00283
00284
00285 inline const dictionary& interpolationSchemes() const;
00286
00287
00288
00289
00290
00291 inline const DispersionModel<KinematicCloud<ParcelType> >&
00292 dispersion() const;
00293
00294
00295 inline DispersionModel<KinematicCloud<ParcelType> >&
00296 dispersion();
00297
00298
00299 inline const DragModel<KinematicCloud<ParcelType> >&
00300 drag() const;
00301
00302
00303 inline const InjectionModel<KinematicCloud<ParcelType> >&
00304 injection() const;
00305
00306
00307 inline InjectionModel<KinematicCloud<ParcelType> >&
00308 injection();
00309
00310
00311 inline const PatchInteractionModel<KinematicCloud<ParcelType> >&
00312 patchInteraction() const;
00313
00314
00315 inline PostProcessingModel<KinematicCloud<ParcelType> >&
00316 postProcessing();
00317
00318
00319
00320
00321
00322 inline const vectorIntegrationScheme& UIntegrator() const;
00323
00324
00325
00326
00327
00328
00329
00330 inline DimensionedField<vector, volMesh>& UTrans();
00331
00332
00333 inline tmp<DimensionedField<vector, volMesh> > SU() const;
00334
00335
00336
00337
00338
00339 inline scalar massInjected() const;
00340
00341
00342 inline scalar massInSystem() const;
00343
00344
00345 void info() const;
00346
00347
00348
00349
00350
00351
00352 inline const tmp<volScalarField> theta() const;
00353
00354
00355
00356 inline const tmp<volScalarField> alpha() const;
00357
00358
00359
00360 inline const tmp<volScalarField> rhoEff() const;
00361
00362
00363
00364
00365
00366 void checkParcelProperties
00367 (
00368 ParcelType& parcel,
00369 const scalar lagrangianDt,
00370 const bool fullyDescribed
00371 );
00372
00373
00374 void resetSourceTerms();
00375
00376
00377 void evolve();
00378 };
00379
00380
00381
00382
00383 }
00384
00385
00386
00387 #include "KinematicCloudI_.H"
00388
00389
00390
00391 #ifdef NoRepository
00392 # include "KinematicCloud_.C"
00393 #endif
00394
00395
00396
00397 #endif
00398
00399