deal.II version GIT relicensing-6809-ge913b9bb34 2026-09-25 17:20:01+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_bdm.h
Go to the documentation of this file.
1// -----------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
4// Copyright (C) 2010 - 2023 by the deal.II authors
5//
6// This file is part of the deal.II library.
7//
8// Detailed license information governing the source code and contributions
9// can be found in LICENSE.md and CONTRIBUTING.md at the top level directory.
10//
11// -----------------------------------------------------------------------------
12
13#ifndef dealii_fe_bdm_h
14#define dealii_fe_bdm_h
15
16#include <deal.II/base/config.h>
17
22
23#include <deal.II/fe/fe.h>
25
26#include <vector>
27
29
55template <int dim>
56class FE_BDM : public FE_PolyTensor<dim>
57{
58public:
62 FE_BDM(const unsigned int p);
63
69 virtual std::string
70 get_name() const override;
71
72 virtual std::unique_ptr<FiniteElement<dim, dim>>
73 clone() const override;
74
75 // documentation inherited from the base class
76 virtual void
78 const std::vector<Vector<double>> &support_point_values,
79 std::vector<double> &nodal_values) const override;
80
81private:
88 static std::vector<unsigned int>
89 get_dpo_vector(const unsigned int degree);
90
95 static std::vector<bool>
96 get_ria_vector(const unsigned int degree);
104 void
105 initialize_support_points(const unsigned int bdm_degree);
111 std::vector<std::vector<double>> test_values_face;
117 std::vector<std::vector<double>> test_values_cell;
118
126 void
128};
129
131
132#endif
std::vector< std::vector< double > > test_values_face
Definition fe_bdm.h:111
void initialize_support_points(const unsigned int bdm_degree)
Definition fe_bdm.cc:354
std::vector< std::vector< double > > test_values_cell
Definition fe_bdm.h:117
static std::vector< bool > get_ria_vector(const unsigned int degree)
Definition fe_bdm.cc:267
virtual std::unique_ptr< FiniteElement< dim, dim > > clone() const override
Definition fe_bdm.cc:148
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_bdm.cc:157
void initialize_quad_dof_index_permutation_and_sign_change()
Definition fe_bdm.cc:113
virtual std::string get_name() const override
Definition fe_bdm.cc:126
static std::vector< unsigned int > get_dpo_vector(const unsigned int degree)
Definition fe_bdm.cc:243
const unsigned int degree
Definition fe_data.h:450
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:38
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:39