76 :
Base{dof_table, integration_method_provider}
77 {
78 if (shapefunction_order < 1 || 2 < shapefunction_order)
79 {
80 OGS_FATAL(
"The given shape function order {:d} is not supported",
81 shapefunction_order);
82 }
83
84 if (shapefunction_order == 1)
85 {
86
87 using EnabledElementTraits =
89 std::declval<HasSuitableDimension>()));
90
92 [this]<typename ET>(ET*)
93 {
94 using MeshElement = typename ET::Element;
95
96
97 using LowerOrderShapeFunction =
98 typename ET::LowerOrderShapeFunction;
101 template create<MeshElement>();
102 });
103 }
104 else if (shapefunction_order == 2)
105 {
106
107 using EnabledElementTraits =
109 std::declval<Is2ndOrderElementOfSuitableDimension>()));
110
112 [this]<typename ET>(ET*)
113 {
114 using MeshElement = typename ET::Element;
115 using ShapeFunction2ndOrder = typename ET::ShapeFunction;
118 template create<MeshElement>();
119 });
120 }
121 }
ProcessLib::GenericLocalAssemblerFactory< LocalAssemblerInterface, NumLib::DefaultIntegrationMethodProvider, ConstructorArgs... > Base
ProcessLib::LocalAssemblerBuilderFactory< ShapeFunction, LocalAssemblerInterface, LocalAssemblerImplementation, NumLib::DefaultIntegrationMethodProvider, GlobalDim, ConstructorArgs... > LocAsmBuilderFactory
void foreach(Function &&f)
decltype(auto) filter(Pred pred)
std::unordered_map< std::type_index, LocAsmBuilder > _builders