/*--------------------------------*- 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          ( airC airD1 airD2 water );

airC
{
    #includeEtc     "caseDicts/multimorph/continuousIsothermalPhase.cfg"
}

airD1
{
    type            pureIsothermalPhaseModel;

    diameterModel
    {
        type            populationBalance;
        populationBalance bubbles;
        nGroups         2;
    }

    residualAlpha   1e-6;
}

airD2
{
    type            pureIsothermalPhaseModel;

    diameterModel
    {
        type            populationBalance;
        populationBalance bubbles;
        nGroups         3;
    }

    residualAlpha   1e-6;
}

water
{
    #includeEtc     "caseDicts/multimorph/continuousIsothermalPhase.cfg"
}

blending
{
    #includeEtc     "caseDicts/multimorph/blending.cfg"
}

surfaceTension
{
    airC_water
    {
        type            constant;
        sigma           0.045;
    }

    airD1_water
    {
        type            constant;
        sigma           0.045;
    }

    airD2_water
    {
        type            constant;
        sigma           0.045;
    }
}

interfaceCompression
{}

bubbles
{
    continuousPhase water;

    sphericalDiameters
    {
        type            manual;
        values          ( 1.13 1.14 1.15 1.16 1.17 );
    }

    shapeModel      spherical;

    coalescenceModels
    ();

    breakupModels
    ();

    binaryBreakupModels
    ();
}


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