OGS
CreateSaturationWeightedThermalConductivity.h
Go to the documentation of this file.
1
12#pragma once
13
14#include <memory>
15#include <vector>
16
17namespace BaseLib
18{
19class ConfigTree;
20}
21
22namespace ParameterLib
23{
24struct ParameterBase;
25} // namespace ParameterLib
26
27namespace MaterialPropertyLib
28{
29class Property;
30
31std::unique_ptr<Property> createSaturationWeightedThermalConductivity(
32 int const geometry_dimension,
33 BaseLib::ConfigTree const& config,
34 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
35 parameters);
36} // namespace MaterialPropertyLib
std::unique_ptr< Property > createSaturationWeightedThermalConductivity(int const geometry_dimension, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters)