OGS
CreateWellboreSimulatorProcess.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
18#include "ProcessLib/Process.h"
19
20namespace BaseLib
21{
22class ConfigTree;
23}
24namespace MeshLib
25{
26class Mesh;
27}
28
29namespace MaterialPropertyLib
30{
31class Medium;
32}
33
34namespace ProcessLib
35{
36namespace WellboreSimulator
37{
38std::unique_ptr<Process> createWellboreSimulatorProcess(
39 std::string name,
40 MeshLib::Mesh& mesh,
41 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
42 std::vector<ProcessVariable> const& variables,
43 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
44 unsigned const integration_order,
45 BaseLib::ConfigTree const& config,
46 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
47
48} // namespace WellboreSimulator
49} // namespace ProcessLib
std::unique_ptr< Process > createWellboreSimulatorProcess(std::string 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)