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 #include "SpalartAllmarasDDES.H"
00027 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00028
00029
00030
00031 namespace Foam
00032 {
00033 namespace incompressible
00034 {
00035 namespace LESModels
00036 {
00037
00038
00039
00040 defineTypeNameAndDebug(SpalartAllmarasDDES, 0);
00041 addToRunTimeSelectionTable(LESModel, SpalartAllmarasDDES, dictionary);
00042
00043
00044
00045 tmp<volScalarField> SpalartAllmarasDDES::rd
00046 (
00047 const volScalarField& visc,
00048 const volScalarField& S
00049 ) const
00050 {
00051 return min
00052 (
00053 visc
00054 /(
00055 max
00056 (
00057 S,
00058 dimensionedScalar("SMALL", S.dimensions(), SMALL)
00059 )*sqr(kappa_*y_)
00060 + dimensionedScalar
00061 (
00062 "ROOTVSMALL",
00063 dimensionSet(0, 2 , -1, 0, 0),
00064 ROOTVSMALL
00065 )
00066 ),
00067 scalar(10)
00068 );
00069 }
00070
00071
00072 tmp<volScalarField> SpalartAllmarasDDES::fd(const volScalarField& S) const
00073 {
00074 return 1 - tanh(pow3(8*rd(nuEff(), S)));
00075 }
00076
00077
00078 tmp<volScalarField> SpalartAllmarasDDES::S(const volTensorField& gradU) const
00079 {
00080 return sqrt(2.0)*mag(symm(gradU));
00081 }
00082
00083
00084 tmp<volScalarField> SpalartAllmarasDDES::dTilda(const volScalarField& S) const
00085 {
00086 return max
00087 (
00088 y_
00089 - fd(S)
00090 *max(y_ - CDES_*delta(), dimensionedScalar("zero", dimLength, 0)),
00091 dimensionedScalar("small", dimLength, SMALL)
00092 );
00093 }
00094
00095
00096
00097
00098 SpalartAllmarasDDES::SpalartAllmarasDDES
00099 (
00100 const volVectorField& U,
00101 const surfaceScalarField& phi,
00102 transportModel& transport
00103 )
00104 :
00105 SpalartAllmaras(U, phi, transport, typeName)
00106 {}
00107
00108
00109
00110
00111 }
00112 }
00113 }
00114
00115