mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
61 lines
1.5 KiB
C++
61 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 dictionary;
|
|
location "constant";
|
|
object thermophysicalProperties.steam;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture multiComponentMixture;
|
|
transport const;
|
|
thermo hRefConst;
|
|
equationOfState perfectGas;
|
|
specie specie;
|
|
energy sensibleInternalEnergy;
|
|
}
|
|
|
|
species
|
|
(
|
|
water
|
|
);
|
|
|
|
inertSpecie water;
|
|
|
|
water
|
|
{
|
|
specie
|
|
{
|
|
nMoles 1;
|
|
molWeight 18.0153;
|
|
}
|
|
|
|
thermodynamics
|
|
{
|
|
Hf 0;
|
|
Cp 2078.4;
|
|
Tref 372.76;
|
|
Href 2675500;
|
|
}
|
|
|
|
transport
|
|
{
|
|
mu 1.2256e-5;
|
|
Pr 2.289;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|