Loading [MathJax]/extensions/MathZoom.js
OGS
CreateHMPhaseFieldProcess.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <map>
14#include <memory>
15#include <optional>
16#include <string>
17#include <vector>
18
19namespace BaseLib
20{
21class ConfigTree;
22}
23namespace MaterialPropertyLib
24{
25class Medium;
26}
27namespace MeshLib
28{
29class Mesh;
30}
31namespace ParameterLib
32{
33struct CoordinateSystem;
34struct ParameterBase;
35} // namespace ParameterLib
36namespace ProcessLib
37{
38class AbstractJacobianAssembler;
39class Process;
40class ProcessVariable;
41} // namespace ProcessLib
42
43namespace ProcessLib
44{
45namespace HMPhaseField
46{
47template <int DisplacementDim>
48std::unique_ptr<Process> createHMPhaseFieldProcess(
49 std::string name, MeshLib::Mesh& mesh,
50 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
51 std::vector<ProcessVariable> const& variables,
52 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
53 std::optional<ParameterLib::CoordinateSystem> const&
54 local_coordinate_system,
55 unsigned const integration_order, BaseLib::ConfigTree const& config,
56 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
57
58extern template std::unique_ptr<Process> createHMPhaseFieldProcess<2>(
59 std::string name, MeshLib::Mesh& mesh,
60 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
61 std::vector<ProcessVariable> const& variables,
62 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
63 std::optional<ParameterLib::CoordinateSystem> const&
64 local_coordinate_system,
65 unsigned const integration_order, BaseLib::ConfigTree const& config,
66 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
67
68extern template std::unique_ptr<Process> createHMPhaseFieldProcess<3>(
69 std::string name, MeshLib::Mesh& mesh,
70 std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
71 std::vector<ProcessVariable> const& variables,
72 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
73 std::optional<ParameterLib::CoordinateSystem> const&
74 local_coordinate_system,
75 unsigned const integration_order, BaseLib::ConfigTree const& config,
76 std::map<int, std::shared_ptr<MaterialPropertyLib::Medium>> const& media);
77} // namespace HMPhaseField
78} // namespace ProcessLib
template std::unique_ptr< Process > createHMPhaseFieldProcess< 3 >(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, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createHMPhaseFieldProcess< 2 >(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, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createHMPhaseFieldProcess(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, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)