Loading [MathJax]/extensions/MathMenu.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-301-gee1fb4d5 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
LowerDimShapeTable.h
Go to the documentation of this file.
1
11
#pragma once
12
13
#include "
NumLib/Fem/ShapeFunction/ShapeHex20.h
"
14
#include "
NumLib/Fem/ShapeFunction/ShapeHex8.h
"
15
#include "
NumLib/Fem/ShapeFunction/ShapeLine2.h
"
16
#include "
NumLib/Fem/ShapeFunction/ShapeLine3.h
"
17
#include "
NumLib/Fem/ShapeFunction/ShapePrism15.h
"
18
#include "
NumLib/Fem/ShapeFunction/ShapePrism6.h
"
19
#include "
NumLib/Fem/ShapeFunction/ShapePyra13.h
"
20
#include "
NumLib/Fem/ShapeFunction/ShapePyra5.h
"
21
#include "
NumLib/Fem/ShapeFunction/ShapeQuad4.h
"
22
#include "
NumLib/Fem/ShapeFunction/ShapeQuad8.h
"
23
#include "
NumLib/Fem/ShapeFunction/ShapeQuad9.h
"
24
#include "
NumLib/Fem/ShapeFunction/ShapeTet10.h
"
25
#include "
NumLib/Fem/ShapeFunction/ShapeTet4.h
"
26
#include "
NumLib/Fem/ShapeFunction/ShapeTri3.h
"
27
#include "
NumLib/Fem/ShapeFunction/ShapeTri6.h
"
28
29
namespace
NumLib
30
{
31
template
<
typename
SF>
32
struct
LowerDim
;
33
34
template
<>
35
struct
LowerDim
<
NumLib
::
ShapeLine3
>
36
{
37
using
type
=
NumLib::ShapeLine2
;
38
};
35
struct
LowerDim
<
NumLib
::
ShapeLine3
> {
…
};
39
template
<>
40
struct
LowerDim
<
NumLib
::
ShapeQuad8
>
41
{
42
using
type
=
NumLib::ShapeQuad4
;
43
};
40
struct
LowerDim
<
NumLib
::
ShapeQuad8
> {
…
};
44
template
<>
45
struct
LowerDim
<
NumLib
::
ShapeQuad9
>
46
{
47
using
type
=
NumLib::ShapeQuad4
;
48
};
45
struct
LowerDim
<
NumLib
::
ShapeQuad9
> {
…
};
49
template
<>
50
struct
LowerDim
<
NumLib
::
ShapeHex20
>
51
{
52
using
type
=
NumLib::ShapeHex8
;
53
};
50
struct
LowerDim
<
NumLib
::
ShapeHex20
> {
…
};
54
template
<>
55
struct
LowerDim
<
NumLib
::
ShapeTri6
>
56
{
57
using
type
=
NumLib::ShapeTri3
;
58
};
55
struct
LowerDim
<
NumLib
::
ShapeTri6
> {
…
};
59
template
<>
60
struct
LowerDim
<
NumLib
::
ShapeTet10
>
61
{
62
using
type
=
NumLib::ShapeTet4
;
63
};
60
struct
LowerDim
<
NumLib
::
ShapeTet10
> {
…
};
64
template
<>
65
struct
LowerDim
<
NumLib
::
ShapePrism15
>
66
{
67
using
type
=
NumLib::ShapePrism6
;
68
};
65
struct
LowerDim
<
NumLib
::
ShapePrism15
> {
…
};
69
template
<>
70
struct
LowerDim
<
NumLib
::
ShapePyra13
>
71
{
72
using
type
=
NumLib::ShapePyra5
;
73
};
70
struct
LowerDim
<
NumLib
::
ShapePyra13
> {
…
};
74
75
}
// namespace NumLib
ShapeHex20.h
ShapeHex8.h
ShapeLine2.h
ShapeLine3.h
ShapePrism15.h
ShapePrism6.h
ShapePyra13.h
ShapePyra5.h
ShapeQuad4.h
ShapeQuad8.h
ShapeQuad9.h
ShapeTet10.h
ShapeTet4.h
ShapeTri3.h
ShapeTri6.h
NumLib::ShapeHex20
Definition
ShapeHex20.h:24
NumLib::ShapeHex8
Definition
ShapeHex8.h:42
NumLib::ShapeLine2
Definition
ShapeLine2.h:27
NumLib::ShapeLine3
Definition
ShapeLine3.h:22
NumLib::ShapePrism15
Definition
ShapePrism15.h:23
NumLib::ShapePrism6
Definition
ShapePrism6.h:23
NumLib::ShapePyra13
Definition
ShapePyra13.h:23
NumLib::ShapePyra5
Definition
ShapePyra5.h:23
NumLib::ShapeQuad4
Definition
ShapeQuad4.h:35
NumLib::ShapeQuad8
Definition
ShapeQuad8.h:22
NumLib::ShapeQuad9
Definition
ShapeQuad9.h:22
NumLib::ShapeTet10
Definition
ShapeTet10.h:22
NumLib::ShapeTet4
Definition
ShapeTet4.h:22
NumLib::ShapeTri3
Definition
ShapeTri3.h:35
NumLib::ShapeTri6
Definition
ShapeTri6.h:23
NumLib
Definition
ProjectData.h:46
NumLib::LowerDim
Definition
LowerDimShapeTable.h:32
NumLib
Fem
FiniteElement
LowerDimShapeTable.h
Generated by
1.12.0