/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0.3; // for case 4 and 5
//internalField   uniform 9.139; // uncomment for case 6

boundaryField
{
    inlet
    {
         type            fixedValue;
         value           uniform 0.3; // for case 4 and 5
       // value          uniform 9.139; // uncomment for case 6
    }
    outlet
    {
        type            zeroGradient;
    }
   topWall
    {
        type            omegaWallFunction;
        value           uniform 0.3; // for case 4 and 5
      // value          uniform 9.139; // uncomment for case 6
    }
    bottomwall
    {
        type            omegaWallFunction;
        value           uniform 0.3; // for case 4 and 5
    // value            uniform 9.139; // uncomment for case 6
    }
    frontAndBack
    {
        type            empty;
    }
    fixedwalls
    {
        type            omegaWallFunction;
        value           uniform 0.3; // for case 4 and 5
    // value            uniform 9.139; // uncomment for case 6
    }
}

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