OGS
CreateStokesFlowProcess.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
23{
24template <int GlobalDim>
25std::unique_ptr<Process> createStokesFlowProcess(
26 std::string const& name,
27 MeshLib::Mesh& mesh,
28 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
29 std::vector<ProcessVariable> const& variables,
30 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
31 unsigned const integration_order,
32 BaseLib::ConfigTree const& config,
33 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
34
35extern template std::unique_ptr<Process> createStokesFlowProcess<2>(
36 std::string const& name,
37 MeshLib::Mesh& mesh,
38 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
39 std::vector<ProcessVariable> const& variables,
40 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
41 unsigned const integration_order,
42 BaseLib::ConfigTree const& config,
43 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
44
45} // namespace ProcessLib::StokesFlow
std::unique_ptr< Process > createStokesFlowProcess(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)
template std::unique_ptr< Process > createStokesFlowProcess< 2 >(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)