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
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
/*--------------------------------*- 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 k.gas;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 2 -2 0 0 0 0];
|
|
|
|
internalField uniform 0.01;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type mapped;
|
|
field k.gas;
|
|
setAverage 0;
|
|
average 0;
|
|
interpolationScheme cell;
|
|
value uniform 0.01;
|
|
}
|
|
outlet
|
|
{
|
|
type inletOutlet;
|
|
phi phi.gas;
|
|
inletValue uniform 0.01;
|
|
value uniform 0.01;
|
|
}
|
|
wall1
|
|
{
|
|
type kqRWallFunction;
|
|
value uniform 0.01;
|
|
}
|
|
wall2
|
|
{
|
|
type kqRWallFunction;
|
|
value uniform 0.01;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|