/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  plus                                  |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 1e5;

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

    roof
    {
        type            fixedFluxPressure;
        value           uniform 1e5;
    }

    outlet
    {
        type                prghPressure;
        value               uniform 1e5;
        p                   uniform 1e5;

    }

    "(bottom.*)"
    {
        type            fixedFluxPressure;
        value           uniform 1e5;
    }

    tank_wall
    {
        type            fixedFluxPressure;
        value           uniform 1e5;
    }

    valve_wall
    {
        type            fixedFluxPressure;
        value           uniform 1e5;
    }

    "(wedge.*)"
    {
        type            wedge;
    }
}
// ************************************************************************* //
