Reference documentation for deal.II version GIT relicensing-397-g31a1263477 2024-04-16 03:30: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
polynomials_rt_bubbles.h
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4// Copyright (C) 2018 - 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_polynomials_rt_bubbles_h
16#define dealii_polynomials_rt_bubbles_h
17
18
19#include <deal.II/base/config.h>
20
22#include <deal.II/base/point.h>
25#include <deal.II/base/tensor.h>
27
28#include <vector>
29
31
89template <int dim>
91{
92public:
97 PolynomialsRT_Bubbles(const unsigned int k);
98
106 void
107 evaluate(const Point<dim> &unit_point,
108 std::vector<Tensor<1, dim>> &values,
109 std::vector<Tensor<2, dim>> &grads,
110 std::vector<Tensor<3, dim>> &grad_grads,
111 std::vector<Tensor<4, dim>> &third_derivatives,
112 std::vector<Tensor<5, dim>> &fourth_derivatives) const override;
113
117 std::string
118 name() const override;
119
125 static unsigned int
126 n_polynomials(const unsigned int degree);
127
131 virtual std::unique_ptr<TensorPolynomialsBase<dim>>
132 clone() const override;
133
134private:
139
144 std::vector<Polynomials::Polynomial<double>> monomials;
145};
146
147
148template <int dim>
149inline std::string
151{
152 return "RT_bubbles";
153}
154
155
157
158#endif
Definition point.h:111
virtual std::unique_ptr< TensorPolynomialsBase< dim > > clone() const override
void evaluate(const Point< dim > &unit_point, std::vector< Tensor< 1, dim > > &values, std::vector< Tensor< 2, dim > > &grads, std::vector< Tensor< 3, dim > > &grad_grads, std::vector< Tensor< 4, dim > > &third_derivatives, std::vector< Tensor< 5, dim > > &fourth_derivatives) const override
static unsigned int n_polynomials(const unsigned int degree)
std::string name() const override
const PolynomialsRaviartThomas< dim > raviart_thomas_space
std::vector< Polynomials::Polynomial< double > > monomials
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:502
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:503