MFEM v2.0
|
#include <fe.hpp>
Public Member Functions | |
NURBS2DFiniteElement (int p) | |
virtual void | CalcShape (const IntegrationPoint &ip, Vector &shape) const |
virtual void | CalcDShape (const IntegrationPoint &ip, DenseMatrix &dshape) const |
Protected Attributes | |
Vector | u |
Vector | shape_x |
Vector | shape_y |
Vector | dshape_x |
Vector | dshape_y |
NURBS2DFiniteElement::NURBS2DFiniteElement | ( | int | p | ) | [inline] |
void NURBS2DFiniteElement::CalcDShape | ( | const IntegrationPoint & | ip, |
DenseMatrix & | dshape | ||
) | const [virtual] |
pure virtual function which evaluates the values of all partial derivatives of all shape functions at a given point ip and stores them in the matrix dshape (Dof x Dim) so that each row contains the derivatives of one shape function
Implements FiniteElement.
Definition at line 8602 of file fe.cpp.
References FiniteElement::Dof, dshape_x, dshape_y, NURBSFiniteElement::ijk, NURBSFiniteElement::kv, FiniteElement::Order, shape_x, shape_y, u, NURBSFiniteElement::weights, IntegrationPoint::x, and IntegrationPoint::y.
void NURBS2DFiniteElement::CalcShape | ( | const IntegrationPoint & | ip, |
Vector & | shape | ||
) | const [virtual] |
pure 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
Implements FiniteElement.
Definition at line 8583 of file fe.cpp.
References NURBSFiniteElement::ijk, NURBSFiniteElement::kv, FiniteElement::Order, shape_x, shape_y, NURBSFiniteElement::weights, IntegrationPoint::x, and IntegrationPoint::y.
Vector NURBS2DFiniteElement::dshape_x [mutable, protected] |
Definition at line 1751 of file fe.hpp.
Referenced by CalcDShape().
Vector NURBS2DFiniteElement::dshape_y [mutable, protected] |
Definition at line 1751 of file fe.hpp.
Referenced by CalcDShape().
Vector NURBS2DFiniteElement::shape_x [mutable, protected] |
Definition at line 1751 of file fe.hpp.
Referenced by CalcDShape(), and CalcShape().
Vector NURBS2DFiniteElement::shape_y [mutable, protected] |
Definition at line 1751 of file fe.hpp.
Referenced by CalcDShape(), and CalcShape().
Vector NURBS2DFiniteElement::u [mutable, protected] |
Definition at line 1751 of file fe.hpp.
Referenced by CalcDShape().