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