FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

#include        "include/initialConditions"

dimensions      [0 2 -2 0 0 0 0];

//internalField   uniform $turbulentKE;
internalField   uniform 0.1;

boundaryField
{
    #include "include/fixedInlet"

    outlet
    {
        type            inletOutlet;
        inletValue      $internalField;
        value           $internalField;
    }

    lowerWall
    {
        type            kqRWallFunction;
        value           $internalField;
    }

    upperWall
    {
    	type slip;
	/*
        type            kqRWallFunction;
        value           $internalField;
	*/
    }

    frontAndBack
    {
    	type slip;
	/*
        type            kqRWallFunction;
        value           $internalField;
	*/
    }

    "entities_.*"
    {
        type            kqRWallFunction;
        value           $internalField;
    }
	
//<-Win--
	windows_227592_0_3
	{
        type            fixedValue;
        value           $internalField;
	}
	windows_227496_0_3
	{
        type            fixedValue;
        value           $internalField;
	}

//--Win->

	"T_.*"
	{
        type            kqRWallFunction;
        value           $internalField;
	}
}


// ************************************************************************* //
