#include <element.hh>
Public Types | |
enum | intFormType { ZERO , ONE , TWO , THREE } |
Public Member Functions | |
IntegrableElm (const concepts::EdgeNd &cell) | |
const concepts::Real3d | chi (const Real x) const |
Real | jacobianDeterminant (const Real x) const |
Computes the determinant of the Jacobian. | |
const concepts::QuadratureRule1d * | integration () const |
Returns the integration rule. | |
virtual bool | quadraturePoint (uint i, intPoint &p, intFormType form=ZERO, bool localCoord=false) const |
Static Public Member Functions | |
static concepts::QuadRuleFactory & | rule () |
Protected Attributes | |
const concepts::EdgeNd & | cell_ |
The cell. | |
std::unique_ptr< concepts::QuadratureRule1d > | int_ |
The integration rule. | |
Static Protected Attributes | |
static concepts::QuadRuleFactory | rule_ |
Class holding the quadrature rule and the cell of a 1D element.
Definition at line 34 of file element.hh.
|
inherited |
Integration form, which determines terms coming from integration over reference element
Definition at line 29 of file integral.hh.
|
inline |
Computes the element map. The reference element is [0,1].
Definition at line 40 of file element.hh.
|
inline |
Returns the integration rule.
Definition at line 51 of file element.hh.
|
inline |
Computes the determinant of the Jacobian.
Definition at line 45 of file element.hh.
|
virtual |
Delivers a quadrature point.
Quadrature point consists of coordinates (for evaluation of formulas) and intermediate data, consisting of the weight and term coming from mapping.
Returns false
, if the number of quadrature points is overstepped.
i | number of quadrature point |
intPoint | data given back |
form | Integration form |
localCoord | If true, local coordinates are returned. Else physical coordinates. |
Implements concepts::IntegrationCell.
|
inlinestatic |
Access to the quadrature rule, which is valid for all elements of this type (hp1D::IntegrableElm).
Change of the quadrature rule is put into practice for newly created elements and for already created elements by precomputing the integration points and shape functions on them.
Definition at line 62 of file element.hh.
|
protected |
The cell.
Definition at line 70 of file element.hh.
|
protected |
The integration rule.
Definition at line 72 of file element.hh.
|
staticprotected |
Definition at line 74 of file element.hh.