OGS
WaterVapourEnthalpyIAPWSIF97Region4.cpp
Go to the documentation of this file.
1
13
14#include <cmath>
15
16#include "BaseLib/Error.h"
20
21namespace MaterialPropertyLib
22{
24 VariableArray const& variable_array,
25 ParameterLib::SpatialPosition const& /*pos*/, double const /*t*/,
26 double const /*dt*/) const
27{
28 double const p = variable_array.liquid_phase_pressure;
29
36 if ((p < 611.213) || (p > 22.064e6))
37 {
38 WARN(
39 "Pressure is out of the range for the water vapour saturation "
40 "enthalpy.");
41 }
42
43 static constexpr double ref_T_ = 540;
44 static constexpr double ref_p_ = 1.e6;
45
47 double const tau = ref_T_ / T_s;
48 double const pi = p / ref_p_;
49
50 double dgamma_dtau =
52 tau, pi);
53
54 return tau *
56 T_s * dgamma_dtau;
57}
58
60 VariableArray const& /*variable_array*/, Variable const /*variable*/,
61 ParameterLib::SpatialPosition const& /*pos*/, double const /*t*/,
62 double const /*dt*/) const
63{
65 "WaterVapourEnthalpyIAPWSIF97Region4::dValue is not implemented.");
66}
67
68} // namespace MaterialPropertyLib
#define OGS_FATAL(...)
Definition Error.h:26
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:40
virtual PropertyDataType value() const
Definition Property.cpp:76
PropertyDataType dValue(VariableArray const &variable_array, Variable const variable, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const override
constexpr double WaterVapour
Specific gas constant for water vapour.
static constexpr double ref_p_
reference pressure in Pa.
static constexpr double ref_T_
reference temperature in K.
std::variant< double, Eigen::Matrix< double, 2, 1 >, Eigen::Matrix< double, 3, 1 >, Eigen::Matrix< double, 2, 2 >, Eigen::Matrix< double, 3, 3 >, Eigen::Matrix< double, 4, 1 >, Eigen::Matrix< double, 6, 1 >, Eigen::MatrixXd > PropertyDataType
Definition Property.h:31