OGS
CreateSaturationWeightedThermalConductivity.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6#include <memory>
7#include <vector>
8
9namespace BaseLib
10{
11class ConfigTree;
12}
13
14namespace ParameterLib
15{
16struct ParameterBase;
17} // namespace ParameterLib
18
19namespace MaterialPropertyLib
20{
21class Property;
22
23std::unique_ptr<Property> createSaturationWeightedThermalConductivity(
24 int const geometry_dimension,
25 BaseLib::ConfigTree const& config,
26 std::vector<std::unique_ptr<ParameterLib::ParameterBase>>& parameters);
27} // namespace MaterialPropertyLib
std::unique_ptr< Property > createSaturationWeightedThermalConductivity(int const geometry_dimension, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > &parameters)