These tutorials now make make use of the phaseTurbulenceStabilisation fvModel and the wallBoilingProperties functionObject. Patch contributed by Juho Peltola, VTT.
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object fvModels;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
phaseTurbulenceStabilisationGas
|
|
{
|
|
type phaseTurbulenceStabilisation;
|
|
|
|
libs ("libmultiphaseEulerFoamFvModels.so");
|
|
|
|
phase gas;
|
|
|
|
alphaInversion 0.1;
|
|
}
|
|
|
|
phaseTurbulenceStabilisationGas2
|
|
{
|
|
type phaseTurbulenceStabilisation;
|
|
|
|
libs ("libmultiphaseEulerFoamFvModels.so");
|
|
|
|
phase gas2;
|
|
|
|
alphaInversion 0.1;
|
|
}
|
|
|
|
phaseTurbulenceStabilisationLiquid
|
|
{
|
|
type phaseTurbulenceStabilisation;
|
|
|
|
libs ("libmultiphaseEulerFoamFvModels.so");
|
|
|
|
phase liquid;
|
|
|
|
alphaInversion 0.1;
|
|
}
|