OGS
CreateHTProcess.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <memory>
14
15#include "ProcessLib/Process.h"
16
17namespace MaterialPropertyLib
18{
19class Medium;
20}
21
22namespace ProcessLib
23{
24namespace HT
25{
26std::unique_ptr<Process> createHTProcess(
27 std::string const& name,
28 MeshLib::Mesh& mesh,
29 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
30 std::vector<ProcessVariable> const& variables,
31 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
32 unsigned const integration_order,
33 BaseLib::ConfigTree const& config,
34 std::vector<std::unique_ptr<MeshLib::Mesh>> const& meshes,
35 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
36
37} // namespace HT
38} // namespace ProcessLib
std::unique_ptr< Process > createHTProcess(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::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)