/*--------------------------------*- C++ -*----------------------------------*\
| OpenFOAM: The Open Source CFD Toolbox
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       volScalarField;
    object      scalar2;
}
dimensions      [0 0 0 0 0 0 0];

internalField   uniform 0;      // initially no product everywhere

boundaryField
{
    inlet
    {
        type    fixedValue;
        value   uniform 0;      // no product at the inlet
    }

    outlet
    {
        type    zeroGradient;    // convective outflow for product
        value   uniform 0;       // initial field on this patch (not enforced later)
    }

    wall
    {
        type    zeroGradient;    // no-flux product at walls
        value   uniform 0;       // initial value
    }
}
// ************************************************************************* //

