Reference documentation for deal.II version 9.2.0
\(\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\}}\)
Public Member Functions | Private Attributes | List of all members
PolynomialsAdini< dim > Class Template Reference

#include <deal.II/base/polynomials_adini.h>

Inheritance diagram for PolynomialsAdini< dim >:
[legend]

Public Member Functions

 PolynomialsAdini ()
 
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
 
Tensor< 1, dim > compute_grad (const unsigned int i, const Point< dim > &p) const
 
Tensor< 2, dim > compute_grad_grad (const unsigned int i, const Point< dim > &p) const
 
std::string name () const override
 
virtual std::unique_ptr< ScalarPolynomialsBase< dim > > clone () const override
 
- Public Member Functions inherited from ScalarPolynomialsBase< dim >
 ScalarPolynomialsBase (const unsigned int deg, const unsigned int n_polynomials)
 
 ScalarPolynomialsBase (ScalarPolynomialsBase< dim > &&)=default
 
 ScalarPolynomialsBase (const ScalarPolynomialsBase< dim > &)=default
 
virtual ~ScalarPolynomialsBase ()=default
 
unsigned int n () const
 
unsigned int degree () const
 
virtual std::size_t memory_consumption () const
 

Private Attributes

Table< 2, doublecoef
 
Table< 2, doubledx
 
Table< 2, doubledy
 
Table< 2, doubledxx
 
Table< 2, doubledyy
 
Table< 2, doubledxy
 

Detailed Description

template<int dim>
class PolynomialsAdini< dim >

The cubic polynomial space for the Adini element

This space consists of the cubic space P3 augmented by the functions xy3 and x3y.

The basis of the space is chosen to match the node functionals of the Adini element.

Todo:
This polynomial space is implemented in 2D only and does not compute derivatives of order 3 or higher.
Author
Bärbel Janssen
Date
2007

Definition at line 46 of file polynomials_adini.h.

Constructor & Destructor Documentation

◆ PolynomialsAdini()

template<int dim>
PolynomialsAdini< dim >::PolynomialsAdini

Constructor for the polynomials of the described space

Definition at line 41 of file polynomials_adini.cc.

Member Function Documentation

◆ evaluate()

template<int dim>
void PolynomialsAdini< dim >::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
overridevirtual

Compute the value and the first and second derivatives of each polynomial at unit_point.

The size of the vectors must either be equal 0 or equal n(). In the first case, the function will not compute these values, i.e. you indicate what you want to have computed by resizing those vectors which you want filled.

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 polynomials.

Implements ScalarPolynomialsBase< dim >.

Definition at line 137 of file polynomials_adini.cc.

◆ compute_value()

template<int dim>
double PolynomialsAdini< dim >::compute_value ( const unsigned int  i,
const Point< dim > &  p 
) const

Compute the value of the ith polynomial at unit_point.

Consider using evaluate() instead.

Definition at line 192 of file polynomials_adini.cc.

◆ compute_grad()

template<int dim>
Tensor< 1, dim > PolynomialsAdini< dim >::compute_grad ( const unsigned int  i,
const Point< dim > &  p 
) const

Compute the gradient of the ith polynomial at unit_point.

Consider using evaluate() instead.

Definition at line 208 of file polynomials_adini.cc.

◆ compute_grad_grad()

template<int dim>
Tensor< 2, dim > PolynomialsAdini< dim >::compute_grad_grad ( const unsigned int  i,
const Point< dim > &  p 
) const

Compute the second derivative (grad_grad) of the ith polynomial at unit_point.

Consider using evaluate() instead.

Definition at line 232 of file polynomials_adini.cc.

◆ name()

template<int dim>
std::string PolynomialsAdini< dim >::name
inlineoverridevirtual

Return the name of the space, which is PolynomialsAdini.

Implements ScalarPolynomialsBase< dim >.

Definition at line 155 of file polynomials_adini.h.

◆ clone()

template<int dim>
std::unique_ptr< ScalarPolynomialsBase< dim > > PolynomialsAdini< dim >::clone
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 261 of file polynomials_adini.cc.

Member Data Documentation

◆ coef

template<int dim>
Table<2, double> PolynomialsAdini< dim >::coef
private

Store the coefficients of the polynomials in the order \(1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\)

Definition at line 118 of file polynomials_adini.h.

◆ dx

template<int dim>
Table<2, double> PolynomialsAdini< dim >::dx
private

Store the coefficients of the x-derivative of the polynomials in the order \(1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\)

Definition at line 124 of file polynomials_adini.h.

◆ dy

template<int dim>
Table<2, double> PolynomialsAdini< dim >::dy
private

Store the coefficients of the y-derivative of the polynomials in the order \(1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\)

Definition at line 130 of file polynomials_adini.h.

◆ dxx

template<int dim>
Table<2, double> PolynomialsAdini< dim >::dxx
private

Store the coefficients of the second x-derivative of the polynomials in the order \(1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\)

Definition at line 136 of file polynomials_adini.h.

◆ dyy

template<int dim>
Table<2, double> PolynomialsAdini< dim >::dyy
private

Store the coefficients of the second y-derivative of the polynomials in the order \(1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\)

Definition at line 142 of file polynomials_adini.h.

◆ dxy

template<int dim>
Table<2, double> PolynomialsAdini< dim >::dxy
private

Store the coefficients of the second mixed derivative of the polynomials in the order \(1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\)

Definition at line 148 of file polynomials_adini.h.


The documentation for this class was generated from the following files: