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

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

internalField   uniform 3.75e-06;

boundaryField
{

    top
    {
        type            kqRWallFunction;
        value           uniform 3.75e-06;
    }

    bottom
    {
        type            kqRWallFunction;
        value           uniform 3.75e-06;
    }

    front
    {
        type            empty;
       
    }

    back
    {
        type           empty;
        
    }

   left
    {
        type            kqRWallFunction;
        value           uniform 3.75e-06;
    }
    right
    {
        type            kqRWallFunction;
        value           uniform 3.75e-04;
    }
}


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