/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
/*   Windows 32 and 64 bit porting by blueCAPE: http://www.bluecape.com.pt   *\
|  Based on Windows porting (2.0.x v4) by Symscape: http://www.symscape.com   |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    location    "0";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 1 -1 0 0 0 0];

#include        "./parameterMaster"

#include        "include/initialConditions"

internalField   uniform $flowVelocity;

boundaryField
{
    top
    {
        type            slip;
    }
    sides
    {
        type            slip;
    }
    outlet
    {
        type            advective;
        value           $internalField;
    }

    #include "$inletConditionMaster"

    ground
    {
        type            slip;

    }

    "proc.*"
    {
        type            processor;
    }


}


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