Meant to keep track of what OpenFOAM wants for turbulence model coefficients inputs


simulationType RAS;

RAS
{
    RASModel            kOmegaSST;

    turbulence          on;

    printCoeffs         on;
}
------------------------------

from log.simpleFoam output from running Simrun in motorbike tutorial
kOmegaSSTCoeffs
{
    alphaK1         0.85;
    alphaK2         1;
    alphaOmega1     0.5;
    alphaOmega2     0.856;
    gamma1          0.555556;
    gamma2          0.44;
    beta1           0.075;
    beta2           0.0828;
    betaStar        0.09;
    a1              0.31;
    b1              1;
    c1              10;
    F3              false;
}


=================================

turbulent fields are KE and Omega (have initial and boundary conditions) but not sure about nut which doesn't have ICs but does seem to have BCs -- it seems to be a wall function type thing


from airFoil2D
SpalartAllmarasCoeffs
{
    sigmaNut        0.66666;
    kappa           0.41;
    Cb1             0.1355;
    Cb2             0.622;
    Cw2             0.3;
    Cw3             2;
    Cv1             7.1;
    Cs              0.3;
}
