Skip to content
Snippets Groups Projects
Commit b567b773 authored by Feliks Kiszkurno's avatar Feliks Kiszkurno
Browse files

Updated documentation

Updated comments
parent 6c109967
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@
namespace MaterialPropertyLib
{
// Li and Lij are coefficients from Tables 1 and 2 (Daucik and Dooley, 2011)
static const double Li[5] = {2.443221e-3, 1.323095e-2, 6.770357e-3, -3.454586e-3, 4.096266e-4};
static const double Lij[5][6] = {
{1.60397357, -0.646013523, 0.111443906, 0.102997357, -0.0504123634, 0.00609859258},
......
......@@ -21,17 +21,14 @@ class Phase;
* \brief A class for thermal conductivity model that is defined by
* The International Association for the Properties of Water and Steam
* <a href="http://www.iapws.org/relguide/ThCond.pdf">IAPWS</a>
* (File accessed at 13.01.2023)
* (File accessed at 13.01.2023) - (Daucik and Dooley, 2011)
*
* With the definition, the thermal conductivity is a function of temperature and
* water density
*
* \attention The critical enhancement, \f$\bar{\mu}_2\f$, which is significant
* only within the boundaries specified by
* \f[ T (\mbox{in K}) \in (645.91, 650.77) \f]
* and
* \f[ \rho (\mbox{in kg m}^{-3}) \in (245.8, 405.3)\f],
* is not considered.
* \attention The critical enhancement, \f$\bar{\lambda}_2\f$, is not considered.
* For information on region of significance and the significance,
* please see Figure 2 from the document linked in the upper paragraph.
*/
class WaterThermalConductivityIAPWS final : public Property
{
......@@ -62,6 +59,5 @@ private:
static constexpr double ref_rho_ = 322.0; ///< reference density in `kg/m^3`
static constexpr double ref_lambda_ = 1.0e-3; ///< reference thermal conductivity in `W.K^-1.m^-1`
// Coefficients Li and Lij are given in two static arrays in the cpp file.
};
} // namespace MaterialPropertyLib
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