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

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 1;

boundaryField
{
    inlet
    {
        type    fixedValue;
        value   uniform 1;     // inlet = 1 (full bore)
    }

    outlet
    {
        type    zeroGradient;
        value   uniform 0;     // initial value = 0 (not enforced later)
    }

    wall
    {
        type    zeroGradient;
        value   uniform 0;     // initial value = 0 (not enforced later)
    }
}

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

