- Thermal phase change and wall boiling functionality has been generalized to support two- and multi- phase simulations. - Thermal phase change now also allows purePhaseModel, which simplifies case setup. - The phaseSystem templates have been restructured in preparation of multiple simultaneous mass transfer mechanisms. For example, combination of thermal phase and inhomogeneous population balance models. Patch contributed by VTT Technical Research Centre of Finland Ltd and Institute of Fluid Dynamics, Helmholtz-Zentrum Dresden - Rossendorf (HZDR).
102 lines
2.7 KiB
Plaintext
102 lines
2.7 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::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;//Lavieville;
|
|
alphaCrit 0.2;
|
|
}
|
|
nucleationSiteModel
|
|
{
|
|
type LemmertChawla;
|
|
}
|
|
departureDiamModel
|
|
{
|
|
type TolubinskiKostanchuk;
|
|
}
|
|
departureFreqModel
|
|
{
|
|
type Cole;
|
|
}
|
|
value uniform 0.01;
|
|
}
|
|
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;//Lavieville;
|
|
alphaCrit 0.2;
|
|
}
|
|
nucleationSiteModel
|
|
{
|
|
type LemmertChawla;
|
|
}
|
|
departureDiamModel
|
|
{
|
|
type TolubinskiKostanchuk;
|
|
}
|
|
departureFreqModel
|
|
{
|
|
type Cole;
|
|
}
|
|
value uniform 0.01;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|