PrandtlDelta: Added description

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1673
This commit is contained in:
Henry
2015-04-27 16:13:20 +01:00
parent 5e6e03da57
commit 6b0d3634d1

View File

@ -25,7 +25,31 @@ Class
Foam::PrandtlDelta Foam::PrandtlDelta
Description Description
Simple cube-root of cell volume delta used in LES models. Apply Prandtl mixing-length based damping function to the specified
geometric delta to improve near-wall behavior or LES models.
\verbatim
delta = min(geometricDelta, (kappa/Cdelta)*y)
\endverbatim
Example specification in the turbulenceProperties dictionary:
\verbatim
delta Prandtl;
PrandtlCoeffs
{
delta cubeRootVol;
cubeRootVolCoeffs
{
deltaCoeff 1;
}
// Default coefficients
kappa 0.41;
Cdelta 0.158;
}
\endverbatim
SourceFiles SourceFiles
PrandtlDelta.C PrandtlDelta.C