OGS
ShapePoint1.h
Go to the documentation of this file.
1
11#pragma once
12
14
15namespace NumLib
16{
19{
20public:
25 template <class T_X, class T_N>
26 static void computeShapeFunction(const T_X& r, T_N& N);
27
29 static const unsigned DIM = MeshElement::dimension;
30 static const unsigned NPOINTS = MeshElement::n_all_nodes;
31 static constexpr int ORDER = 0;
32};
33} // namespace NumLib
34
35#include "ShapePoint1-impl.h"
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.
Shape function for a point element in natural coordinates.
Definition ShapePoint1.h:19
static const unsigned NPOINTS
Definition ShapePoint1.h:30
static constexpr int ORDER
Definition ShapePoint1.h:31
static const unsigned DIM
Definition ShapePoint1.h:29
static void computeShapeFunction(const T_X &r, T_N &N)
TemplateElement< PointRule1 > Point
Definition Point.h:20