Loading [MathJax]/extensions/MathZoom.js
OGS
ShapeHex8.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <array>
14
16
17namespace NumLib
18{
42{
43public:
50 template <class T_X, class T_N>
51 static void computeShapeFunction(const T_X& r, T_N& N);
52
59 template <class T_X, class T_N>
60 static void computeGradShapeFunction(const T_X& r, T_N& dN);
61
62 static constexpr std::array reference_element_centre = {0.0, 0.0, 0.0};
63
65 static const unsigned DIM = MeshElement::dimension;
66 static const unsigned NPOINTS = MeshElement::n_all_nodes;
67 static constexpr int ORDER = 1;
68};
69
70} // namespace NumLib
71
72#include "ShapeHex8-impl.h"
Definition of the Hex 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 computeGradShapeFunction(const T_X &r, T_N &dN)
static constexpr std::array reference_element_centre
Definition ShapeHex8.h:62
static const unsigned DIM
Definition ShapeHex8.h:65
static const unsigned NPOINTS
Definition ShapeHex8.h:66
static void computeShapeFunction(const T_X &r, T_N &N)
static constexpr int ORDER
Definition ShapeHex8.h:67
TemplateElement< MeshLib::HexRule8 > Hex
Definition Hex.h:25