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

dimensions      [];

internalField   uniform 0;

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

    inlet
    {
        type            functionalFixedValue;

        value
        {
            type    surfaces;

            defaultValue    0;

            surfaces
            {
                cylinder
                {
                    type        cylinder;

                    point1      (-0.51 0 0);
                    point2      (-0.49 0 0);
                    radius      0.05;

                    value       1;
                }
            }
        }
    }

    lowerOutlet
    {
        type            inletOutlet;
        inletValue      uniform 0;
    }

    upperOutlet
    {
        type            inletOutlet;
        inletValue      uniform 0;
    }

    wall
    {
        type            zeroGradient;
    }
}


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