OGS
CreateBHE1PType.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 <map>
7#include <memory>
8#include <string>
9
10namespace BaseLib
11{
12class ConfigTree;
13}
14namespace ProcessLib
15{
16namespace HeatTransportBHE
17{
18namespace BHE
19{
20template <typename T_BHE>
21T_BHE createBHE1PType(
22 BaseLib::ConfigTree const& config,
23 std::map<std::string,
24 std::unique_ptr<MathLib::PiecewiseLinearInterpolation>> const&
25 curves);
26} // namespace BHE
27} // namespace HeatTransportBHE
28} // namespace ProcessLib
T_BHE createBHE1PType(BaseLib::ConfigTree const &config, std::map< std::string, std::unique_ptr< MathLib::PiecewiseLinearInterpolation > > const &curves)