Files
OpenFOAM-12/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/constant/phaseProperties
Will Bainbridge 85a9e17dd5 reactingEulerFoam: Added phase transfer structure
An additional layer has been added into the phase system hierarchy which
facilitates the application of phase transfer modelling. These are
models which exchange mass between phases without the thermal coupling
that would be required to represent phase change. They can be thought of
as representation changes; e.g., between two phases representing
different droplet sizes of the same physical fluid.

To facilitate this, the heat transfer phase systems have been modified
and renamed and now both support mass transfer. The two sided version
is only required for derivations which support phase change.

The following changes to case settings have been made:

- The simplest instantiated phase systems have been renamed to
basicTwoPhaseSystem and basicMultiphaseSystem. The
heatAndMomentumTransfer*System entries in constant/phaseProperties files
will need updating accordingly.

- A phaseTransfer sub-model entry will be required in the
constant/phaseProperties file. This can be an empty list.

- The massTransfer switch in thermal phase change cases has been renamed
phaseTransfer, so as not to be confused with the mass transfer models
used by interface composition cases.

This work was supported by Georg Skillas and Zhen Li, at Evonik
2018-04-05 15:11:39 +01:00

119 lines
1.9 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object phaseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type basicTwoPhaseSystem;
phases (particles air);
particles
{
type purePhaseModel;
diameterModel constant;
constantCoeffs
{
d 3e-4;
}
alphaMax 0.62;
residualAlpha 1e-6;
}
air
{
type purePhaseModel;
diameterModel constant;
constantCoeffs
{
d 1;
}
residualAlpha 0;
}
blending
{
default
{
type none;
continuousPhase air;
}
}
surfaceTension
(
(air and particles)
{
type constant;
sigma 0;
}
);
aspectRatio
(
);
drag
(
(particles in air)
{
type GidaspowErgunWenYu;
residualRe 1e-3;
swarmCorrection
{
type none;
}
}
);
virtualMass
(
);
heatTransfer
(
(particles in air)
{
type RanzMarshall;
residualAlpha 1e-4;
}
);
phaseTransfer
(
);
lift
(
);
wallLubrication
(
);
turbulentDispersion
(
);
// Minimum allowable pressure
pMin 10000;
// ************************************************************************* //