/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM v2512                                  |
|  \\    /   O peration     | Pressure Field                                  |
|   \\  /    A nd           | Static Pressure (p)                             |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}


// Import initial conditions

#include        "include/initialConditions"


// Pressure dimensions

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


// Initial field value

internalField   uniform $pressure;


// Boundary conditions

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

    // Overset boundary

    overset
    {
        type            overset;
    }

    // Disk surface

    disk
    {
        type            zeroGradient;
    }

    // Inlet boundary

    inlet
    {
        type            zeroGradient;
    }

    // Outlet boundary

    outlet
    {
       type            zeroGradient;
    }

    // Top boundary

    top
    {
          type            zeroGradient;
    }

    // Bottom boundary

    Bottom
    {
        type            zeroGradient;
    }

    // Front and back boundaries

    frontAndBack
    {
        type            fixedValue;
        value           uniform 0;
    }
}

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