OGS
WaterVapourEnthalpyIAPWSIF97Region4.cpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
5
6#include <cmath>
7
8#include "BaseLib/Error.h"
12
13namespace MaterialPropertyLib
14{
16 VariableArray const& variable_array,
17 ParameterLib::SpatialPosition const& /*pos*/, double const /*t*/,
18 double const /*dt*/) const
19{
20 double const p = variable_array.liquid_phase_pressure;
21
28 if ((p < 611.213) || (p > 22.064e6))
29 {
30 WARN(
31 "Pressure is out of the range for the water vapour saturation "
32 "enthalpy.");
33 }
34
35 static constexpr double ref_T_ = 540;
36 static constexpr double ref_p_ = 1.e6;
37
39 double const tau = ref_T_ / T_s;
40 double const pi = p / ref_p_;
41
42 double dgamma_dtau =
44 tau, pi);
45
46 return tau *
48 T_s * dgamma_dtau;
49}
50
52 VariableArray const& /*variable_array*/, Variable const /*variable*/,
53 ParameterLib::SpatialPosition const& /*pos*/, double const /*t*/,
54 double const /*dt*/) const
55{
57 "WaterVapourEnthalpyIAPWSIF97Region4::dValue is not implemented.");
58}
59
60} // namespace MaterialPropertyLib
#define OGS_FATAL(...)
Definition Error.h:19
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:34
virtual PropertyDataType value() const
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