/*--------------------------------*- 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       volScalarField;
    object      epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 -1 0 0 0 0];

#include        "include/initialConditions"

internalField   uniform $turbulentOmega;

boundaryField
{
    outlet
    {
        type            inletOutlet;
        inletValue      uniform $turbulentOmega;
        value           $internalField;
    }

    inlet
    {
        type            atmBoundaryLayerInletOmega;
        #include        "include/ABLConditions"
    }


    ground
    {
        type            omegaWallFunction;
        Cmu             0.09;
        kappa           0.4;
        E               9.8;
        value           $internalField;

    }

    top
    {
        type            zeroGradient;
    }
    sides
    {
        type            zeroGradient;
    }


    "proc.*"
    {
        type            processor;
    }

}


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