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

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

internalField   uniform 0;

boundaryField
{
    outlet_region0
    {
	type            fixedValue;
    	value           uniform 0;
    }
    "walls.*"
    {
	type		zeroGradient;
    }
    sup_zone
    {
	type                          fixedValue;
	value uniform 68097;
    }
    int_zone
    {
	type                          fixedValue;
	value uniform 150992;
    }
    ".*"
    {
    	type		fixedFluxPressure;
	value		$internalField;
    }
}

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