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-276-g3d6bff6232 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
►
Integration
▼
ShapeFunction
►
ShapeHex20-impl.h
►
ShapeHex20.h
ShapeHex8-impl.h
►
ShapeHex8.h
ShapeLine2-impl.h
►
ShapeLine2.h
ShapeLine3-impl.h
►
ShapeLine3.h
ShapePoint1-impl.h
►
ShapePoint1.h
ShapePrism15-impl.h
►
ShapePrism15.h
ShapePrism6-impl.h
►
ShapePrism6.h
ShapePyra13-impl.h
►
ShapePyra13.h
ShapePyra5-impl.h
►
ShapePyra5.h
ShapeQuad4-impl.h
►
ShapeQuad4.h
ShapeQuad8-impl.h
►
ShapeQuad8.h
ShapeQuad9-impl.h
►
ShapeQuad9.h
ShapeStaticConsts.cpp
ShapeTet10-impl.h
►
ShapeTet10.h
ShapeTet4-impl.h
►
ShapeTet4.h
ShapeTri3-impl.h
►
ShapeTri3.h
ShapeTri6-impl.h
►
ShapeTri6.h
►
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
ShapeTet4-impl.h
Go to the documentation of this file.
1
11
namespace
NumLib
12
{
13
template
<
class
T_X,
class
T_N>
14
void
ShapeTet4::computeShapeFunction
(
const
T_X& r, T_N&
N
)
15
{
16
N
[0] = 1. - r[0] - r[1] - r[2];
17
N
[1] = r[0];
18
N
[2] = r[1];
19
N
[3] = r[2];
20
}
14
void
ShapeTet4::computeShapeFunction
(
const
T_X& r, T_N&
N
) {
…
}
21
22
template
<
class
T_X,
class
T_N>
23
void
ShapeTet4::computeGradShapeFunction
(
const
T_X&
/*r*/
, T_N& dN)
24
{
25
// dr
26
dN[0] = -1.0;
27
dN[1] = 1.0;
28
dN[2] = 0.0;
29
dN[3] = 0.0;
30
31
// ds
32
dN[4] = -1.0;
33
dN[5] = 0.0;
34
dN[6] = 1.0;
35
dN[7] = 0.0;
36
37
// dt
38
dN[8] = -1.0;
39
dN[9] = 0.0;
40
dN[10] = 0.0;
41
dN[11] = 1.0;
42
}
23
void
ShapeTet4::computeGradShapeFunction
(
const
T_X&
/*r*/
, T_N& dN) {
…
}
43
44
}
// namespace NumLib
NumLib::ShapeTet4::computeShapeFunction
static void computeShapeFunction(const T_X &r, T_N &N)
Definition
ShapeTet4-impl.h:14
NumLib::ShapeTet4::computeGradShapeFunction
static void computeGradShapeFunction(const T_X &r, T_N &dN)
Definition
ShapeTet4-impl.h:23
NumLib
Definition
ProjectData.h:46
NumLib::ShapeMatrixType::N
@ N
calculates N
NumLib
Fem
ShapeFunction
ShapeTet4-impl.h
Generated by
1.12.0