OGS
WaterVapourLatentHeatWithCriticalTemperature.h
Go to the documentation of this file.
1
12#pragma once
13
16
17namespace MaterialPropertyLib
18{
19class Phase;
20
61{
62public:
64 {
65 name_ = std::move(name);
66 }
67
68 void checkScale() const override
69 {
70 if (!std::holds_alternative<Phase*>(scale_))
71 {
73 "The property 'WaterVapourLatentHeatWithCriticalTemperature' "
74 "is "
75 "implemented on the 'phase' scale only.");
76 }
77 }
78
79 PropertyDataType value(VariableArray const& variable_array,
81 double const t,
82 double const dt) const override;
83
84 PropertyDataType dValue(VariableArray const& variable_array,
85 Variable const variable,
87 double const t, double const dt) const override;
88};
89
90} // namespace MaterialPropertyLib
#define OGS_FATAL(...)
Definition Error.h:26
virtual PropertyDataType value() const
Definition Property.cpp:76
std::variant< Medium *, Phase *, Component * > scale_
Definition Property.h:297
A latent heat model of vaporisation of water considering the critical temperature.
PropertyDataType dValue(VariableArray const &variable_array, Variable const variable, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const override
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