/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2212                               |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "$FOAM_CASE/constant/parameters"
dimensions      [0 0 -1 0 0 0 0];

internalField   uniform 1;

boundaryField
{
    walls
    {
	type            omegaWallFunction;
        value           uniform 3;     //turbulent length scale 0.1*L, L=1m,k = 0.216,
    }
	plate
    {
	type            omegaWallFunction;
        value           uniform 3;
    }
    inlet
    {
        type            fixedValue;
        value           uniform 1;   
    }
    outlet
    {
        type            freestream;
        freestreamValue uniform 1;
        value           uniform 1;
    }
    frontAndBack
{
    type empty;
}

}


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