OGS
CreateSpecificHeatCapacityWithLatentHeat.cpp
Go to the documentation of this file.
1
11
12#include "BaseLib/ConfigTree.h"
13#include "ParameterLib/Utils.h"
15
16namespace MaterialPropertyLib
17{
18std::unique_ptr<SpecificHeatCapacityWithLatentHeat>
20{
22 config.checkConfigParameter("type", "SpecificHeatCapacityWithLatentHeat");
23
24 // Second access for storage.
26 auto property_name = config.peekConfigParameter<std::string>("name");
27
28 DBUG("Create temperature dependent specific heat capacity {:s}.",
29 property_name);
30
31 auto const l =
33 config.getConfigParameter<double>("specific_latent_heat");
34
35 return std::make_unique<
37 std::move(property_name), l);
38}
39} // namespace MaterialPropertyLib
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< SpecificHeatCapacityWithLatentHeat > createSpecificHeatCapacityWithLatentHeat(BaseLib::ConfigTree const &config)