Integration of VOF MULES new interfaces. Update of VOF solvers and all instances of MULES in the code. Integration of reactingTwoPhaseEuler and reactingMultiphaseEuler solvers and sub-models Updating reactingEuler tutorials accordingly (most of them tested) New eRefConst thermo used in tutorials. Some modifications at thermo specie level affecting mostly eThermo. hThermo mostly unaffected New chtMultiRegionTwoPhaseEulerFoam solver for quenching and tutorial. Phases sub-models for reactingTwoPhaseEuler and reactingMultiphaseEuler were moved to src/phaseSystemModels/reactingEulerFoam in order to be used by BC for chtMultiRegionTwoPhaseEulerFoam. Update of interCondensatingEvaporatingFoam solver.
119 lines
1.9 KiB
C++
119 lines
1.9 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1812 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ 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;
|
|
}
|
|
);
|
|
|
|
lift
|
|
(
|
|
);
|
|
|
|
phaseTransfer
|
|
(
|
|
);
|
|
|
|
wallLubrication
|
|
(
|
|
);
|
|
|
|
turbulentDispersion
|
|
(
|
|
);
|
|
|
|
// Minimum allowable pressure
|
|
pMin 10000;
|
|
|
|
|
|
// ************************************************************************* //
|