OGS
ShapeTri3.h
Go to the documentation of this file.
1
14#pragma once
15
17
18namespace NumLib
19{
34{
35public:
42 template <class T_X, class T_N>
43 static void computeShapeFunction(const T_X& r, T_N& N);
44
52 template <class T_X, class T_N>
53 static void computeGradShapeFunction(const T_X& r, T_N& dN);
54
56 static const unsigned DIM = MeshElement::dimension;
57 static const unsigned NPOINTS = MeshElement::n_all_nodes;
58 static constexpr int ORDER = 1;
59};
60
61} // namespace NumLib
62
63#include "ShapeTri3-impl.h"
Definition of the Tri class.
static const unsigned n_all_nodes
Constant: The number of all nodes for this element.
static const unsigned dimension
Constant: The dimension of this element.
static void computeShapeFunction(const T_X &r, T_N &N)
static void computeGradShapeFunction(const T_X &r, T_N &dN)
static const unsigned NPOINTS
Definition ShapeTri3.h:57
static const unsigned DIM
Definition ShapeTri3.h:56
static constexpr int ORDER
Definition ShapeTri3.h:58
TemplateElement< MeshLib::TriRule3 > Tri
Definition Tri.h:26