OGS
CreateIdealGasLawBinaryMixture.cpp
Go to the documentation of this file.
1
13#include "BaseLib/ConfigTree.h"
15
16namespace MaterialPropertyLib
17{
18std::unique_ptr<IdealGasLawBinaryMixture> createIdealGasLawBinaryMixture(
19 BaseLib::ConfigTree const& config)
20{
22 config.checkConfigParameter("type", "IdealGasLawBinaryMixture");
23
24 // Second access for storage.
26 auto property_name = config.peekConfigParameter<std::string>("name");
27
28 DBUG("Create IdealGasLawBinaryMixture medium property {:s}.",
29 property_name);
30
32 return std::make_unique<IdealGasLawBinaryMixture>(std::move(property_name));
33}
34} // namespace MaterialPropertyLib
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:30
T peekConfigParameter(std::string const &param) const
void checkConfigParameter(std::string const &param, std::string_view const value) const
std::unique_ptr< IdealGasLawBinaryMixture > createIdealGasLawBinaryMixture(BaseLib::ConfigTree const &config)