/*--------------------------------*- 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      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0.02089;

boundaryField
{
    inlet_1
    {
        type            fixedValue;
        value           uniform 0.00522;     
    }

    inlet_2
    {
        type            fixedValue;
        value           uniform 0.02089;       
    }

    outlet
    {
        type            zeroGradient;
    }

    fixedWalls
    {
        type            kqRWallFunction;
        value           uniform 0;      
    }


}

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