Skip to content
Snippets Groups Projects
Commit 4830e1a5 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[simpleh20.hh] Source added for values of thermal conductivity.

Reviewed by Thomas


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14837 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 0facd000
No related branches found
No related tags found
No related merge requests found
......@@ -274,27 +274,31 @@ public:
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* \param pressure pressure of component in \f$\mathrm{[Pa]}\f$
* source: http://webbook.nist.gov/cgi/fluid.cgi?ID=C7732185&Action=Page
* @ T= 281.15 (8°C) , p=0.1MPa)
* @ T= 281.15K (8°C) , p=0.1MPa)
*/
static Scalar liquidHeatCapacity(Scalar temperature, Scalar pressure)
{
return 4.2e3 ;
return 4.2e3;
}
/*!
* \brief Thermal conductivity \f$\mathrm{[[W/(m*K)]}\f$ of water.
* source: http://webbook.nist.gov/cgi/fluid.cgi?ID=C7732185&Action=Page
* @ T= 372.76K (99.6°C) , p=0.1MPa)
*/
static Scalar liquidThermalConductivity(Scalar temperature, Scalar pressure)
{
return 0.68 ;
return 0.679;
}
/*!
* \brief Thermal conductivity \f$\mathrm{[[W/(m*K)]}\f$ of steam.
* source: http://webbook.nist.gov/cgi/fluid.cgi?ID=C7732185&Action=Page
* @ T= 372.76K (99.6°C) , p=0.1MPa)
*/
static Scalar gasThermalConductivity(Scalar temperature, Scalar pressure)
{
return 0.0248 ;
return 0.025;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment