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

#includeModel degassingPhases(degassingPhases=(aggregate), patches=(top))
#includeModel addonPhaseTurbulenceStabilisation(phase=water)

injector1
{
    type            massSource;

    phase           aggregate;

    cellZone
    {
        type            containsPoints;

        points
        (
            (0.05 0.05 0.05)
        );
    }

    massFlowRate    1e-3;
}

attachment
{
    type            attachment;
    libs            ("libaddonMultiphaseEulerFvModels.so");

    // Note: Order is important. The first phase is the particle phase
    // containing only the particle specie and the second is the aggregate
    // phase additionally containing the carrier specie.
    phases          (particle aggregate);

    // Species changing phase
    specie          particle;

    model           BhutaniBritoParada;

    continuousPhase water;
    carrierSpecie   bubble;
    maxLoading      1;

    energySemiImplicit no;
}

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