/*--------------------------------*- C++ -*----------------------------------*\
  ==  == ====== ====   ====    |
                    \\     ||  | Multiphase Code Repository by HZDR
  ======   //   ||  || ===//   | Website: https://doi.org/10.14278/rodare.767
  ||  ||  //    ||  // || \\   | License: GPL-3.0-or-later
  ==  == ====== ====   ==  ==  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "constant";
    object      phaseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

phases          ( gas1 gas2 liquid );

gas1
{
    type            pureIsothermalPhaseModel;
    diameterModel
    {
        type            constant;
        d               0.0034;
    }
    residualAlpha   1e-06;
}

gas2
{
    type            pureIsothermalPhaseModel;
    diameterModel
    {
        type            constant;
        d               0.0034;
    }
    residualAlpha   1e-06;
}

liquid
{
    type            pureIsothermalPhaseModel;
    Sc              0.7;
    diameterModel
    {
        type            constant;
        d               0.00045;
    }
    residualAlpha   1e-06;
}

blending
{
    default
    {
        type            continuous;
        phase           liquid;
    }
}

surfaceTension
{
    gas1_liquid
    {
        type            constant;
        sigma           0.071;
    }
    gas2_liquid
    {
        type            constant;
        sigma           0.071;
    }
}


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