/*--------------------------------*- 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;
    object      phaseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

phases (gasD gasC liquid);

gasD
{
    type                pureIsothermalPhaseModel;

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

    residualAlpha       1e-6;
}

gasC
{
    #includeEtc "caseDicts/multimorph/continuousIsothermalPhase.cfg"
    continuousThreshold 0.5;
    nInterfaceLayers    5;
}

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

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

interfaceCompression
{
    gasC_liquid
    {
        #includeEtc "caseDicts/multimorph/interfaceCompression.cfg"
    }
}

surfaceTension
{
    gasC_liquid
    {
        type            constant;
        sigma           24.5;
    }

    gasD_liquid
    {
        type            constant;
        sigma           24.5;
    }
}

underResolution
{
    gasC_liquid
    {
        #includeEtc "caseDicts/multimorph/underResolution.cfg"
    }
}

bubbles
{
    continuousPhase liquid;

    sphericalDiameters
    {
        type            manual;
        values          ( 0.2 0.3 0.34535 0.4 0.5 );
    }

    shapeModel      spherical;

    coalescenceModels
    ();

    breakupModels
    ();

    binaryBreakupModels
    ();
}

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