/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  3.0.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    location    "0";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// #include        "include/initialConditions"

#include        "./parameterMaster"

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

internalField   $internalFieldMaster;

TIStrength      $TIStrengthMaster;

boundaryField
{
    // #include "include/fixedInlet"

    #include "$inletConditionMaster"

    outlet
    {
        type            advective;
        value           $internalField;
    }

    walls
    {
        type        slip;
    }

    top
    {
        type        slip;
    }

    bottom
    {
        type        slip;
    }

    "proc.*"
    {
        type            processor;
    }
}


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