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

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

internalField   uniform 0.14147;

boundaryField
{
    inlet_1
    {
        type            fixedValue;
        value           uniform 0.008842;        // Crossflow epsilon
    }

    inlet_2
    {
        type            fixedValue;
        value           uniform 0.14147;        // Jet epsilon
    }

    outlet
    {
        type            zeroGradient;
    }

    fixedWalls
    {
        type            epsilonWallFunction;
        value           uniform 0.14147;
    }
}

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