OGS
ShapeLine3-impl.h
Go to the documentation of this file.
1
11namespace NumLib
12{
13template <class T_X, class T_N>
14void 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}
20
21template <class T_X, class T_N>
22void 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}
28
29} // namespace NumLib
static void computeShapeFunction(const T_X &r, T_N &N)
static void computeGradShapeFunction(const T_X &r, T_N &dN)