OGS
C0IsoparametricElements.h
Go to the documentation of this file.
1
13
#pragma once
14
15
#include "
NumLib/Fem/ShapeFunction/ShapeHex20.h
"
16
#include "
NumLib/Fem/ShapeFunction/ShapeHex8.h
"
17
#include "
NumLib/Fem/ShapeFunction/ShapeLine2.h
"
18
#include "
NumLib/Fem/ShapeFunction/ShapeLine3.h
"
19
#include "
NumLib/Fem/ShapeFunction/ShapePoint1.h
"
20
#include "
NumLib/Fem/ShapeFunction/ShapePrism15.h
"
21
#include "
NumLib/Fem/ShapeFunction/ShapePrism6.h
"
22
#include "
NumLib/Fem/ShapeFunction/ShapePyra13.h
"
23
#include "
NumLib/Fem/ShapeFunction/ShapePyra5.h
"
24
#include "
NumLib/Fem/ShapeFunction/ShapeQuad4.h
"
25
#include "
NumLib/Fem/ShapeFunction/ShapeQuad8.h
"
26
#include "
NumLib/Fem/ShapeFunction/ShapeQuad9.h
"
27
#include "
NumLib/Fem/ShapeFunction/ShapeTet10.h
"
28
#include "
NumLib/Fem/ShapeFunction/ShapeTet4.h
"
29
#include "
NumLib/Fem/ShapeFunction/ShapeTri3.h
"
30
#include "
NumLib/Fem/ShapeFunction/ShapeTri6.h
"
31
#include "
TemplateIsoparametric.h
"
32
33
namespace
NumLib
34
{
35
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
36
struct
FePOINT1
37
{
38
using
type
=
39
TemplateIsoparametric<ShapePoint1, T_SHAPE_MATRIX_POLICY<ShapePoint1>
>;
40
};
41
42
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
43
struct
FeLINE2
44
{
45
using
type
=
46
TemplateIsoparametric<ShapeLine2, T_SHAPE_MATRIX_POLICY<ShapeLine2>
>;
47
};
48
49
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
50
struct
FeLINE3
51
{
52
using
type
=
53
TemplateIsoparametric<ShapeLine3, T_SHAPE_MATRIX_POLICY<ShapeLine3>
>;
54
};
55
56
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
57
struct
FeTRI3
58
{
59
using
type
=
60
TemplateIsoparametric<ShapeTri3, T_SHAPE_MATRIX_POLICY<ShapeTri3>
>;
61
};
62
63
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
64
struct
FeTRI6
65
{
66
using
type
=
67
TemplateIsoparametric<ShapeTri6, T_SHAPE_MATRIX_POLICY<ShapeTri6>
>;
68
};
69
70
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
71
struct
FeQUAD4
72
{
73
using
type
=
74
TemplateIsoparametric<ShapeQuad4, T_SHAPE_MATRIX_POLICY<ShapeQuad4>
>;
75
};
76
77
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
78
struct
FeQUAD8
79
{
80
using
type
=
81
TemplateIsoparametric<ShapeQuad8, T_SHAPE_MATRIX_POLICY<ShapeQuad8>
>;
82
};
83
84
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
85
struct
FeQUAD9
86
{
87
using
type
=
88
TemplateIsoparametric<ShapeQuad9, T_SHAPE_MATRIX_POLICY<ShapeQuad9>
>;
89
};
90
91
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
92
struct
FeHEX8
93
{
94
using
type
=
95
TemplateIsoparametric<ShapeHex8, T_SHAPE_MATRIX_POLICY<ShapeHex8>
>;
96
};
97
98
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
99
struct
FeHEX20
100
{
101
using
type
=
102
TemplateIsoparametric<ShapeHex20, T_SHAPE_MATRIX_POLICY<ShapeHex20>
>;
103
};
104
105
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
106
struct
FeTET4
107
{
108
using
type
=
109
TemplateIsoparametric<ShapeTet4, T_SHAPE_MATRIX_POLICY<ShapeTet4>
>;
110
};
111
112
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
113
struct
FeTET10
114
{
115
using
type
=
116
TemplateIsoparametric<ShapeTet10, T_SHAPE_MATRIX_POLICY<ShapeTet10>
>;
117
};
118
119
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
120
struct
FePRISM6
121
{
122
using
type
=
123
TemplateIsoparametric<ShapePrism6, T_SHAPE_MATRIX_POLICY<ShapePrism6>
>;
124
};
125
126
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
127
struct
FePRISM15
128
{
129
using
type
=
TemplateIsoparametric
<
ShapePrism15
,
130
T_SHAPE_MATRIX_POLICY<ShapePrism15>>;
131
};
132
133
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
134
struct
FePYRA5
135
{
136
using
type
=
137
TemplateIsoparametric<ShapePyra5, T_SHAPE_MATRIX_POLICY<ShapePyra5>
>;
138
};
139
140
template
<
template
<
typename
>
class
T_SHAPE_MATRIX_POLICY>
141
struct
FePYRA13
142
{
143
using
type
=
144
TemplateIsoparametric<ShapePyra13, T_SHAPE_MATRIX_POLICY<ShapePyra13>
>;
145
};
146
147
}
// namespace NumLib
ShapeHex20.h
ShapeHex8.h
ShapeLine2.h
ShapeLine3.h
ShapePoint1.h
ShapePrism15.h
ShapePrism6.h
ShapePyra13.h
ShapePyra5.h
ShapeQuad4.h
ShapeQuad8.h
ShapeQuad9.h
ShapeTet10.h
ShapeTet4.h
ShapeTri3.h
ShapeTri6.h
TemplateIsoparametric.h
NumLib::ShapePrism15
Definition
ShapePrism15.h:22
NumLib::TemplateIsoparametric
Template class for isoparametric elements.
Definition
TemplateIsoparametric.h:33
NumLib
Definition
ProjectData.h:46
NumLib::FeHEX20
Definition
C0IsoparametricElements.h:100
NumLib::FeHEX8
Definition
C0IsoparametricElements.h:93
NumLib::FeLINE2
Definition
C0IsoparametricElements.h:44
NumLib::FeLINE3
Definition
C0IsoparametricElements.h:51
NumLib::FePOINT1
Definition
C0IsoparametricElements.h:37
NumLib::FePRISM15
Definition
C0IsoparametricElements.h:128
NumLib::FePRISM6
Definition
C0IsoparametricElements.h:121
NumLib::FePYRA13
Definition
C0IsoparametricElements.h:142
NumLib::FePYRA5
Definition
C0IsoparametricElements.h:135
NumLib::FeQUAD4
Definition
C0IsoparametricElements.h:72
NumLib::FeQUAD8
Definition
C0IsoparametricElements.h:79
NumLib::FeQUAD9
Definition
C0IsoparametricElements.h:86
NumLib::FeTET10
Definition
C0IsoparametricElements.h:114
NumLib::FeTET4
Definition
C0IsoparametricElements.h:107
NumLib::FeTRI3
Definition
C0IsoparametricElements.h:58
NumLib::FeTRI6
Definition
C0IsoparametricElements.h:65
NumLib
Fem
FiniteElement
C0IsoparametricElements.h
Generated by
1.12.0