to handle the size of bubbles created by boiling. To be used in conjunction with the alphatWallBoilingWallFunction boundary condition. The IATE variant of the wallBoiling tutorial case is provided to demonstrate the functionality: tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoilingIATE
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;
|
|
phaseType liquid;
|
|
Prt 0.85;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
relax 0.01;
|
|
dmdt uniform 0;
|
|
partitioningModel
|
|
{
|
|
type Lavieville;
|
|
alphaCrit 0.2;
|
|
}
|
|
nucleationSiteModel
|
|
{
|
|
type LemmertChawla;
|
|
}
|
|
departureDiamModel
|
|
{
|
|
type TolubinskiKostanchuk;
|
|
}
|
|
departureFreqModel
|
|
{
|
|
type Cole;
|
|
}
|
|
value uniform 0.01;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|