This tutorial serves as an example of a boiling transfer between two
phases, which occurs on the surface of a third stationary phase. See
commit 32edc48d for details of this modelling and its specification.
Patch contributed by Juho Peltola, VTT.
65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
/*--------------------------------*- 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 dictionary;
|
|
location "constant";
|
|
object fvModels;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
phaseTurbulenceStabilisationGas
|
|
{
|
|
type phaseTurbulenceStabilisation;
|
|
libs ("libmultiphaseEulerFvModels.so");
|
|
phase gas;
|
|
alphaInversion 0.1;
|
|
}
|
|
|
|
phaseTurbulenceStabilisationLiquid
|
|
{
|
|
type phaseTurbulenceStabilisation;
|
|
libs ("libmultiphaseEulerFvModels.so");
|
|
phase liquid;
|
|
alphaInversion 0.1;
|
|
}
|
|
|
|
bedHeat
|
|
{
|
|
type semiImplicitSource;
|
|
|
|
selectionMode cellZone;
|
|
cellZone bed;
|
|
|
|
volumeMode absolute;
|
|
|
|
sources
|
|
{
|
|
e.solid
|
|
{
|
|
explicit
|
|
{
|
|
type scale;
|
|
value 2.3e4;
|
|
scale
|
|
{
|
|
type linearRamp;
|
|
start 0.05;
|
|
duration 0.1;
|
|
}
|
|
}
|
|
|
|
implicit 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|