FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    location    "0";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

#include        "include/initialConditions"

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform $flowVelocity;

boundaryField
{
//<-Inlet--
    #include "include/fixedInlet"
//--Inlet->

	/*
	inlet
    {
        type            codedFixedValue;
        redirectType    swirl;

        code
        #{
            const vector axis(1, 0, 0);

			vectorField v = this->patch().Cf();
			v.replace(vector::Y, 0);
			v.replace(vector::Z, 0);
			v.replace(vector::X, vectorField v = 5 * pow( this->patch().Cf().component(vector::Z)/10 , 0.22 ) );

            operator==(v);
        #};
        value           $internalField;
    }
	*/

    outlet
    {
        type            inletOutlet;
        inletValue      uniform (0 0 0);
        value           $internalField;
    }

    lowerWall
    {
        type            fixedValue;
        // value           $internalField;
        value           uniform (0 0 0);
    }

    "entities_.*"
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    #include "include/frontBackUpperPatches"
	
//<-Win--
	windows_1160_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_543_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_539_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_537_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_534_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_512_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_509_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_508_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_516_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_502_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_503_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_1211_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_542_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_1159_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_563_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_564_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_1142_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_506_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}
	windows_514_0_2
	{
        type            pressureInletOutletVelocity;
        inletValue      uniform (0 0 0);
        value           uniform (0 0 0);
	}

//--Win->

	"T_.*"
	{
        type            slip;
        value           uniform (0 0 0);
	}
}


// ************************************************************************* //
