Reference documentation for deal.II version 9.3.3
|
#include <deal.II/base/polynomials_barycentric.h>
Public Member Functions | |
BarycentricPolynomials (const std::vector< BarycentricPolynomial< dim > > &polynomials) | |
const BarycentricPolynomial< dim > & | operator[] (const std::size_t i) const |
void | evaluate (const Point< dim > &unit_point, std::vector< double > &values, std::vector< Tensor< 1, dim > > &grads, std::vector< Tensor< 2, dim > > &grad_grads, std::vector< Tensor< 3, dim > > &third_derivatives, std::vector< Tensor< 4, dim > > &fourth_derivatives) const override |
double | compute_value (const unsigned int i, const Point< dim > &p) const override |
Tensor< 1, dim > | compute_1st_derivative (const unsigned int i, const Point< dim > &p) const override |
Tensor< 2, dim > | compute_2nd_derivative (const unsigned int i, const Point< dim > &p) const override |
Tensor< 3, dim > | compute_3rd_derivative (const unsigned int i, const Point< dim > &p) const override |
Tensor< 4, dim > | compute_4th_derivative (const unsigned int i, const Point< dim > &p) const override |
Tensor< 1, dim > | compute_grad (const unsigned int i, const Point< dim > &p) const override |
Tensor< 2, dim > | compute_grad_grad (const unsigned int i, const Point< dim > &p) const override |
virtual std::size_t | memory_consumption () const override |
std::string | name () const override |
virtual std::unique_ptr< ScalarPolynomialsBase< dim > > | clone () const override |
template<int order> | |
Tensor< order, dim > | compute_derivative (const unsigned int i, const Point< dim > &p) const |
unsigned int | n () const |
virtual unsigned int | degree () const |
Static Public Member Functions | |
static BarycentricPolynomials< dim > | get_fe_p_basis (const unsigned int degree) |
Static Public Attributes | |
static const unsigned int | dimension = dim |
Protected Attributes | |
std::vector< BarycentricPolynomial< dim > > | polys |
Table< 2, BarycentricPolynomial< dim > > | poly_grads |
Table< 3, BarycentricPolynomial< dim > > | poly_hessians |
Table< 4, BarycentricPolynomial< dim > > | poly_third_derivatives |
Table< 5, BarycentricPolynomial< dim > > | poly_fourth_derivatives |
Private Attributes | |
const unsigned int | polynomial_degree |
const unsigned int | n_pols |
Scalar polynomial space based on barycentric polynomials.
Definition at line 214 of file polynomials_barycentric.h.
BarycentricPolynomials< dim >::BarycentricPolynomials | ( | const std::vector< BarycentricPolynomial< dim > > & | polynomials | ) |
Constructor taking the polynomial degree
as input.
Definition at line 104 of file polynomials_barycentric.cc.
|
static |
Get the standard Lagrange basis for a specified degree.
Definition at line 58 of file polynomials_barycentric.cc.
const BarycentricPolynomial< dim > & BarycentricPolynomials< dim >::operator[] | ( | const std::size_t | i | ) | const |
Access operator.
Definition at line 700 of file polynomials_barycentric.h.
|
overridevirtual |
Compute the value and the derivatives of the polynomials at unit_point
.
The size of the vectors must either be zero or equal n()
. In the first case, the function will not compute these values.
If you need values or derivatives of all polynomials then use this function, rather than using any of the compute_value
, compute_grad
or compute_grad_grad
functions, see below, in a loop over all tensor product polynomials.
Implements ScalarPolynomialsBase< dim >.
Definition at line 148 of file polynomials_barycentric.cc.
|
overridevirtual |
Compute the value of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
Implements ScalarPolynomialsBase< dim >.
Definition at line 207 of file polynomials_barycentric.cc.
|
overridevirtual |
Compute the first derivative of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
Implements ScalarPolynomialsBase< dim >.
Definition at line 218 of file polynomials_barycentric.cc.
|
overridevirtual |
Compute the second derivative of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
Implements ScalarPolynomialsBase< dim >.
Definition at line 231 of file polynomials_barycentric.cc.
|
overridevirtual |
Compute the third derivative of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
Implements ScalarPolynomialsBase< dim >.
Definition at line 246 of file polynomials_barycentric.cc.
|
overridevirtual |
Compute the fourth derivative of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
Implements ScalarPolynomialsBase< dim >.
Definition at line 262 of file polynomials_barycentric.cc.
|
overridevirtual |
Compute the gradient of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
Implements ScalarPolynomialsBase< dim >.
Definition at line 280 of file polynomials_barycentric.cc.
|
overridevirtual |
Compute the second derivative (grad_grad) of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
Implements ScalarPolynomialsBase< dim >.
Definition at line 290 of file polynomials_barycentric.cc.
|
overridevirtual |
Return an estimate (in bytes) for the memory consumption of this object.
Reimplemented from ScalarPolynomialsBase< dim >.
Definition at line 318 of file polynomials_barycentric.cc.
|
overridevirtual |
Return the name of the space.
Implements ScalarPolynomialsBase< dim >.
Definition at line 309 of file polynomials_barycentric.cc.
|
overridevirtual |
A sort of virtual copy constructor, this function returns a copy of the polynomial space object. Derived classes need to override the function here in this base class and return an object of the same type as the derived class.
Some places in the library, for example the constructors of FE_Poly, need to make copies of polynomial spaces without knowing their exact type. They do so through this function.
Implements ScalarPolynomialsBase< dim >.
Definition at line 300 of file polynomials_barycentric.cc.
|
inlineinherited |
Compute the order
th derivative of the i
th polynomial at unit point p
.
Consider using evaluate() instead.
order | The order of the derivative. |
Definition at line 257 of file scalar_polynomials_base.h.
|
inlineinherited |
Return the number of polynomials.
Definition at line 238 of file scalar_polynomials_base.h.
|
inlinevirtualinherited |
Return the highest polynomial degree of polynomials represented by this class. A derived class may override this if its value is different from my_degree
.
Reimplemented in PolynomialsP< dim >.
Definition at line 247 of file scalar_polynomials_base.h.
|
static |
Make the dimension available to the outside.
Definition at line 220 of file polynomials_barycentric.h.
|
protected |
Definition at line 315 of file polynomials_barycentric.h.
|
protected |
Definition at line 317 of file polynomials_barycentric.h.
|
protected |
Definition at line 319 of file polynomials_barycentric.h.
|
protected |
Definition at line 321 of file polynomials_barycentric.h.
|
protected |
Definition at line 323 of file polynomials_barycentric.h.
|
privateinherited |
The highest polynomial degree of this functions represented by this object.
Definition at line 226 of file scalar_polynomials_base.h.
|
privateinherited |
The number of polynomials represented by this object.
Definition at line 231 of file scalar_polynomials_base.h.