mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
43 lines
1.5 KiB
C++
43 lines
1.5 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
||
| ========= | |
|
||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
| \\ / O peration | Version: v2012 |
|
||
| \\ / A nd | Website: www.openfoam.com |
|
||
| \\/ M anipulation | |
|
||
\*---------------------------------------------------------------------------*/
|
||
FoamFile
|
||
{
|
||
version 2.0;
|
||
format ascii;
|
||
class dictionary;
|
||
object turbulenceProperties;
|
||
}
|
||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
||
simulationType RAS;
|
||
|
||
RAS
|
||
{
|
||
RASModel RAS_MODEL;
|
||
turbulence on;
|
||
printCoeffs on;
|
||
|
||
RAS_MODELCoeffs // Valid only for epsilon-based models
|
||
{
|
||
Cmu 0.09;
|
||
C1 1.44;
|
||
C2 1.92;
|
||
sigmaEps 1.11; //Original value:1.44
|
||
// See p. 358:
|
||
// Hargreaves, D. M., & Wright, N. G. (2007).
|
||
// On the use of the k–ε model in commercial CFD software
|
||
// to model the neutral atmospheric boundary layer.
|
||
// Journal of wind engineering and
|
||
// industrial aerodynamics, 95(5), 355-369.
|
||
// DOI:10.1016/j.jweia.2006.08.002
|
||
}
|
||
}
|
||
|
||
|
||
// ************************************************************************* //
|