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
64 lines
1.8 KiB
Plaintext
64 lines
1.8 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 epsilon.liquid;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 2 -3 0 0 0 0];
|
|
|
|
internalField uniform 0.001;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type mapped;
|
|
field epsilon.liquid;
|
|
setAverage 0;
|
|
average 0;
|
|
interpolationScheme cell;
|
|
value uniform 0.001;
|
|
}
|
|
outlet
|
|
{
|
|
type inletOutlet;
|
|
phi phi.liquid;
|
|
inletValue uniform 0.00015;
|
|
value uniform 0.001;
|
|
}
|
|
wall1
|
|
{
|
|
type epsilonWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 0.001;
|
|
}
|
|
wall2
|
|
{
|
|
type epsilonWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 0.001;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|