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