/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2006                                 |
|   \\  /    A nd           | Website:  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.003617;

boundaryField
{
	
	
    floor_adb
    {
       type            epsilonWallFunction;
        value           $internalField;
    }

    ceiling
    {
       type            epsilonWallFunction;
        value           $internalField;
    }

    freeWalls
    {
       type            epsilonWallFunction;
        value           $internalField;
    }
    face_heated
    {
       type            epsilonWallFunction;
        value           $internalField;
    }
    inlet
    {
       type            turbulentMixingLengthDissipationRateInlet;
        mixingLength    0.035;
        value           $internalField;
    }
    outlet
    {
        type            zeroGradient;
    }
  /*  floor
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }
    ceiling
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }
    fixedWalls
    {
        type            epsilonWallFunction;
        value           uniform 0.01;
    }*/
}


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