MFEM v2.0
|
Class for refined linear FE on interval. More...
#include <fe.hpp>
Public Member Functions | |
RefinedLinear1DFiniteElement () | |
Construct a quadratic FE on interval. | |
virtual void | CalcShape (const IntegrationPoint &ip, Vector &shape) const |
virtual void | CalcDShape (const IntegrationPoint &ip, DenseMatrix &dshape) const |
RefinedLinear1DFiniteElement::RefinedLinear1DFiniteElement | ( | ) |
Construct a quadratic FE on interval.
Definition at line 3597 of file fe.cpp.
References IntegrationRule::IntPoint(), FiniteElement::Nodes, and IntegrationPoint::x.
void RefinedLinear1DFiniteElement::CalcDShape | ( | const IntegrationPoint & | ip, |
DenseMatrix & | dshape | ||
) | const [virtual] |
virtual function which evaluates the derivatives of all shape functions at a given point ip and stores them in the matrix dshape (Dof x Dim) (3 x 1) so that each row contains the derivative of one shape function
Implements FiniteElement.
Definition at line 3621 of file fe.cpp.
References IntegrationPoint::x.
void RefinedLinear1DFiniteElement::CalcShape | ( | const IntegrationPoint & | ip, |
Vector & | shape | ||
) | const [virtual] |
virtual function which evaluates the values of all shape functions at a given point ip and stores them in the vector shape of dimension Dof (3)
Implements FiniteElement.
Definition at line 3605 of file fe.cpp.
References IntegrationPoint::x.