OGS
CreateHeatTransportBHEProcess.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
10
11namespace ProcessLib
12{
13namespace HeatTransportBHE
14{
15std::unique_ptr<Process> createHeatTransportBHEProcess(
16 std::string const& name,
17 MeshLib::Mesh& mesh,
18 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
19 std::vector<ProcessVariable> const& variables,
20 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
21 unsigned const integration_order,
22 BaseLib::ConfigTree const& config,
23 std::map<std::string,
24 std::unique_ptr<MathLib::PiecewiseLinearInterpolation>> const&
25 curves,
26 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
27} // namespace HeatTransportBHE
28} // namespace ProcessLib
std::unique_ptr< Process > createHeatTransportBHEProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< std::string, std::unique_ptr< MathLib::PiecewiseLinearInterpolation > > const &curves, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)