crsec3dbeam.h

来自「Finite element program for mechanical pr」· C头文件 代码 · 共 45 行

H
45
字号
#ifndef CRSEC3DBEAM_H#define CRSEC3DBEAM_H#include "iotools.h"#include "genfile.h"struct vector;struct atsel;/**   class crsec3dbeam defines cross section for 3D beam elements      JK*/class crsec3dbeam{ public:  crsec3dbeam (void);  ~crsec3dbeam (void);  void read (XFILE *in);  double give_area ();  void give_moments (double *i);  void give_shearcoeff (double *sc);  double give_density ();    void changeparam (atsel &atcs,vector &val);    //  necessary components for every problem type  ///  area of cross section of the beam  double a;  ///  moment of inertia of the cross section of the beam  double ix,iy,iz;  ///  shear coefficients  double shearcoeffy,shearcoeffz;  /// vector which determines local coordinate system on 3d beam element  vector lcs;  //  optional components  ///  density of material (necessary for dynamics)  double rho;};#endif

⌨️ 快捷键说明

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