/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1912                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Re = 0.23*10^6 ---> Turbulent Intensity (I) = 0.16*((Re)^(-1/8)) = 0.034
// k = (3/2)*(I*U_ref)^2 = 9488.686

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

internalField   uniform 9488.686;

boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform 9488.686;
    }
    outlet
    {
        type            inletOutlet;
        inletValue      uniform 9488.686;
        value           uniform 9488.686;
    }
    farfield
    {
        type            inletOutlet;
        inletValue      uniform 9488.686;
        value           uniform 9488.686;
    }
    obstacle
    {
        type            kqRWallFunction;
        value           uniform 9488.686;
    }
    symmetryplane
    {
    	type		symmetryPlane;
    }
}


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