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