Supersedes and replaces the tutorials/modules/multiphaseEuler/wallBoiling case as it is more physical and representative of a real case. Patch contributed by Juho Peltola, VTT.
80 lines
1.9 KiB
Plaintext
80 lines
1.9 KiB
Plaintext
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class volScalarField;
|
|
object alphat.liquid;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 1 -1 -1 0 0 0 0 ];
|
|
|
|
internalField uniform 1e-08;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type fixedValue;
|
|
value uniform 0;
|
|
}
|
|
outlet
|
|
{
|
|
type calculated;
|
|
value uniform 1e-08;
|
|
}
|
|
wall
|
|
{
|
|
type compressible::alphatWallBoilingWallFunction;
|
|
Prt 0.85;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
relax 1.0;
|
|
otherPhase gas;
|
|
phaseType liquid;
|
|
partitioningModel
|
|
{
|
|
type Lavieville;
|
|
alphaCrit 0.2;
|
|
}
|
|
nucleationSiteModel
|
|
{
|
|
type LemmertChawla;
|
|
Cn 1;
|
|
NRef 30000000;
|
|
deltaTRef 10;
|
|
}
|
|
departureDiamModel
|
|
{
|
|
type TolubinskiKostanchuk;
|
|
dRef 0.00024;
|
|
dMax 0.0014;
|
|
dMin 1e-06;
|
|
}
|
|
departureFreqModel
|
|
{
|
|
type KocamustafaogullariIshii;
|
|
Cf 1.18;
|
|
}
|
|
value uniform 0.01;
|
|
}
|
|
front
|
|
{
|
|
type wedge;
|
|
}
|
|
back
|
|
{
|
|
type wedge;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|