/*--------------------------------*- C++ -*----------------------------------*\
Volume-averaged gas pressure.
\*---------------------------------------------------------------------------*/
FoamFile {
  version     2.0;
  format      ascii;
  class       volScalarField;
  object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 1920;

boundaryField {
  top
  {
    type            fixedValue;
    value           uniform 1920;
  }

  sides
  {
    type            zeroGradient;
  }

  bottom
  {
    type            fixedValue;
    value           uniform 100;
  }

}
// ************************************************************************* /
