Files
OpenFOAM-12/tutorials/multiRegion/CHT/coolingCylinder2D/constant/fluid/physicalProperties
Will Bainbridge 58e38a761f constants: Standardise use of kmol instead of mol
This prevents spurious factors of 1000 from being introduced in
thermodynamic models. It also generalises the system further with
respect to alternative unit sets.
2023-12-13 15:25:53 +00:00

52 lines
1.2 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;
object physicalProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
thermoType
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo eConst;
equationOfState rhoConst;
specie specie;
energy sensibleInternalEnergy;
}
mixture
{
specie
{
nMoles 1;
molWeight 18; // [kg/kmol]
}
equationOfState
{
rho 998.19; // [kg/m^3]
}
thermodynamics
{
Cv 4150; // [J/kg/K]
hf 0;
}
transport
{
mu 1.0005e-3; // [kg/m/s]
Pr 6.31;
}
}
// ************************************************************************* //