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

dimensions      [0 2 -3 0 0 0 0];

internalField   uniform 0.0044;

boundaryField
{
    west
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }

    east
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }

    south
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }

    north
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }

    bottom
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }

    top
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }


    inlet
    {
        type            fixedValue;
        value           uniform 0.0044;
    }

    outlet
    {
        type            zeroGradient;
    }

}


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