/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.7.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      binary;
    class       dictionary;
    location    "constant";
    object      turbulenceProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

simulationType  RAS;

RAS
{
RASModel        kEpsilon; //kEpsilon21x; 

turbulence      on;

printCoeffs     on;

kEpsilonCoeffs
{
    Cmu         0.09;
    C1          1.44;
    //C2          1.92;
    C2          1.85;
    C3          -0.33;  // only for compressible
    sigmak      1.0;    // only for compressible
    sigmaEps    1.3;
    Prt         1.0;    // only for compressible
}
}


// ************************************************************************* //
