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

defaultValues
{
    s   0;
}

zones
{
    inlet
    {
        type        cylinder;
        zoneType    face;

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

        values
        {
            s   1;
        }
    }
}

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