OGS
CreateIdealGasLaw.cpp
Go to the documentation of this file.
1
13
#include "
BaseLib/ConfigTree.h
"
14
#include "
IdealGasLaw.h
"
15
16
namespace
MaterialPropertyLib
17
{
18
std::unique_ptr<IdealGasLaw>
createIdealGasLaw
(
19
BaseLib::ConfigTree
const
& config)
20
{
22
config.
checkConfigParameter
(
"type"
,
"IdealGasLaw"
);
23
24
// Second access for storage.
26
auto
property_name = config.
peekConfigParameter
<std::string>(
"name"
);
27
28
DBUG
(
"Create IdealGasLaw medium property {:s}."
, property_name);
30
return
std::make_unique<IdealGasLaw>(std::move(property_name));
31
}
32
}
// namespace MaterialPropertyLib
ConfigTree.h
DBUG
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
Definition
Logging.h:30
IdealGasLaw.h
BaseLib::ConfigTree
Definition
ConfigTree.h:107
BaseLib::ConfigTree::peekConfigParameter
T peekConfigParameter(std::string const ¶m) const
Definition
ConfigTree-impl.h:126
BaseLib::ConfigTree::checkConfigParameter
void checkConfigParameter(std::string const ¶m, std::string_view const value) const
Definition
ConfigTree.cpp:151
MaterialPropertyLib
Definition
ChemicalSolverInterface.h:21
MaterialPropertyLib::createIdealGasLaw
std::unique_ptr< IdealGasLaw > createIdealGasLaw(BaseLib::ConfigTree const &config)
Definition
CreateIdealGasLaw.cpp:18
MaterialLib
MPL
Properties
CreateIdealGasLaw.cpp
Generated by
1.12.0