Loading [MathJax]/extensions/MathMenu.js
OGS
CreateTemperatureDependentFraction.cpp
Go to the documentation of this file.
1
10#include "BaseLib/ConfigTree.h"
12
13namespace MaterialPropertyLib
14{
15std::unique_ptr<TemperatureDependentFraction>
17{
19 config.checkConfigParameter("type", "TemperatureDependentFraction");
20
21 // Second access for storage.
23 auto property_name = config.peekConfigParameter<std::string>("name");
24
25 DBUG("Create temperature dependent fraction property {:s}.", property_name);
26
27 auto const k =
29 config.getConfigParameter<double>("steepness");
30
31 auto const T_c =
33 config.getConfigParameter<double>("characteristic_temperature");
34
35 auto const S_r =
37 config.getConfigParameter<double>("residual_saturation", 0.0);
38
39 if (S_r < 0.0 || S_r > 1.0)
40 {
42 "In the temperature dependent fraction property setting, "
43 "the residual_saturation value {} is out of [0, 1]-range.",
44 S_r);
45 }
46
47 return std::make_unique<MaterialPropertyLib::TemperatureDependentFraction>(
48 std::move(property_name), k, T_c, S_r);
49}
50} // namespace MaterialPropertyLib
#define OGS_FATAL(...)
Definition Error.h:26
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:30
T peekConfigParameter(std::string const &param) const
T getConfigParameter(std::string const &param) const
void checkConfigParameter(std::string const &param, std::string_view const value) const
std::unique_ptr< TemperatureDependentFraction > createTemperatureDependentFraction(BaseLib::ConfigTree const &config)
constexpr double T_c
Critical temperature.