libMesh
cell_pyramid.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2024 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_PYRAMID_H
21 #define LIBMESH_CELL_PYRAMID_H
22 
23 // Local includes
24 #include "libmesh/cell.h"
25 
26 namespace libMesh
27 {
28 
29 
30 
31 
39 class Pyramid : public Cell
40 {
41 public:
42 
48  Pyramid(const unsigned int nn, Elem * p, Node ** nodelinkdata) :
49  Cell(nn, Pyramid::n_sides(), p, _elemlinks_data, nodelinkdata)
50  {
51  // Make sure the interior parent isn't undefined
52  if (LIBMESH_DIM > 3)
53  this->set_interior_parent(nullptr);
54  }
55 
56  Pyramid (Pyramid &&) = delete;
57  Pyramid (const Pyramid &) = delete;
58  Pyramid & operator= (const Pyramid &) = delete;
59  Pyramid & operator= (Pyramid &&) = delete;
60  virtual ~Pyramid() = default;
61 
66  virtual Point master_point (const unsigned int i) const override
67  {
68  libmesh_assert_less(i, this->n_nodes());
69  return Point(_master_points[i][0],
70  _master_points[i][1],
71  _master_points[i][2]);
72  }
73 
78  virtual unsigned int n_nodes() const override { return 5; }
79 
83  virtual unsigned int n_sides() const override { return 5; }
84 
88  virtual unsigned int n_vertices() const override { return 5; }
89 
93  virtual unsigned int n_edges() const override { return 8; }
94 
98  virtual unsigned int n_faces() const override { return 5; }
99 
103  virtual unsigned int n_children() const override { return 10; }
104 
109  virtual bool is_child_on_side(const unsigned int c,
110  const unsigned int s) const override;
111 
115  virtual bool is_edge_on_side(const unsigned int e,
116  const unsigned int s) const override;
117 
121  using Elem::key;
122 
127  virtual dof_id_type key (const unsigned int s) const override;
128 
135  virtual dof_id_type low_order_key (const unsigned int s) const override;
136 
140  virtual unsigned int local_side_node(unsigned int side,
141  unsigned int side_node) const override;
142 
146  virtual unsigned int local_edge_node(unsigned int edge,
147  unsigned int edge_node) const override;
148 
152  virtual std::unique_ptr<Elem> side_ptr (const unsigned int i) override;
153 
157  virtual void side_ptr (std::unique_ptr<Elem> & side, const unsigned int i) override;
158 
159  virtual std::vector<unsigned int> sides_on_edge(const unsigned int e) const override final;
160 
172  unsigned int local_singular_node(const Point & p, const Real tol = TOLERANCE*TOLERANCE) const override final;
173 
178  virtual bool is_singular_node(unsigned int node_idx) const override final { return (node_idx == 4); }
179 
183  virtual unsigned int n_permutations() const override final { return 4; }
184 
185  virtual bool is_flipped() const override final;
186 
190  static const unsigned int edge_sides_map[8][2];
191 
192 protected:
193 
197  Elem * _elemlinks_data[6+(LIBMESH_DIM>3)];
198 
202  static const Real _master_points[14][3];
203 
204 #ifdef LIBMESH_ENABLE_AMR
205 
209  unsigned int side_children_matrix (const unsigned int,
210  const unsigned int) const
211  { libmesh_not_implemented(); return 0; }
212 
213 #endif
214 
215 };
216 
217 } // namespace libMesh
218 
219 #endif // LIBMESH_CELL_PYRAMID_H
The Pyramid is an element in 3D with 5 sides.
Definition: cell_pyramid.h:39
A Node is like a Point, but with more information.
Definition: node.h:52
virtual dof_id_type key() const
Definition: elem.C:563
static constexpr Real TOLERANCE
virtual bool is_flipped() const override final
Definition: cell_pyramid.C:260
unsigned int side_children_matrix(const unsigned int, const unsigned int) const
Matrix that allows children to inherit boundary conditions.
Definition: cell_pyramid.h:209
This is the base class from which all geometric element types are derived.
Definition: elem.h:94
virtual unsigned int n_sides() const override
Definition: cell_pyramid.h:83
The libMesh namespace provides an interface to certain functionality in the library.
virtual unsigned int n_permutations() const override final
One quad side, four orientations.
Definition: cell_pyramid.h:183
virtual std::vector< unsigned int > sides_on_edge(const unsigned int e) const override final
Definition: cell_pyramid.C:252
virtual unsigned int n_vertices() const override
Definition: cell_pyramid.h:88
void set_interior_parent(Elem *p)
Sets the pointer to the element&#39;s interior_parent.
Definition: elem.C:1056
virtual std::unique_ptr< Elem > side_ptr(const unsigned int i) override
Definition: cell_pyramid.C:148
virtual bool is_singular_node(unsigned int node_idx) const override final
Definition: cell_pyramid.h:178
virtual unsigned int local_side_node(unsigned int side, unsigned int side_node) const override
Definition: cell_pyramid.C:121
virtual bool is_edge_on_side(const unsigned int e, const unsigned int s) const override
Definition: cell_pyramid.C:241
virtual unsigned int local_edge_node(unsigned int edge, unsigned int edge_node) const override
Definition: cell_pyramid.C:137
Pyramid & operator=(const Pyramid &)=delete
virtual bool is_child_on_side(const unsigned int c, const unsigned int s) const override
Definition: cell_pyramid.C:227
The Cell is an abstract element type that lives in three dimensions.
Definition: cell.h:38
virtual unsigned int n_children() const override
Definition: cell_pyramid.h:103
virtual ~Pyramid()=default
Elem * _elemlinks_data[6+(LIBMESH_DIM >3)]
Data for links to parent/neighbor/interior_parent elements.
Definition: cell_pyramid.h:197
unsigned int local_singular_node(const Point &p, const Real tol=TOLERANCE *TOLERANCE) const override final
Definition: cell_pyramid.C:269
virtual unsigned int n_nodes() const override
Definition: cell_pyramid.h:78
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual unsigned int n_edges() const override
Definition: cell_pyramid.h:93
Pyramid(const unsigned int nn, Elem *p, Node **nodelinkdata)
Default pyramid, one quad face, four triangular faces, takes number of nodes and parent.
Definition: cell_pyramid.h:48
static const Real _master_points[14][3]
Master element node locations.
Definition: cell_pyramid.h:202
virtual Point master_point(const unsigned int i) const override
Definition: cell_pyramid.h:66
virtual unsigned int n_faces() const override
Definition: cell_pyramid.h:98
A Point defines a location in LIBMESH_DIM dimensional Real space.
Definition: point.h:39
virtual dof_id_type low_order_key(const unsigned int s) const override
Definition: cell_pyramid.C:94
uint8_t dof_id_type
Definition: id_types.h:67
static const unsigned int edge_sides_map[8][2]
This maps each edge to the sides that contain said edge.
Definition: cell_pyramid.h:190