mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
Introduced thermalPhaseChangePopulationBalanceTwo- and MultiphaseSystem as
user-selectable phaseSystems which are the first to actually use multiple mass
transfer mechanisms enabled by
commit d3a237f560.
The functionality is demonstrated using the reactingTwoPhaseEulerFoam
wallBoilingPolydisperse tutorial.
Patch contributed by VTT Technical Research Centre of Finland Ltd and Institute
of Fluid Dynamics, Helmholtz-Zentrum Dresden - Rossendorf (HZDR).
81 lines
2.1 KiB
Plaintext
81 lines
2.1 KiB
Plaintext
/*--------------------------------*- 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 volScalarField;
|
|
location "0";
|
|
object alphat.liquid;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [1 -1 -1 0 0 0 0];
|
|
|
|
internalField uniform 1e-8;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type calculated;
|
|
value uniform 1e-8;
|
|
}
|
|
outlet
|
|
{
|
|
type calculated;
|
|
value uniform 1e-8;
|
|
}
|
|
wall1
|
|
{
|
|
type compressible::alphatPhaseChangeJayatillekeWallFunction;
|
|
Prt 0.85;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
|
|
value uniform 1e-8;
|
|
}
|
|
wall2
|
|
{
|
|
type compressible::alphatWallBoilingWallFunction;
|
|
otherPhase gas;
|
|
phaseType liquid;
|
|
Prt 0.85;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
relax 0.01;
|
|
dmdt uniform 0;
|
|
partitioningModel
|
|
{
|
|
type phaseFraction;
|
|
}
|
|
nucleationSiteModel
|
|
{
|
|
type LemmertChawla;
|
|
}
|
|
departureDiamModel
|
|
{
|
|
type TolubinskiKostanchuk;
|
|
}
|
|
departureFreqModel
|
|
{
|
|
type Cole;
|
|
}
|
|
value uniform 0.01;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|