OGS
ShapeLine2-impl.h
Go to the documentation of this file.
1
11namespace NumLib
12{
13template <class T_X, class T_N>
14void 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}
19
20template <class T_X, class T_N>
21void ShapeLine2::computeGradShapeFunction(const T_X& /*r*/, T_N& dN)
22{
23 dN[0] = -0.5;
24 dN[1] = 0.5;
25}
26
27} // namespace NumLib
static void computeShapeFunction(const T_X &r, T_N &N)
static void computeGradShapeFunction(const T_X &r, T_N &dN)