00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __itkFEMElement3DStrain_h
00019 #define __itkFEMElement3DStrain_h
00020
00021 #include "itkFEMElementBase.h"
00022 #include "itkFEMMaterialLinearElasticity.h"
00023
00024 namespace itk {
00025 namespace fem {
00026
00027
00028
00029
00044 template<class TBaseClass=Element>
00045 class Element3DStrain : public TBaseClass
00046 {
00047 FEM_ABSTRACT_CLASS(Element3DStrain,TBaseClass)
00048 public:
00049
00050
00051 typedef typename Superclass::Float Float;
00052 typedef typename Superclass::MatrixType MatrixType;
00053 typedef typename Superclass::VectorType VectorType;
00054
00058 virtual void Read( std::istream&, void* info );
00059
00063 virtual void Write( std::ostream& f ) const;
00064
00068 Element3DStrain ();
00069
00070
00071
00073
00074
00075
00076
00080 virtual void GetStrainDisplacementMatrix(MatrixType& B, const MatrixType& shapeDgl) const;
00081
00085 virtual void GetMaterialMatrix(MatrixType& D) const;
00086
00090 virtual unsigned int GetNumberOfDegreesOfFreedomPerNode( void ) const
00091 { return 3; }
00092
00093 public:
00094
00098 MaterialLinearElasticity::ConstPointer m_mat;
00099 virtual Material::ConstPointer GetMaterial(void) const { return m_mat; }
00100 virtual void SetMaterial(Material::ConstPointer mat_ ) { m_mat=dynamic_cast<const MaterialLinearElasticity*>(&*mat_); }
00101
00102 };
00103
00104
00105
00106
00107 #ifdef _MSC_VER
00108
00109
00110
00111
00112 static void Dummy( void );
00113 #endif // #ifdef _MSC_VER
00114
00115 }}
00116
00117 #ifndef ITK_MANUAL_INSTANTIATION
00118 #include "itkFEMElement3DStrain.txx"
00119 #endif
00120
00121 #endif // #ifndef __itkFEMElement3DStrain_h