/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  dev                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

omegaInlet   1224;

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

internalField   uniform $omegaInlet;

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"
    inlet
    {
        type      fixedValue;
        value     uniform  2916;
    }
    outlet
    {
        type zeroGradient;
    }
    wall
    {
        //type            zeroGradient;
        type       omegaWallFunction;
        Cmu        0.09;
        kappa      0.41;
        E          9.8;
        value      uniform 2916;
    }
}

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