/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2212                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "$FOAM_CASE/constant/parameters"
dimensions      [0 2 -2 0 0 0 0];

internalField   uniform 0.01;

boundaryField
{
    walls
    {
        type            kqRWallFunction;
        value           uniform 0.00001;
    }
	plate
    {
        type            kqRWallFunction;
        value           uniform 0.00001;
    }
    inlet
    {
        type            fixedValue;
        value           uniform 0.0216;  //k=3/2(IU)^2, I=5%=0.05, U=2.4m/s
    }
    outlet
    {
        type            freestream;
        freestreamValue uniform 0.0216;  
        value           uniform 0.0216;
    }
	frontAndBack
{
    type empty;
}

   

}


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