Collecting the data of a 3D shape function in one class. More...
#include <shapeFunction3d.hh>

Public Member Functions | |
| const Real * | abscissas (uint i) const |
| Returns the abscissas of the quadrature rule and the shape functions. | |
| void | abscissas (uint i, const Real *value) |
| Sets the abscissas of the quadrature rule and the shape functions. | |
| uint | n (uint i) const |
| Returns number of shape functions. | |
| void | n (uint i, uint value) |
| Sets the number of shape functions. | |
| uint | nq (uint i) const |
| Returns number of quadratur points. | |
| void | nq (uint i, uint value) |
| Sets the number of quadratur points. | |
| ShapeFunction3D () | |
| void | T (const concepts::TMatrixBase< F > *T) |
| Sets the T matrix. | |
| const concepts::TMatrixBase< F > * | T () const |
| Returns the T matrix. | |
| void | values (uint i, const Real *value) |
| Sets the values of the shape functions. | |
| const Real * | values (uint i) const |
| Returns the values of the shape functions. | |
| void | weights (uint i, const Real *value) |
| Sets the weights of the quadrature rule. | |
| const Real * | weights (uint i) const |
| Returns the weights of the quadrature rule. | |
Private Attributes | |
| const Real * | abscissas_ [3] |
| int | n_ [3] |
| int | nq_ [3] |
| const concepts::TMatrixBase< F > * | T_ |
| const F * | values_ [3] |
| const Real * | weights_ [3] |
Collecting the data of a 3D shape function in one class.
This class just collects all the data for a 3D shape function: it just holds pointers to the real data.
Definition at line 23 of file shapeFunction3d.hh.
| hp3D::ShapeFunction3D< F >::ShapeFunction3D | ( | ) |
| const Real* hp3D::ShapeFunction3D< F >::abscissas | ( | uint | i | ) | const [inline] |
Returns the abscissas of the quadrature rule and the shape functions.
Definition at line 61 of file shapeFunction3d.hh.
| void hp3D::ShapeFunction3D< F >::abscissas | ( | uint | i, |
| const Real * | value | ||
| ) | [inline] |
Sets the abscissas of the quadrature rule and the shape functions.
Definition at line 66 of file shapeFunction3d.hh.
| void hp3D::ShapeFunction3D< F >::n | ( | uint | i, |
| uint | value | ||
| ) | [inline] |
Sets the number of shape functions.
Definition at line 33 of file shapeFunction3d.hh.
| uint hp3D::ShapeFunction3D< F >::n | ( | uint | i | ) | const [inline] |
Returns number of shape functions.
Definition at line 28 of file shapeFunction3d.hh.
| void hp3D::ShapeFunction3D< F >::nq | ( | uint | i, |
| uint | value | ||
| ) | [inline] |
Sets the number of quadratur points.
Definition at line 44 of file shapeFunction3d.hh.
| uint hp3D::ShapeFunction3D< F >::nq | ( | uint | i | ) | const [inline] |
Returns number of quadratur points.
Definition at line 39 of file shapeFunction3d.hh.
| const concepts::TMatrixBase<F>* hp3D::ShapeFunction3D< F >::T | ( | ) | const [inline] |
Returns the T matrix.
Definition at line 83 of file shapeFunction3d.hh.
| void hp3D::ShapeFunction3D< F >::T | ( | const concepts::TMatrixBase< F > * | T | ) | [inline] |
Sets the T matrix.
Definition at line 87 of file shapeFunction3d.hh.

| const Real* hp3D::ShapeFunction3D< F >::values | ( | uint | i | ) | const [inline] |
Returns the values of the shape functions.
Definition at line 50 of file shapeFunction3d.hh.
| void hp3D::ShapeFunction3D< F >::values | ( | uint | i, |
| const Real * | value | ||
| ) | [inline] |
Sets the values of the shape functions.
Definition at line 55 of file shapeFunction3d.hh.
| void hp3D::ShapeFunction3D< F >::weights | ( | uint | i, |
| const Real * | value | ||
| ) | [inline] |
Sets the weights of the quadrature rule.
Definition at line 77 of file shapeFunction3d.hh.
| const Real* hp3D::ShapeFunction3D< F >::weights | ( | uint | i | ) | const [inline] |
Returns the weights of the quadrature rule.
Definition at line 72 of file shapeFunction3d.hh.
const Real* hp3D::ShapeFunction3D< F >::abscissas_[3] [private] |
Definition at line 91 of file shapeFunction3d.hh.
int hp3D::ShapeFunction3D< F >::n_[3] [private] |
Definition at line 89 of file shapeFunction3d.hh.
int hp3D::ShapeFunction3D< F >::nq_[3] [private] |
Definition at line 89 of file shapeFunction3d.hh.
const concepts::TMatrixBase<F>* hp3D::ShapeFunction3D< F >::T_ [private] |
Definition at line 92 of file shapeFunction3d.hh.
const F* hp3D::ShapeFunction3D< F >::values_[3] [private] |
Definition at line 90 of file shapeFunction3d.hh.
const Real * hp3D::ShapeFunction3D< F >::weights_[3] [private] |
Definition at line 91 of file shapeFunction3d.hh.