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 LESModel_H
00048 #define LESModel_H
00049
00050 #include <incompressibleTurbulenceModel/turbulenceModel.H>
00051 #include <LESdeltas/LESdelta.H>
00052 #include <finiteVolume/fvm.H>
00053 #include <finiteVolume/fvc.H>
00054 #include <finiteVolume/fvMatrices.H>
00055 #include <incompressibleTransportModels/transportModel.H>
00056 #include <finiteVolume/wallFvPatch.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 incompressible
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 volVectorField& U,
00122 const surfaceScalarField& phi,
00123 transportModel& lamTransportModel
00124 ),
00125 (U, phi, lamTransportModel)
00126 );
00127
00128
00129
00130
00131
00132 LESModel
00133 (
00134 const word& type,
00135 const volVectorField& U,
00136 const surfaceScalarField& phi,
00137 transportModel& lamTransportModel
00138 );
00139
00140
00141
00142
00143
00144 static autoPtr<LESModel> New
00145 (
00146 const volVectorField& U,
00147 const surfaceScalarField& phi,
00148 transportModel& lamTransportModel
00149 );
00150
00151
00152
00153 virtual ~LESModel()
00154 {}
00155
00156
00157
00158
00159
00160
00161
00162 inline const dictionary& coeffDict() const
00163 {
00164 return coeffDict_;
00165 }
00166
00167
00168 virtual const volScalarField& delta() const
00169 {
00170 return delta_();
00171 }
00172
00173
00174 const dimensionedScalar& k0() const
00175 {
00176 return k0_;
00177 }
00178
00179
00180 dimensionedScalar& k0()
00181 {
00182 return k0_;
00183 }
00184
00185
00186
00187 virtual tmp<volScalarField> k() const = 0;
00188
00189
00190 virtual tmp<volScalarField> epsilon() const = 0;
00191
00192
00193 virtual tmp<volScalarField> nuSgs() const = 0;
00194
00195
00196 virtual tmp<volScalarField> nuEff() const
00197 {
00198 return tmp<volScalarField>
00199 (
00200 new volScalarField("nuEff", nuSgs() + nu())
00201 );
00202 }
00203
00204
00205 virtual tmp<volSymmTensorField> B() const = 0;
00206
00207
00208
00209 virtual tmp<volSymmTensorField> devBeff() const = 0;
00210
00211
00212
00213 virtual tmp<fvVectorMatrix> divDevBeff(volVectorField& U) const = 0;
00214
00215
00216
00217
00218
00219 virtual tmp<volScalarField> nut() const
00220 {
00221 return nuSgs();
00222 }
00223
00224
00225 virtual tmp<volSymmTensorField> R() const
00226 {
00227 return B();
00228 }
00229
00230
00231 virtual tmp<volSymmTensorField> devReff() const
00232 {
00233 return devBeff();
00234 }
00235
00236
00237 virtual tmp<fvVectorMatrix> divDevReff(volVectorField& U) const
00238 {
00239 return divDevBeff(U);
00240 }
00241
00242
00243
00244
00245
00246 void correct();
00247
00248
00249 virtual void correct(const tmp<volTensorField>& gradU);
00250
00251
00252 virtual bool read() = 0;
00253 };
00254
00255
00256
00257
00258 }
00259 }
00260
00261
00262
00263 #endif
00264
00265