OGS
ShapeTri3.h
Go to the documentation of this file.
1
14#pragma once
15
17
18namespace NumLib
19{
32{
33public:
40 template <class T_X, class T_N>
41 static void computeShapeFunction(const T_X& r, T_N& N);
42
50 template <class T_X, class T_N>
51 static void computeGradShapeFunction(const T_X& r, T_N& dN);
52
54 static const unsigned DIM = MeshElement::dimension;
55 static const unsigned NPOINTS = MeshElement::n_all_nodes;
56 static constexpr int ORDER = 1;
57};
58
59} // namespace NumLib
60
61#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:55
static const unsigned DIM
Definition ShapeTri3.h:54
static constexpr int ORDER
Definition ShapeTri3.h:56
TemplateElement< MeshLib::TriRule3 > Tri
Definition Tri.h:26