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

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

internalField   uniform 1e5;

boundaryField
{
   
    MAIN_STREAM_INLET
    {
        type            fixedFluxPressure;
        value           $internalField;
    }

    OUTLET
    {
        type            prghPressure;
        p               $internalField;
        value           $internalField;
    }

    SECONDARY_STREAM_INLET
    {
        type            fixedFluxPressure;
        value           $internalField;
    }

    PLATE
    {
        type            fixedFluxPressure;
        value           $internalField;
    }

    TOP
    {
        type            fixedFluxPressure;
        value           $internalField;
    }

    HOLE_WALL
    {
        type            fixedFluxPressure;
        value           $internalField;
    }

    frontAndBackPlanes
    {
       type           empty;
    }


}

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