turbulenceModels/LES/dynamicKEqn/dynamicKEqn: Added dynamic version of the one-equation SGS model

This commit is contained in:
Henry
2015-02-14 13:08:08 +00:00
parent 77eb6f1adb
commit eb266e2add
8 changed files with 512 additions and 6 deletions

View File

@ -19,7 +19,7 @@ simulationType LES;
LES
{
LESModel kEqn;
LESModel dynamicKEqn;
turbulence on;
@ -27,6 +27,11 @@ LES
delta cubeRootVol;
dynamicKEqnCoeffs
{
filter simple;
}
cubeRootVolCoeffs
{
deltaCoeff 1;
@ -89,4 +94,5 @@ LES
}
}
// ************************************************************************* //

View File

@ -28,11 +28,8 @@ gradSchemes
divSchemes
{
default none;
div(phi,U) Gauss linear;
div(phi,U) Gauss LUST grad(U);
div(phi,k) Gauss limitedLinear 1;
div(phi,B) Gauss limitedLinear 1;
div(phi,nuTilda) Gauss limitedLinear 1;
div(B) Gauss linear;
div((nuEff*dev2(T(grad(U))))) Gauss linear;
}