Reference documentation for deal.II version GIT relicensing-487-ge9eb5ab491 2024-04-25 07:20: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\}}\)
Loading...
Searching...
No Matches
fe_wedge_p.h
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4// Copyright (C) 2021 - 2023 by the deal.II authors
5//
6// This file is part of the deal.II library.
7//
8// Part of the source code is dual licensed under Apache-2.0 WITH
9// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
10// governing the source code and code contributions can be found in
11// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
12//
13// ------------------------------------------------------------------------
14
15#ifndef dealii_fe_fe_p_wedge_h
16#define dealii_fe_fe_p_wedge_h
17
18#include <deal.II/base/config.h>
19
21
22#include <deal.II/fe/fe_poly.h>
23
25
34template <int dim, int spacedim = dim>
35class FE_WedgePoly : public ::FE_Poly<dim, spacedim>
36{
37public:
41 FE_WedgePoly(const unsigned int degree,
43 const typename FiniteElementData<dim>::Conformity conformity);
44
48 virtual void
50 const std::vector<Vector<double>> &support_point_values,
51 std::vector<double> &nodal_values) const override;
52};
53
66template <int dim, int spacedim = dim>
67class FE_WedgeP : public FE_WedgePoly<dim, spacedim>
68{
69public:
73 FE_WedgeP(const unsigned int degree);
74
78 std::unique_ptr<FiniteElement<dim, spacedim>>
79 clone() const override;
80
86 std::string
87 get_name() const override;
88
94 const unsigned int codim) const override;
95
99 std::vector<std::pair<unsigned int, unsigned int>>
101 const FiniteElement<dim, spacedim> &fe_other) const override;
102
106 std::vector<std::pair<unsigned int, unsigned int>>
108 const FiniteElement<dim, spacedim> &fe_other) const override;
109
113 std::vector<std::pair<unsigned int, unsigned int>>
115 const unsigned int face_no = 0) const override;
116};
117
130template <int dim, int spacedim = dim>
131class FE_WedgeDGP : public FE_WedgePoly<dim, spacedim>
132{
133public:
137 FE_WedgeDGP(const unsigned int degree);
138
142 std::unique_ptr<FiniteElement<dim, spacedim>>
143 clone() const override;
144
150 std::string
151 get_name() const override;
152};
153
155
156#endif
std::unique_ptr< FiniteElement< dim, spacedim > > clone() const override
std::string get_name() 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::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_line_dof_identities(const FiniteElement< dim, spacedim > &fe_other) const override
FiniteElementDomination::Domination compare_for_domination(const FiniteElement< dim, spacedim > &fe_other, const unsigned int codim) const override
std::unique_ptr< FiniteElement< dim, spacedim > > clone() const override
std::string get_name() const override
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
const unsigned int degree
Definition fe_data.h:452
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:502
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:503