/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  14
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "constant";
    object      phaseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

phases          (particles vapour);

particles
{
    type            purePhaseModel;

    diameterModel
    {
        type            populationBalance;
        populationBalance aggregates;
        nGroups         29;
    }

    residualAlpha   1e-15;
}

vapour
{
    type            reactingPhaseModel;

    diameterModel   none;

    residualAlpha   1e-5;
}

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

surfaceTension
{}

aggregates
{
    continuousPhase vapour;

    sphericalDiameters
    {
        type            exponential;
        min             4.000E-10;
        max             1.136E-05;
    }

    shapeModel
    {
        type            fractal;
        Df              1.8;
        alphaC          1;
    }

    coalescenceModel
    {
        type            DahnekeInterpolation;
        sigma           340e-12;
    }

    breakupModel    none;
}

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