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

/*
No. Property 	SI unit 
1 	Mass 		kilogram (kg)
2 	Length 		metre (m)
3 	Time 		second (s)
4 	Temperature Kelvin (K) 
5 	Quantity 	kilogram-mole (kgmol) 
6 	Current 	ampere (A)
7 	Luminous 	intensity candela (cd)
*/

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

internalField   uniform 0;

boundaryField
{
    cavitywalls
    {
        type            zeroGradient;
    }

	ballsurface
	{
		type            zeroGradient;
	}

    inlet
    {
        type            zeroGradient;
    }
	
	outlet
	{
		type            fixedValue;
        value           uniform 0;
	}
	
	ySymmetry
	{
		type            symmetryPlane;
	}
}

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