Reference documentation for deal.II version 9.6.0
|
#include <deal.II/base/polynomials_barycentric.h>
Public Types | |
using | PolyType = BarycentricPolynomial<dim> |
using | GradType = std::array<PolyType, dim> |
using | HessianType = std::array<GradType, dim> |
using | ThirdDerivativesType = std::array<HessianType, dim> |
using | FourthDerivativesType = std::array<ThirdDerivativesType, dim> |
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 constexpr unsigned int | dimension = dim |
Protected Attributes | |
std::vector< PolyType > | polys |
std::vector< GradType > | poly_grads |
std::vector< HessianType > | poly_hessians |
std::vector< ThirdDerivativesType > | poly_third_derivatives |
std::vector< FourthDerivativesType > | 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 216 of file polynomials_barycentric.h.
using BarycentricPolynomials< dim >::PolyType = BarycentricPolynomial<dim> |
Alias for polynomial type.
Definition at line 222 of file polynomials_barycentric.h.
using BarycentricPolynomials< dim >::GradType = std::array<PolyType, dim> |
Alias for polynomial gradient type.
Definition at line 227 of file polynomials_barycentric.h.
using BarycentricPolynomials< dim >::HessianType = std::array<GradType, dim> |
Alias for polynomial hessian type.
Definition at line 232 of file polynomials_barycentric.h.
using BarycentricPolynomials< dim >::ThirdDerivativesType = std::array<HessianType, dim> |
Alias for polynomial third derivatives type.
Definition at line 237 of file polynomials_barycentric.h.
using BarycentricPolynomials< dim >::FourthDerivativesType = std::array<ThirdDerivativesType, dim> |
Alias for polynomial fourth derivatives type.
Definition at line 242 of file polynomials_barycentric.h.
BarycentricPolynomials< dim >::BarycentricPolynomials | ( | const std::vector< BarycentricPolynomial< dim > > & | polynomials | ) |
Constructor taking the polynomial degree
as input.
Definition at line 155 of file polynomials_barycentric.cc.
|
static |
Get the standard Lagrange basis for a specified degree.
Definition at line 59 of file polynomials_barycentric.cc.
const BarycentricPolynomial< dim > & BarycentricPolynomials< dim >::operator[] | ( | const std::size_t | i | ) | const |
Access operator.
Definition at line 732 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 198 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 256 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 267 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 280 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 295 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 311 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 329 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 339 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 367 of file polynomials_barycentric.cc.
|
overridevirtual |
Return the name of the space.
Implements ScalarPolynomialsBase< dim >.
Definition at line 358 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 349 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 258 of file scalar_polynomials_base.h.
|
inlineinherited |
Return the number of polynomials.
Definition at line 239 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 248 of file scalar_polynomials_base.h.
|
staticconstexpr |
Make the dimension available to the outside.
Definition at line 247 of file polynomials_barycentric.h.
|
protected |
Definition at line 343 of file polynomials_barycentric.h.
|
protected |
Definition at line 344 of file polynomials_barycentric.h.
|
protected |
Definition at line 345 of file polynomials_barycentric.h.
|
protected |
Definition at line 346 of file polynomials_barycentric.h.
|
protected |
Definition at line 347 of file polynomials_barycentric.h.
|
privateinherited |
The highest polynomial degree of this functions represented by this object.
Definition at line 227 of file scalar_polynomials_base.h.
|
privateinherited |
The number of polynomials represented by this object.
Definition at line 232 of file scalar_polynomials_base.h.