Tutorials have been updated to use the new consistent names within the wall boiling system. The changes are backwards compatible so all tutorials should run both before and after this change.
34 lines
1004 B
C++
34 lines
1004 B
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 physicalProperties.vapour;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture multicomponentMixture;
|
|
transport sutherland;
|
|
thermo janaf;
|
|
equationOfState perfectGas;
|
|
specie specie;
|
|
energy sensibleEnthalpy;
|
|
}
|
|
|
|
defaultSpecie Ar;
|
|
|
|
#include "$FOAM_CASE/constant/thermo.vapour"
|
|
|
|
|
|
// ************************************************************************* //
|