/*--------------------------------*- 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       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "$FOAM_CASE/constant/parameters"
dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (2.303 0 0);  // Re = 150000, nu =1.6e-05, d =1

//Input inlet velocity, zeroGradientat outlet, walls no slip

boundaryField
{
    walls
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
	plate
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    inlet
    {
        type            fixedValue;
        value           uniform $velocity;
    }
    

    outlet
    {
        type            zeroGradient;
	
    }
frontAndBack
{
    type empty;
}

    

}

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