libMesh
Loading...
Searching...
No Matches
cell_tet14.h
Go to the documentation of this file.
1// The libMesh Finite Element Library.
2// Copyright (C) 2002-2026 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3
4// This library is free software; you can redistribute it and/or
5// modify it under the terms of the GNU Lesser General Public
6// License as published by the Free Software Foundation; either
7// version 2.1 of the License, or (at your option) any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// Lesser General Public License for more details.
13
14// You should have received a copy of the GNU Lesser General Public
15// License along with this library; if not, write to the Free Software
16// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
18
19
20#ifndef LIBMESH_CELL_TET14_H
21#define LIBMESH_CELL_TET14_H
22
23// Local includes
24#include "libmesh/cell_tet.h"
25
26namespace libMesh
27{
28
70class Tet14 final : public Tet
71{
72public:
73
77 explicit
78 Tet14 (Elem * p=nullptr) :
80 {}
81
82 Tet14 (Tet14 &&) = delete;
83 Tet14 (const Tet14 &) = delete;
84 Tet14 & operator= (const Tet14 &) = delete;
85 Tet14 & operator= (Tet14 &&) = delete;
86 virtual ~Tet14() = default;
87
91 virtual ElemType type () const override { return TET14; }
92
96 virtual unsigned int n_nodes() const override { return num_nodes; }
97
101 virtual unsigned int n_sub_elem() const override { return 8; }
102
106 virtual bool is_vertex(const unsigned int i) const override;
107
111 virtual bool is_edge(const unsigned int i) const override;
112
116 virtual bool is_face(const unsigned int i) const override;
117
122 virtual bool is_node_on_side(const unsigned int n,
123 const unsigned int s) const override;
124
125 virtual std::vector<unsigned int> nodes_on_side(const unsigned int s) const override;
126
127 virtual std::vector<unsigned int> nodes_on_edge(const unsigned int e) const override;
128
133 virtual bool is_node_on_edge(const unsigned int n,
134 const unsigned int e) const override;
135
140 virtual bool is_child_on_side(const unsigned int c,
141 const unsigned int s) const override;
142
147 virtual bool has_affine_map () const override;
148
152 virtual Order default_order() const override;
153
157 virtual unsigned int local_side_node(unsigned int side,
158 unsigned int side_node) const override;
159
163 virtual unsigned int local_edge_node(unsigned int edge,
164 unsigned int edge_node) const override;
165
170 virtual std::unique_ptr<Elem> build_side_ptr (const unsigned int i) override;
171
175 virtual void build_side_ptr (std::unique_ptr<Elem> & elem,
176 const unsigned int i) override;
177
178 // Avoid hiding deprecated version with different signature
180
185 virtual std::unique_ptr<Elem> build_edge_ptr (const unsigned int i) override;
186
190 virtual void build_edge_ptr (std::unique_ptr<Elem> & edge, const unsigned int i) override;
191
192 virtual void connectivity(const unsigned int sc,
193 const IOPackage iop,
194 std::vector<dof_id_type> & conn) const override;
195
199 virtual unsigned int n_second_order_adjacent_vertices (const unsigned int) const override;
200
207 virtual unsigned short int second_order_adjacent_vertex (const unsigned int n,
208 const unsigned int v) const override;
209
215 virtual std::pair<unsigned short int, unsigned short int>
216 second_order_child_vertex (const unsigned int n) const override;
217
221 static const int num_nodes = 14;
222 static const int nodes_per_side = 7;
223 static const int nodes_per_edge = 3;
224
229 static const unsigned int side_nodes_map[num_sides][nodes_per_side];
230
235 static const unsigned int edge_nodes_map[num_edges][nodes_per_edge];
236
237 virtual void permute(unsigned int perm_num) override final;
238
239 virtual void flip(BoundaryInfo *) override final;
240
241 ElemType side_type (const unsigned int s) const override final;
242
243#ifdef LIBMESH_ENABLE_AMR
244 virtual
245 const std::vector<std::pair<unsigned char, unsigned char>> &
246 parent_bracketing_nodes(unsigned int c,
247 unsigned int n) const override;
248#endif
249
250protected:
251
256
257
258
259#ifdef LIBMESH_ENABLE_AMR
260
264 virtual Real embedding_matrix (const unsigned int i,
265 const unsigned int j,
266 const unsigned int k) const override;
267
273
279 static const std::vector<std::pair<unsigned char, unsigned char>>
281
283
284#endif // LIBMESH_ENABLE_AMR
285
286private:
287
292 static const unsigned short int _second_order_adjacent_vertices[10][3];
293
297 static const unsigned short int _second_order_vertex_child_number[14];
298
302 static const unsigned short int _second_order_vertex_child_index[14];
303};
304
305} // namespace libMesh
306
307
308#endif // LIBMESH_CELL_TET14_H
The BoundaryInfo class contains information relevant to boundary conditions including storing faces,...
This is the base class from which all geometric element types are derived.
Definition elem.h:96
virtual std::unique_ptr< Elem > build_side_ptr(const unsigned int i)=0
A Node is like a Point, but with more information.
Definition node.h:55
The Tet14 is an element in 3D composed of 14 nodes.
Definition cell_tet14.h:71
Tet14(Elem *p=nullptr)
Constructor.
Definition cell_tet14.h:78
virtual bool is_edge(const unsigned int i) const override
Definition cell_tet14.C:73
virtual bool is_child_on_side(const unsigned int c, const unsigned int s) const override
Definition cell_tet14.C:123
virtual const std::vector< std::pair< unsigned char, unsigned char > > & parent_bracketing_nodes(unsigned int c, unsigned int n) const override
Definition cell_tet14.C:715
static const int nodes_per_side
Definition cell_tet14.h:222
virtual void connectivity(const unsigned int sc, const IOPackage iop, std::vector< dof_id_type > &conn) const override
Definition cell_tet14.C:258
static const std::vector< std::pair< unsigned char, unsigned char > > _parent_bracketing_nodes[3][num_children][num_nodes]
Pairs of nodes that bracket child nodes when doing mesh refinement, for each of the three possible di...
Definition cell_tet14.h:280
static const unsigned short int _second_order_adjacent_vertices[10][3]
Matrix that tells which vertices define the location of mid-side or mid-face nodes,...
Definition cell_tet14.h:292
virtual void permute(unsigned int perm_num) override final
Permutes the element (by swapping node and neighbor pointers) according to the specified index.
Definition cell_tet14.C:812
static const unsigned int edge_nodes_map[num_edges][nodes_per_edge]
This maps the node of the edge to element node numbers.
Definition cell_tet14.h:235
static const unsigned int side_nodes_map[num_sides][nodes_per_side]
This maps the node of the side to element node numbers.
Definition cell_tet14.h:229
virtual unsigned int local_edge_node(unsigned int edge, unsigned int edge_node) const override
Definition cell_tet14.C:218
virtual void flip(BoundaryInfo *) override final
Flips the element (by swapping node and neighbor pointers) to have a mapping Jacobian of opposite sig...
Definition cell_tet14.C:858
virtual std::vector< unsigned int > nodes_on_side(const unsigned int s) const override
Definition cell_tet14.C:97
virtual bool is_face(const unsigned int i) const override
Definition cell_tet14.C:80
ElemType side_type(const unsigned int s) const override final
Definition cell_tet14.C:873
virtual unsigned int n_nodes() const override
Definition cell_tet14.h:96
virtual std::pair< unsigned short int, unsigned short int > second_order_child_vertex(const unsigned int n) const override
Definition cell_tet14.C:457
virtual Real embedding_matrix(const unsigned int i, const unsigned int j, const unsigned int k) const override
Matrix used to create the elements children.
Definition cell_tet14.C:657
virtual ElemType type() const override
Definition cell_tet14.h:91
virtual bool is_vertex(const unsigned int i) const override
Definition cell_tet14.C:66
static const Real _embedding_matrix[num_children][num_nodes][num_nodes]
Matrix that computes new nodal locations/solution values from current nodes/solution.
Definition cell_tet14.h:272
virtual std::unique_ptr< Elem > build_side_ptr(const unsigned int i) override
Builds a TRI7 built coincident with face i.
Definition cell_tet14.C:229
static const int num_nodes
Geometric constants for Tet14.
Definition cell_tet14.h:221
static const unsigned short int _second_order_vertex_child_number[14]
Vector that names a child sharing each second order node.
Definition cell_tet14.h:297
virtual unsigned int n_sub_elem() const override
Definition cell_tet14.h:101
virtual std::unique_ptr< Elem > build_edge_ptr(const unsigned int i) override
Builds a EDGE3 built coincident with edge i.
Definition cell_tet14.C:244
virtual Order default_order() const override
Definition cell_tet14.C:200
virtual bool is_node_on_edge(const unsigned int n, const unsigned int e) const override
Definition cell_tet14.C:110
static const unsigned short int _second_order_vertex_child_index[14]
Vector that names the child vertex index for each second order node.
Definition cell_tet14.h:302
virtual unsigned short int second_order_adjacent_vertex(const unsigned int n, const unsigned int v) const override
Definition cell_tet14.C:468
Node * _nodelinks_data[num_nodes]
Data for links to nodes.
Definition cell_tet14.h:255
virtual std::vector< unsigned int > nodes_on_edge(const unsigned int e) const override
Definition cell_tet14.C:104
Tet14(const Tet14 &)=delete
virtual bool has_affine_map() const override
Definition cell_tet14.C:153
static const int nodes_per_edge
Definition cell_tet14.h:223
virtual unsigned int n_second_order_adjacent_vertices(const unsigned int) const override
Definition cell_tet14.C:412
virtual unsigned int local_side_node(unsigned int side, unsigned int side_node) const override
Definition cell_tet14.C:207
Tet14(Tet14 &&)=delete
virtual bool is_node_on_side(const unsigned int n, const unsigned int s) const override
Definition cell_tet14.C:87
virtual ~Tet14()=default
Tet14 & operator=(const Tet14 &)=delete
The Tet is an element in 3D composed of 4 sides.
Definition cell_tet.h:37
static const int num_edges
Definition cell_tet.h:75
static const int num_sides
Geometric constants for all Tets.
Definition cell_tet.h:74
static const int num_children
Definition cell_tet.h:76
The libMesh namespace provides an interface to certain functionality in the library.
IOPackage
libMesh interfaces with several different software packages for the purposes of creating,...
ElemType
Defines an enum for geometric element types.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real