From 4830e1a5e83a3aa944411d6ae596ef55e1b7af6a Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Mon, 8 Jun 2015 09:58:32 +0000 Subject: [PATCH] [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 --- dumux/material/components/simpleh2o.hh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/dumux/material/components/simpleh2o.hh b/dumux/material/components/simpleh2o.hh index f0ade3eb5b..e2ac15cf2d 100644 --- a/dumux/material/components/simpleh2o.hh +++ b/dumux/material/components/simpleh2o.hh @@ -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; } -- GitLab