39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 2.3.0 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object turbulenceProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
simulationType RAS;
|
|
|
|
RAS
|
|
{
|
|
RASModel kEpsilon;
|
|
|
|
turbulence on;
|
|
printCoeffs on;
|
|
|
|
|
|
// Optional model coefficients, kEpsilon
|
|
kEpsilonCoeffs
|
|
{
|
|
Cmu 0.033;
|
|
C1 1.44;
|
|
C2 1.92;
|
|
C3 0.0;
|
|
sigmak 1.0;
|
|
sigmaEps 1.85;
|
|
}
|
|
|
|
// ************************************************************************* //
|