/*--------------------------------*- 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;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 101325;

boundaryField
{
  "side.*"
  {
    type            calculated;
    value           $internalField;
  }

  ground
  {
    type            calculated;
    value           $internalField;
  }

  container
  {
    type            calculated;
    value           $internalField;
  }

  inlet
  {
    type            calculated;
    value           $internalField;
  }

  base
  {
    type            calculated;
    value           $internalField;
  }

}

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