/*--------------------------------*- 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/tube";
    object      epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0.0000895;

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

    inlet_cold_2
    {
        type            turbulentMixingLengthDissipationRateInlet;
        mixingLength    0.00154;
        value           $internalField;
    }
    outlet_cold_2
    {
        type            inletOutlet;
        value           $internalField;
        inletValue      $internalField;
    }
    cold2_to_solid2
    {
        type            epsilonWallFunction;
        value           $internalField;
    }
}

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