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
00048 #ifndef compressibleLESModel_H
00049 #define compressibleLESModel_H
00050
00051 #include <compressibleTurbulenceModel/turbulenceModel.H>
00052 #include <LESdeltas/LESdelta.H>
00053 #include <finiteVolume/fvm.H>
00054 #include <finiteVolume/fvc.H>
00055 #include <finiteVolume/fvMatrices.H>
00056 #include <basicThermophysicalModels/basicThermo.H>
00057 #include <finiteVolume/bound.H>
00058 #include <OpenFOAM/autoPtr.H>
00059 #include <OpenFOAM/runTimeSelectionTables.H>
00060
00061
00062
00063 namespace Foam
00064 {
00065 namespace compressible
00066 {
00067
00068
00069
00070
00071
00072 class LESModel
00073 :
00074 public turbulenceModel,
00075 public IOdictionary
00076 {
00077
00078 protected:
00079
00080
00081
00082 Switch printCoeffs_;
00083 dictionary coeffDict_;
00084
00085 dimensionedScalar k0_;
00086
00087 autoPtr<LESdelta> delta_;
00088
00089
00090
00091
00092
00093 virtual void printCoeffs();
00094
00095
00096 private:
00097
00098
00099
00100
00101 LESModel(const LESModel&);
00102
00103
00104 LESModel& operator=(const LESModel&);
00105
00106
00107 public:
00108
00109
00110 TypeName("LESModel");
00111
00112
00113
00114
00115 declareRunTimeSelectionTable
00116 (
00117 autoPtr,
00118 LESModel,
00119 dictionary,
00120 (
00121 const volScalarField& rho,
00122 const volVectorField& U,
00123 const surfaceScalarField& phi,
00124 const basicThermo& thermoPhysicalModel
00125 ),
00126 (rho, U, phi, thermoPhysicalModel)
00127 );
00128
00129
00130
00131
00132
00133 LESModel
00134 (
00135 const word& type,
00136 const volScalarField& rho,
00137 const volVectorField& U,
00138 const surfaceScalarField& phi,
00139 const basicThermo& thermoPhysicalModel
00140 );
00141
00142
00143
00144
00145
00146 static autoPtr<LESModel> New
00147 (
00148 const volScalarField& rho,
00149 const volVectorField& U,
00150 const surfaceScalarField& phi,
00151 const basicThermo& thermoPhysicalModel
00152 );
00153
00154
00155
00156 virtual ~LESModel()
00157 {}
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167 inline const dictionary& coeffDict() const
00168 {
00169 return coeffDict_;
00170 }
00171
00172
00173 const dimensionedScalar& k0() const
00174 {
00175 return k0_;
00176 }
00177
00178
00179 dimensionedScalar& k0()
00180 {
00181 return k0_;
00182 }
00183
00184
00185 inline const volScalarField& delta() const
00186 {
00187 return delta_();
00188 }
00189
00190
00191
00192 virtual tmp<volScalarField> k() const = 0;
00193
00194
00195 virtual tmp<volScalarField> epsilon() const = 0;
00196
00197
00198 virtual tmp<volScalarField> muSgs() const = 0;
00199
00200
00201 virtual tmp<volScalarField> muEff() const
00202 {
00203 return tmp<volScalarField>
00204 (
00205 new volScalarField("muEff", muSgs() + mu())
00206 );
00207 }
00208
00209
00210 virtual tmp<volScalarField> alphaSgs() const = 0;
00211
00212
00213 virtual tmp<volScalarField> alphaEff() const = 0;
00214
00215
00216 virtual tmp<volSymmTensorField> B() const = 0;
00217
00218
00219
00220 virtual tmp<volSymmTensorField> devRhoBeff() const = 0;
00221
00222
00223
00224 virtual tmp<fvVectorMatrix> divDevRhoBeff(volVectorField& U) const = 0;
00225
00226
00227
00228
00229
00230 virtual tmp<volScalarField> mut() const
00231 {
00232 return muSgs();
00233 }
00234
00235
00236 virtual tmp<volScalarField> alphat() const
00237 {
00238 return alphaSgs();
00239 }
00240
00241
00242 virtual tmp<volSymmTensorField> R() const
00243 {
00244 return B();
00245 }
00246
00247
00248 virtual tmp<volSymmTensorField> devRhoReff() const
00249 {
00250 return devRhoBeff();
00251 }
00252
00253
00254 virtual tmp<fvVectorMatrix> divDevRhoReff(volVectorField& U) const
00255 {
00256 return divDevRhoBeff(U);
00257 }
00258
00259
00260
00261
00262
00263 void correct();
00264
00265
00266 virtual void correct(const tmp<volTensorField>& gradU);
00267
00268
00269 virtual bool read() = 0;
00270 };
00271
00272
00273
00274
00275 }
00276 }
00277
00278
00279
00280 #endif
00281
00282