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

kInlet          624;

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

internalField   uniform $kInlet;

boundaryField
{
    INLET
    {
	    type      inletOutlet;
		inletValue    uniform $kInlet;
		value         uniform $kInlet;
        /*type turbulentIntensityKineticEnergyInlet;
        intensity 0.05;
        value uniform $kInlet;*/
    }
    OUTLET
    {
        type zeroGradient;
    }
    UP
    {
        type            cyclicAMI;
    }
    DOWN
    {
        type            cyclicAMI;
    }
    frontAndBackPlanes
    {
        type            empty;
    }

    //#includeEtc "caseDicts/setConstraintTypes"
}

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