lagrangian: Moved composition modelling into the thermo cloud

The thermo parcel now supports thermophysical property modelling. This
particle does not store phase or specie fractions so it only provides a
single phase with a uniform composition. Additional specification is
required in the cloud subModel configuration in order to select the
specie. For example:

    compositionModel singlePhaseMixture;

    singlePhaseMixtureCoeffs
    {
        phases
        (
            solid
            {
                CaCO3   1;
            }
        );
    }
This commit is contained in:
Will Bainbridge
2021-05-12 14:20:11 +01:00
parent 5c8dc9c2f1
commit 40d3dbbd02
22 changed files with 184 additions and 197 deletions

View File

@ -41,6 +41,7 @@ solution
U cellPoint;
Cp cell;
kappa cell;
p cell;
T cell;
G cell;
}
@ -108,6 +109,8 @@ subModels
radiation on;
compositionModel singlePhaseMixture;
standardWallInteractionCoeffs
{
type rebound;
@ -119,6 +122,17 @@ subModels
{
BirdCorrection false;
}
singlePhaseMixtureCoeffs
{
phases
(
solid
{
CaCO3 1;
}
);
}
}