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

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

internalField   uniform 0;

boundaryField
{
    INLET
    {
        type            totalPressure;
        p0              $internalField;
        value           $internalField;
    }

    OUTLET
    {
        type            totalPressure;
        p0              $internalField;
        value           $internalField;
    }

    Top_Bottom
    {
        type            fixedFluxPressure;
        value           uniform 0;
    }

    B1
    {
        type            fixedFluxPressure;
        value           uniform 0;
    }

    B2
    {
        type            fixedFluxPressure;
        value           uniform 0;
    }

    frontAndBackPlanes
    {
        type            empty;
    }

    STATOR
    {
        type            cyclicAMI;
        value           $internalField;
    }

    ROTOR
    {
        type            cyclicAMI;
        value           $internalField;
    }

}

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