/*--------------------------------*- 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 gas3 liquid );

gas1
{
    type            multicomponentPhaseModel;
    diameterModel
    {
        type            populationBalance;
        populationBalance bubbles;
        nGroups         11;
    }
    residualAlpha   1e-06;
}

gas2
{
    type            multicomponentPhaseModel;
    diameterModel
    {
        type            populationBalance;
        populationBalance bubbles;
        nGroups         14;
    }
    residualAlpha   1e-06;
}

gas3
{
    type            multicomponentPhaseModel;
    diameterModel
    {
        type            populationBalance;
        populationBalance bubbles;
        nGroups         15;
    }
    residualAlpha   1e-06;
}

liquid
{
    type            multicomponentPhaseModel;
    diameterModel   none;
    residualAlpha   1e-06;
}

bubbles
{
    continuousPhase liquid;
    sphericalDiameters
    {
        type            uniform;
        min             0.0001;
        max             0.004;
    }
    shapeModel      spherical;
    coalescenceModels ( );
    binaryBreakupModels ( );
    breakupModels   ( );
}

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

surfaceTension
{
}


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