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

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

internalField   uniform 0;

boundaryField
{

    west
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }

    east
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }

    south
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }

    north
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }

    bottom
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }


    top
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }


    plant
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }

    inlet
    {
        type            buoyantPressure;
        rho             rhok;
        value           uniform 0;
    }

    outlet
    {
        type            fixedValue;
        rho             rhok;
        value           uniform 0;
    }


}

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