00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
#ifndef __itkFEMElement2DC0QuadraticTriangular_h
00019
#define __itkFEMElement2DC0QuadraticTriangular_h
00020
00021
#include "itkFEMElementStd.h"
00022
00023
namespace itk {
00024
namespace fem {
00025
00026
00027
00028
00033 class Element2DC0QuadraticTriangular :
public ElementStd<6,2>
00034 {
00035
typedef ElementStd<3,2> TemplatedParentClass;
00036 FEM_ABSTRACT_CLASS(
Element2DC0QuadraticTriangular,
TemplatedParentClass )
00037 public:
00038
00039
00040
00042
00043
00044
00045
00046 enum {
DefaultIntegrationOrder = 2 };
00047
00048
virtual void GetIntegrationPointAndWeight(
unsigned int i, VectorType& pt, Float& w,
unsigned int order)
const;
00049
00050
virtual unsigned int GetNumberOfIntegrationPoints(
unsigned int order)
const;
00051
00052
00053
00055
00056
00057
00058
00059
virtual VectorType
ShapeFunctions(
const VectorType& pt )
const;
00060
00061
virtual void ShapeFunctionDerivatives(
const VectorType& pt, MatrixType& shapeD )
const;
00062
00063
00064 virtual bool GetLocalFromGlobalCoordinates(
const VectorType&, VectorType& )
const
00065
{
00066
throw;
00067
return false;
00068 }
00069
00070
00071
00072
virtual Float
JacobianDeterminant(
const VectorType& pt,
const MatrixType* pJ = 0 )
const;
00073
virtual void JacobianInverse(
const VectorType& pt, MatrixType& invJ,
const MatrixType* pJ = 0 )
const;
00074
00078
#ifdef FEM_BUILD_VISUALIZATION
00079
void Draw(CDC* pDC,
Solution::ConstPointer sol)
const;
00080
#endif
00081
00082 };
00083
00084
00085
00086
00087 }}
00088
00089
#endif // #ifndef __itkFEMElement2DC0QuadraticTriangular_h