/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2106                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      turbulenceProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

simulationType      LES;


LES
{
    LESModel        dynamicLagrangian;

    dynLagrangianCoeffs
    {
        filter       simple;
        ce         1.048;
        theta     1.5;
    }

    //SmagorinskyCoeffs
    //{
    //    Ce              1.048;
    //    //Ck              0.0265463553; // Updated to give Cs = 0.065
    //}

    delta           cubeRootVol;

    filter       simple;


    vanDriestCoeffs
    {
        delta           cubeRootVol;
        cubeRootVolCoeffs
        {
            deltaCoeff      1;
        }
        Aplus           26;
        Cdelta          0.158;
    }

    printCoeffs     on;
    turbulence      on;
}

/*
    inlet
    {
        type            turbulentInlet;
        referenceField  uniform (77.89 0 0);//(10 0 0)
        fluctuationScale (0.004 0.004 0.004);//(0.02 0.01 0.01)
        value           uniform (77.89 0 0);//(10 0 0)
    }
*/



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