/*--------------------------------*- 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;
    location    "0";
    object      p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

// internalField   uniform 0;
internalField   uniform 101325;

boundaryField
{

  // "side_x.*|side_z.*"
  "side.*"
  {
    // type            fixedFluxPressure;

    // type            prghPressure;
    // p               uniform 101325;

    type             totalPressure;
    p0               uniform 101325;

    // type            prghTotalPressure;

    // type            fixedValue;
    // type            inletOutlet;
    // type            zeroGradient;
    // value           uniform 101325;
    // p0              $internalField;

  }
  //
  // side_y_plus
  // {
  //   type            fixedFluxPressure;
  //
  //   // type            prghTotalPressure;
  //   // p0              uniform 101325;
  // }

  ground
  {
    type            fixedFluxPressure;
    // value           $internalField;
    }

  container
  {
    type            fixedFluxPressure;
    // value           $internalField;
  }

  inlet
  {
    type            fixedFluxPressure;
    // value           internalField;
  }

  base
  {
    type            fixedFluxPressure;
    // value           $internalField;
  }

}

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