OGS
CreateThermoRichardsFlowProcess.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <map>
14#include <memory>
15#include <string>
16#include <vector>
17
18namespace BaseLib
19{
20class ConfigTree;
21}
22namespace MeshLib
23{
24class Mesh;
25}
26namespace MaterialPropertyLib
27{
28class Medium;
29}
30namespace ParameterLib
31{
32struct ParameterBase;
33} // namespace ParameterLib
34namespace ProcessLib
35{
36class AbstractJacobianAssembler;
37class Process;
38class ProcessVariable;
39} // namespace ProcessLib
40
41namespace ProcessLib
42{
43namespace ThermoRichardsFlow
44{
45std::unique_ptr<Process> createThermoRichardsFlowProcess(
46 std::string const& name,
47 MeshLib::Mesh& mesh,
48 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
49 std::vector<ProcessVariable> const& variables,
50 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
51 unsigned const integration_order,
52 BaseLib::ConfigTree const& config,
53 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
54} // namespace ThermoRichardsFlow
55} // namespace ProcessLib
std::unique_ptr< Process > createThermoRichardsFlowProcess(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)