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
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081 #ifndef compressiblekOmegaSST_H
00082 #define compressiblekOmegaSST_H
00083
00084 #include <compressibleRASModels/RASModel.H>
00085 #include <finiteVolume/wallDist.H>
00086
00087
00088
00089 namespace Foam
00090 {
00091 namespace compressible
00092 {
00093 namespace RASModels
00094 {
00095
00096
00097
00098
00099
00100 class kOmegaSST
00101 :
00102 public RASModel
00103 {
00104
00105
00106
00107
00108 dimensionedScalar alphaK1_;
00109 dimensionedScalar alphaK2_;
00110
00111 dimensionedScalar alphaOmega1_;
00112 dimensionedScalar alphaOmega2_;
00113
00114 dimensionedScalar Prt_;
00115
00116 dimensionedScalar gamma1_;
00117 dimensionedScalar gamma2_;
00118
00119 dimensionedScalar beta1_;
00120 dimensionedScalar beta2_;
00121
00122 dimensionedScalar betaStar_;
00123
00124 dimensionedScalar a1_;
00125 dimensionedScalar c1_;
00126
00127
00128
00129
00130 wallDist y_;
00131
00132
00133
00134 volScalarField k_;
00135 volScalarField omega_;
00136 volScalarField mut_;
00137 volScalarField alphat_;
00138
00139
00140
00141
00142 tmp<volScalarField> F1(const volScalarField& CDkOmega) const;
00143 tmp<volScalarField> F2() const;
00144
00145 tmp<volScalarField> blend
00146 (
00147 const volScalarField& F1,
00148 const dimensionedScalar& psi1,
00149 const dimensionedScalar& psi2
00150 ) const
00151 {
00152 return F1*(psi1 - psi2) + psi2;
00153 }
00154
00155 tmp<volScalarField> alphaK(const volScalarField& F1) const
00156 {
00157 return blend(F1, alphaK1_, alphaK2_);
00158 }
00159
00160 tmp<volScalarField> alphaOmega(const volScalarField& F1) const
00161 {
00162 return blend(F1, alphaOmega1_, alphaOmega2_);
00163 }
00164
00165 tmp<volScalarField> beta(const volScalarField& F1) const
00166 {
00167 return blend(F1, beta1_, beta2_);
00168 }
00169
00170 tmp<volScalarField> gamma(const volScalarField& F1) const
00171 {
00172 return blend(F1, gamma1_, gamma2_);
00173 }
00174
00175
00176 public:
00177
00178
00179 TypeName("kOmegaSST");
00180
00181
00182
00183
00184
00185 kOmegaSST
00186 (
00187 const volScalarField& rho,
00188 const volVectorField& U,
00189 const surfaceScalarField& phi,
00190 const basicThermo& thermophysicalModel
00191 );
00192
00193
00194
00195 virtual ~kOmegaSST()
00196 {}
00197
00198
00199
00200
00201
00202 tmp<volScalarField> DkEff(const volScalarField& F1) const
00203 {
00204 return tmp<volScalarField>
00205 (
00206 new volScalarField("DkEff", alphaK(F1)*mut_ + mu())
00207 );
00208 }
00209
00210
00211 tmp<volScalarField> DomegaEff(const volScalarField& F1) const
00212 {
00213 return tmp<volScalarField>
00214 (
00215 new volScalarField("DomegaEff", alphaOmega(F1)*mut_ + mu())
00216 );
00217 }
00218
00219 virtual tmp<volScalarField> mut() const
00220 {
00221 return mut_;
00222 }
00223
00224
00225 virtual tmp<volScalarField> alphaEff() const
00226 {
00227 return tmp<volScalarField>
00228 (
00229 new volScalarField("alphaEff", alphat_ + alpha())
00230 );
00231 }
00232
00233
00234 virtual tmp<volScalarField> k() const
00235 {
00236 return k_;
00237 }
00238
00239 virtual tmp<volScalarField> omega() const
00240 {
00241 return omega_;
00242 }
00243
00244
00245 virtual tmp<volScalarField> epsilon() const
00246 {
00247 return tmp<volScalarField>
00248 (
00249 new volScalarField
00250 (
00251 IOobject
00252 (
00253 "epsilon",
00254 mesh_.time().timeName(),
00255 mesh_
00256 ),
00257 betaStar_*k_*omega_,
00258 omega_.boundaryField().types()
00259 )
00260 );
00261 }
00262
00263
00264 virtual tmp<volSymmTensorField> R() const;
00265
00266
00267 virtual tmp<volSymmTensorField> devRhoReff() const;
00268
00269
00270 virtual tmp<fvVectorMatrix> divDevRhoReff(volVectorField& U) const;
00271
00272
00273 virtual void correct();
00274
00275
00276 virtual bool read();
00277 };
00278
00279
00280
00281
00282 }
00283 }
00284 }
00285
00286
00287
00288 #endif
00289
00290