Reference documentation for deal.II version GIT relicensing-218-g1f873f3929 2024-03-28 15:00: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_nedelec.h
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: 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// 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
16#ifndef dealii_polynomials_nedelec_h
17#define dealii_polynomials_nedelec_h
18
19
20#include <deal.II/base/config.h>
21
23#include <deal.II/base/point.h>
26#include <deal.II/base/tensor.h>
29
30#include <vector>
31
33
49template <int dim>
51{
52public:
60 PolynomialsNedelec(const unsigned int k);
61
69 void
70 evaluate(const Point<dim> &unit_point,
71 std::vector<Tensor<1, dim>> &values,
72 std::vector<Tensor<2, dim>> &grads,
73 std::vector<Tensor<3, dim>> &grad_grads,
74 std::vector<Tensor<4, dim>> &third_derivatives,
75 std::vector<Tensor<5, dim>> &fourth_derivatives) const override;
76
80 std::string
81 name() const override;
82
88 static unsigned int
89 n_polynomials(const unsigned int degree);
90
94 virtual std::unique_ptr<TensorPolynomialsBase<dim>>
95 clone() const override;
96
97private:
103
108 static std::vector<std::vector<Polynomials::Polynomial<double>>>
109 create_polynomials(const unsigned int k);
110};
111
112
113template <int dim>
114inline std::string
116{
117 return "Nedelec";
118}
119
120
122
123#endif
Definition point.h:111
const AnisotropicPolynomials< dim > polynomial_space
virtual std::unique_ptr< TensorPolynomialsBase< dim > > clone() const override
std::string name() 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 std::vector< std::vector< Polynomials::Polynomial< double > > > create_polynomials(const unsigned int k)
static unsigned int n_polynomials(const unsigned int degree)
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:502
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:503