mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Reference: Comte-Bellot, G., and Corrsin, S., "Simple Eulerian Time Correlation of Full- and Narrow-Band Velocity Signals in Grid-Generated, 'Isotropic' Turbulence," Journal of Fluid Mechanics, Vol. 48, No. 2, 1971, pp. 273–337.
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1806 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object turbulenceProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "include/turbulenceModels"
|
|
|
|
simulationType LES;
|
|
|
|
|
|
LES
|
|
{
|
|
turbulence on;
|
|
|
|
printCoeffs on;
|
|
|
|
LESModel kEqn;
|
|
|
|
${:$LESModel}
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************************* //
|