Loading [MathJax]/extensions/MathZoom.js
OGS
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Enumerations
b
c
d
e
f
g
i
l
m
n
o
p
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
l
m
n
p
r
s
t
v
y
Classes
Class List
Class Index
Class Hierarchy
Files
File List
File Members
All
a
b
c
d
e
f
g
i
k
m
n
o
p
r
s
t
v
w
x
Functions
a
c
d
e
f
g
i
m
o
p
r
s
t
v
w
Variables
Typedefs
Enumerations
Macros
b
c
g
m
n
o
p
r
s
t
▼
OGS
►
OpenGeoSys 6.5.4-171-gf370a16a5 source code documentation
►
OGS CTests—Project Files
►
OGS Input File Parameters—Quality Assurance
►
OGS Input File Parameters
BulkMappingDocuPage
Todo List
OGS Input File Parameters—List of incomplete documentation pages
Bibliography
►
Namespaces
►
Classes
▼
Files
▼
File List
►
Applications
►
BaseLib
►
build
►
ChemistryLib
Documentation
►
GeoLib
►
InfoLib
►
MaterialLib
►
MathLib
►
MeshGeoToolsLib
►
MeshLib
►
MeshToolsLib
▼
NumLib
►
Assembler
►
DOF
►
Extrapolation
▼
Fem
►
CoordinatesMapping
▼
FiniteElement
►
C0IsoparametricElements.h
►
ElementTraitsLagrange.h
►
LowerDimShapeTable.h
►
TemplateIsoparametric.h
►
Integration
►
ShapeFunction
►
AverageGradShapeFunction.h
►
InitShapeMatrices.h
►
Interpolation.h
►
ReferenceElement.h
►
ShapeMatrixCache.cpp
►
ShapeMatrixCache.h
►
ShapeMatrixPolicy.h
►
NumericalStability
►
ODESolver
►
StaggeredCoupling
►
TimeStepping
►
CreateNewtonRaphsonSolverParameters.cpp
►
CreateNewtonRaphsonSolverParameters.h
►
Exceptions.h
►
IndexValueVector.h
►
NewtonRaphson.h
►
NumericalDifferentiation.h
►
NumericsConfig.h
►
ParameterLib
►
ProcessLib
►
File Members
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
};
36
struct
FePOINT1
{
…
};
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
};
43
struct
FeLINE2
{
…
};
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
};
50
struct
FeLINE3
{
…
};
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
};
57
struct
FeTRI3
{
…
};
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
};
64
struct
FeTRI6
{
…
};
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
};
71
struct
FeQUAD4
{
…
};
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
};
78
struct
FeQUAD8
{
…
};
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
};
85
struct
FeQUAD9
{
…
};
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
};
92
struct
FeHEX8
{
…
};
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
};
99
struct
FeHEX20
{
…
};
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
};
106
struct
FeTET4
{
…
};
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
};
113
struct
FeTET10
{
…
};
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
};
120
struct
FePRISM6
{
…
};
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
};
127
struct
FePRISM15
{
…
};
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
};
134
struct
FePYRA5
{
…
};
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
};
141
struct
FePYRA13
{
…
};
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:23
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