From 87f6de15d75d79cc52282cd9b72c5ad6a394a9a5 Mon Sep 17 00:00:00 2001 From: Gabriele Seitz <seitz@molly.site> Date: Mon, 30 Apr 2018 11:58:50 +0200 Subject: [PATCH] [nacl] add solidThermalConductivity --- dumux/material/components/nacl.hh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dumux/material/components/nacl.hh b/dumux/material/components/nacl.hh index c2ccceacfc..cb7d7d6252 100644 --- a/dumux/material/components/nacl.hh +++ b/dumux/material/components/nacl.hh @@ -88,6 +88,17 @@ public: { return 50.50; } + + /*! + * \brief Thermal conductivity of the component \f$\mathrm{[W/(m*K)]}\f$ as a solid. + * \param temperature temperature of component in \f$\mathrm{[K]}\f$ + */ + static Scalar solidThermalConductivity(Scalar temperature) + { + return 6.49; + } + + }; } // end namespace Components -- GitLab