MFEM v2.0
|
#include <fe.hpp>
Public Member Functions | |
NURBS3DFiniteElement (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 | shape_z |
Vector | dshape_x |
Vector | dshape_y |
Vector | dshape_z |
NURBS3DFiniteElement::NURBS3DFiniteElement | ( | int | p | ) | [inline] |
void NURBS3DFiniteElement::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 8661 of file fe.cpp.
References FiniteElement::Dof, dshape_x, dshape_y, dshape_z, NURBSFiniteElement::ijk, NURBSFiniteElement::kv, FiniteElement::Order, shape_x, shape_y, shape_z, u, NURBSFiniteElement::weights, IntegrationPoint::x, IntegrationPoint::y, and IntegrationPoint::z.
void NURBS3DFiniteElement::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 8637 of file fe.cpp.
References NURBSFiniteElement::ijk, NURBSFiniteElement::kv, FiniteElement::Order, shape_x, shape_y, shape_z, NURBSFiniteElement::weights, IntegrationPoint::x, IntegrationPoint::y, and IntegrationPoint::z.
Vector NURBS3DFiniteElement::dshape_x [mutable, protected] |
Definition at line 1767 of file fe.hpp.
Referenced by CalcDShape().
Vector NURBS3DFiniteElement::dshape_y [mutable, protected] |
Definition at line 1767 of file fe.hpp.
Referenced by CalcDShape().
Vector NURBS3DFiniteElement::dshape_z [mutable, protected] |
Definition at line 1767 of file fe.hpp.
Referenced by CalcDShape().
Vector NURBS3DFiniteElement::shape_x [mutable, protected] |
Definition at line 1767 of file fe.hpp.
Referenced by CalcDShape(), and CalcShape().
Vector NURBS3DFiniteElement::shape_y [mutable, protected] |
Definition at line 1767 of file fe.hpp.
Referenced by CalcDShape(), and CalcShape().
Vector NURBS3DFiniteElement::shape_z [mutable, protected] |
Definition at line 1767 of file fe.hpp.
Referenced by CalcDShape(), and CalcShape().
Vector NURBS3DFiniteElement::u [mutable, protected] |
Definition at line 1767 of file fe.hpp.
Referenced by CalcDShape().