Reference documentation for deal.II version 9.3.3
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
fe_pyramid_p.h
Go to the documentation of this file.
1// ---------------------------------------------------------------------
2//
3// Copyright (C) 2020 - 2021 by the deal.II authors
4//
5// This file is part of the deal.II library.
6//
7// The deal.II library is free software; you can use it, redistribute
8// it, and/or modify it under the terms of the GNU Lesser General
9// Public License as published by the Free Software Foundation; either
10// version 2.1 of the License, or (at your option) any later version.
11// The full text of the license can be found in the file LICENSE.md at
12// the top level directory of deal.II.
13//
14// ---------------------------------------------------------------------
15
16#ifndef dealii_fe_fe_p_pyramids_h
17#define dealii_fe_fe_p_pyramids_h
18
19#include <deal.II/base/config.h>
20
22
23#include <deal.II/fe/fe_poly.h>
24
26
34template <int dim, int spacedim = dim>
35class FE_PyramidPoly : public ::FE_Poly<dim, spacedim>
36{
37public:
41 FE_PyramidPoly(const unsigned int degree,
43 const typename FiniteElementData<dim>::Conformity conformity);
44};
45
53template <int dim, int spacedim = dim>
54class FE_PyramidP : public FE_PyramidPoly<dim, spacedim>
55{
56public:
60 FE_PyramidP(const unsigned int degree);
61
65 std::unique_ptr<FiniteElement<dim, spacedim>>
66 clone() const override;
67
73 std::string
74 get_name() const override;
75
81 const unsigned int codim) const override;
82
86 std::vector<std::pair<unsigned int, unsigned int>>
88 const FiniteElement<dim, spacedim> &fe_other) const override;
89
93 std::vector<std::pair<unsigned int, unsigned int>>
95 const FiniteElement<dim, spacedim> &fe_other) const override;
96
100 std::vector<std::pair<unsigned int, unsigned int>>
102 const unsigned int face_no = 0) const override;
103};
104
112template <int dim, int spacedim = dim>
113class FE_PyramidDGP : public FE_PyramidPoly<dim, spacedim>
114{
115public:
119 FE_PyramidDGP(const unsigned int degree);
120
124 std::unique_ptr<FiniteElement<dim, spacedim>>
125 clone() const override;
126
132 std::string
133 get_name() const override;
134};
135
137
138#endif
std::string get_name() const override
FE_PyramidDGP(const unsigned int degree)
std::unique_ptr< FiniteElement< dim, spacedim > > clone() const override
FE_PyramidP(const unsigned int degree)
std::unique_ptr< FiniteElement< dim, spacedim > > clone() const override
std::vector< std::pair< unsigned int, unsigned int > > hp_line_dof_identities(const FiniteElement< dim, spacedim > &fe_other) const override
std::vector< std::pair< unsigned int, unsigned int > > hp_vertex_dof_identities(const FiniteElement< dim, spacedim > &fe_other) const override
std::vector< std::pair< unsigned int, unsigned int > > hp_quad_dof_identities(const FiniteElement< dim, spacedim > &fe_other, const unsigned int face_no=0) const override
std::string get_name() const override
FiniteElementDomination::Domination compare_for_domination(const FiniteElement< dim, spacedim > &fe_other, const unsigned int codim) const override
FE_PyramidPoly(const unsigned int degree, const internal::GenericDoFsPerObject &dpos, const typename FiniteElementData< dim >::Conformity conformity)
Definition: fe_pyramid_p.cc:76
const unsigned int degree
Definition: fe_base.h:435
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:402
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:403