/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  9
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       volScalarField;
    location    "0";
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 1e5;

boundaryField
{
    frontAndBack
    {
        type            empty;
    }

    wall1
    {
      /*
        type            calculated;
        value           $internalField;
      */  
        type            zeroGradient;
    }

    wall2
    {
      /*  type            calculated;
        value           $internalField;
      */  
        type            zeroGradient;
    }

    inlet
    {
        type            calculated;
        value           $internalField;
        
       // type            zeroGradient;
    }
    
    outlet
    {
      /*  type            calculated;
        value           $internalField;
        */
      // type            zeroGradient;
       type            fixedValue;
       value           uniform 0;
        
    }
    
    cylinder
    {
        type            calculated;
        value           $internalField;
        
       // type            zeroGradient;
    }
}


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