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

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

internalField   uniform 0;

boundaryField
{
    x0
    {
        type            zeroGradient;
    }

    x1
    {
        type            fixedValue;
        value           uniform 0;
    }

    y0
    {
        type            cyclic;
    }

    y1
    {
        type            cyclic;
    }

    z0
    {
        type            cyclic;
    }

    z1
    {
        type            cyclic;
    }

    "(Sphere1-1|Sphere1-2|Sphere1-3|Sphere1-4|Sphere1-5|Sphere2-1|Sphere2-2|Sphere2-3|Sphere2-4|Sphere3-1|Sphere3-2|Sphere3-3|Sphere3-4|Sphere3-5|Sphere4-1|Sphere4-2|Sphere4-3|Sphere4-4|Sphere5-1|Sphere5-2|Sphere5-3|Sphere5-4|Sphere5-5)"
    {
        type            zeroGradient;
    }
}


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