Reference documentation for deal.II version GIT b8135fa6eb 2023-03-25 15:55:02+00:00
\(\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_wedge_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_wedge_h
17 #define dealii_fe_fe_p_wedge_h
18 
19 #include <deal.II/base/config.h>
20 
22 
23 #include <deal.II/fe/fe_poly.h>
24 
26 
35 template <int dim, int spacedim = dim>
36 class FE_WedgePoly : public ::FE_Poly<dim, spacedim>
37 {
38 public:
42  FE_WedgePoly(const unsigned int degree,
43  const internal::GenericDoFsPerObject & dpos,
44  const typename FiniteElementData<dim>::Conformity conformity);
45 
49  virtual void
51  const std::vector<Vector<double>> &support_point_values,
52  std::vector<double> & nodal_values) const override;
53 };
54 
67 template <int dim, int spacedim = dim>
68 class FE_WedgeP : public FE_WedgePoly<dim, spacedim>
69 {
70 public:
74  FE_WedgeP(const unsigned int degree);
75 
79  std::unique_ptr<FiniteElement<dim, spacedim>>
80  clone() const override;
81 
87  std::string
88  get_name() const override;
89 
95  const unsigned int codim) const override;
96 
100  std::vector<std::pair<unsigned int, unsigned int>>
102  const FiniteElement<dim, spacedim> &fe_other) const override;
103 
107  std::vector<std::pair<unsigned int, unsigned int>>
109  const FiniteElement<dim, spacedim> &fe_other) const override;
110 
114  std::vector<std::pair<unsigned int, unsigned int>>
116  const unsigned int face_no = 0) const override;
117 };
118 
131 template <int dim, int spacedim = dim>
132 class FE_WedgeDGP : public FE_WedgePoly<dim, spacedim>
133 {
134 public:
138  FE_WedgeDGP(const unsigned int degree);
139 
143  std::unique_ptr<FiniteElement<dim, spacedim>>
144  clone() const override;
145 
151  std::string
152  get_name() const override;
153 };
154 
156 
157 #endif
std::unique_ptr< FiniteElement< dim, spacedim > > clone() const override
Definition: fe_wedge_p.cc:344
std::string get_name() const override
Definition: fe_wedge_p.cc:353
FE_WedgeDGP(const unsigned int degree)
Definition: fe_wedge_p.cc:334
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
Definition: fe_wedge_p.cc:304
FE_WedgeP(const unsigned int degree)
Definition: fe_wedge_p.cc:165
std::vector< std::pair< unsigned int, unsigned int > > hp_vertex_dof_identities(const FiniteElement< dim, spacedim > &fe_other) const override
Definition: fe_wedge_p.cc:267
std::vector< std::pair< unsigned int, unsigned int > > hp_line_dof_identities(const FiniteElement< dim, spacedim > &fe_other) const override
Definition: fe_wedge_p.cc:283
FiniteElementDomination::Domination compare_for_domination(const FiniteElement< dim, spacedim > &fe_other, const unsigned int codim) const override
Definition: fe_wedge_p.cc:196
std::unique_ptr< FiniteElement< dim, spacedim > > clone() const override
Definition: fe_wedge_p.cc:175
std::string get_name() const override
Definition: fe_wedge_p.cc:184
virtual void convert_generalized_support_point_values_to_dof_values(const std::vector< Vector< double >> &support_point_values, std::vector< double > &nodal_values) const override
Definition: fe_wedge_p.cc:145
FE_WedgePoly(const unsigned int degree, const internal::GenericDoFsPerObject &dpos, const typename FiniteElementData< dim >::Conformity conformity)
Definition: fe_wedge_p.cc:86
const unsigned int degree
Definition: fe_data.h:449
Definition: vector.h:109
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:474
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:475