/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1912                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// epsilon = (C_mu^(0.75)*k^(1.5))/L ........(C_mu = 0.09)
// epsilon = (0.09^(0.75)*(5100.084^(1.5)))/1
// epsilon = 59847.757

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

internalField   uniform 59847.757;

boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform 59847.757;
    }
    outlet
    {
        type            inletOutlet;
        inletValue      uniform 59847.757;
        value           uniform 59847.757;
    }
    farfield
    {
        type            inletOutlet;
        inletValue      uniform 59847.757;
        value           uniform 59847.757;
    }
    obstacle
    {
        type            epsilonWallFunction;
        value           uniform 59847.757;
    }
    
    symmetryplane
    {
    	type		symmetryPlane;
    }
}


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