/*--------------------------------*- 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          ( air1 air2 water );

air1
{
    type            pureIsothermalPhaseModel;
    diameterModel
    {
        type            populationBalance;
        populationBalance bubbles;
        nGroups         11;
    }
    residualAlpha   1e-06;
}

air2
{
    type            pureIsothermalPhaseModel;
    diameterModel
    {
        type            populationBalance;
        populationBalance bubbles;
        nGroups         15;
    }
    residualAlpha   1e-06;
}

water
{
    type            pureIsothermalPhaseModel;
    diameterModel   none;
    residualAlpha   1e-06;
}

bubbles
{
    continuousPhase water;
    sphericalDiameters
    {
        type    uniform;
        min     0.00075;
        max     0.0130;
    }
    shapeModel      spherical;
    coalescenceModels ( #includeEtc "caseDicts/baseline/coalescence.cfg" );
    binaryBreakupModels ( #includeEtc "caseDicts/baseline/breakup.cfg" );
    breakupModels   ( );
}

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

surfaceTension
{
    air1_water
    {
        #includeEtc     "caseDicts/physicalProperties/surfaceTensionAirWaterSATP.cfg"
    }
    air2_water
    {
        #includeEtc     "caseDicts/physicalProperties/surfaceTensionAirWaterSATP.cfg"
    }
}


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