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-178-g76065a3f85 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
ShapeLine3-impl.h
Go to the documentation of this file.
1
11
namespace
NumLib
12
{
13
template
<
class
T_X,
class
T_N>
14
void
ShapeLine3::computeShapeFunction
(
const
T_X& r, T_N&
N
)
15
{
16
N
[0] = 0.5 * r[0] * (r[0] - 1.0);
17
N
[1] = 0.5 * r[0] * (r[0] + 1.0);
18
N
[2] = 1.0 - r[0] * r[0];
19
}
14
void
ShapeLine3::computeShapeFunction
(
const
T_X& r, T_N&
N
) {
…
}
20
21
template
<
class
T_X,
class
T_N>
22
void
ShapeLine3::computeGradShapeFunction
(
const
T_X& r, T_N& dN)
23
{
24
dN[0] = r[0] - 0.5;
25
dN[1] = r[0] + 0.5;
26
dN[2] = -2.0 * r[0];
27
}
22
void
ShapeLine3::computeGradShapeFunction
(
const
T_X& r, T_N& dN) {
…
}
28
29
}
// namespace NumLib
NumLib::ShapeLine3::computeShapeFunction
static void computeShapeFunction(const T_X &r, T_N &N)
Definition
ShapeLine3-impl.h:14
NumLib::ShapeLine3::computeGradShapeFunction
static void computeGradShapeFunction(const T_X &r, T_N &dN)
Definition
ShapeLine3-impl.h:22
NumLib
Definition
ProjectData.h:46
NumLib::ShapeMatrixType::N
@ N
calculates N
NumLib
Fem
ShapeFunction
ShapeLine3-impl.h
Generated by
1.12.0