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