/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  9
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "constant";
    object      momentumTransport;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

simulationType RAS;

RAS
{
    model           kEpsilon;

    turbulence      on;

    printCoeffs     on;

    //Cmu  0.028;
    //gamma1 0.413;
    //beta1   0.0333;
    //alphaK1 1.176;
    //alphaOmega1 2.0;
    //gamma2 0.2;
    //beta2   0.0368;
    //alphaK2 1.0;
    //alphaOmega2 1.168;
    
    C1  1.5;
    C2  1.92;
    sigmak 1.67;
    sigmaEps 2.505;
    Cmu 0.028;
}


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