/*--------------------------------*- 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 air3 water1 water2 water3 continuous );

air1
{
    type            pureIsothermalPhaseModel;

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

    residualAlpha   1e-6;
}

air2
{
    type            pureIsothermalPhaseModel;

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

    residualAlpha   1e-6;
}

air3
{
    type            pureIsothermalPhaseModel;

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

    residualAlpha   1e-6;
}

water1
{
    type            pureIsothermalPhaseModel;

    diameterModel
    {
        type            populationBalance;
        populationBalance droplets;
        nGroups         20;
    }

    residualAlpha   1e-6;
}

water2
{
    type            pureIsothermalPhaseModel;

    diameterModel
    {
        type            populationBalance;
        populationBalance droplets;
        nGroups         5;
    }

    residualAlpha   1e-6;
}

water3
{
    type            pureIsothermalPhaseModel;

    diameterModel
    {
        type            populationBalance;
        populationBalance droplets;
        nGroups         4;
    }

    residualAlpha   1e-6;
}

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

bubbles
{
    continuousPhase continuous;
    sphericalDiameters
    {
        type            exponential;
        min             2.8193481473E-02;
        max             1.2407009818E+00;
    }
    shapeModel      spherical;
    coalescenceModels ( );
    binaryBreakupModels ( );
    breakupModels   ( powerLaw { power 2 ; daughterSizeDistributionModel uniformBinary ; } );
}

droplets
{
    continuousPhase continuous;
    sphericalDiameters
    {
        type            exponential;
        min             2.8193481473E-02;
        max             1.2407009818E+00;
    }
    shapeModel      spherical;
    coalescenceModels ( );
    binaryBreakupModels ( );
    breakupModels   ( powerLaw { power 2 ; daughterSizeDistributionModel uniformBinary ; } );
}

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

surfaceTension
{}


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