/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Version:  OpenFoam-dev (commit 50d491a)
    \\  /    A nd           | Multiphase-org: a Wikki Brasil project
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      setSaturationDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

porosityField   porosity0;

stationaryPhase alpha.rock;

defaultFieldValues
(
    // only movingPhases
    volScalarFieldValue alpha.oil   0.5
    volScalarFieldValue alpha.gas   0.5
);

regions
(

    cylinderAnnulusToCell
    {
        p1 (0 0 4);
        p2 (0 0 10);
        outerRadius 0.1;
        innerRadius 0.01;
        fieldValues
        (
            // only movingPhases
            volScalarFieldValue alpha.oil   1
            volScalarFieldValue alpha.gas   0
        );
    }
);

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