⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 beam2d.hxx

📁 不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.
💻 HXX
字号:
//   *********************
//   *** CLASS BEAM 2D ***
//   *********************


#include "element.hxx"


class Beam2D : public Element
   // This class implements a 2-dimensional Euler-Bernoulli beam element.
{
   private :
      double        length ;
      double        pitch ;
      FloatMatrix*  rotationMatrix ;

   public :
      Beam2D (int,Domain*) ;                       // constructor
      ~Beam2D ()  { delete rotationMatrix ;}       // destructor

      FloatMatrix*  ComputeBmatrixAt (GaussPoint*) ;
      FloatMatrix*  computeConstitutiveMatrix () ;
      void          computeGaussPoints () ;
      FloatMatrix*  computeStiffnessMatrix () ;
      FloatArray*   computeStrainVector (GaussPoint*,TimeStep*) ;
      double        computeVolumeAround (GaussPoint*) ;
      double        giveLength () ;
      double        givePitch () ;
      FloatMatrix*  giveRotationMatrix () ;
} ;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -