crsec2dbeam.h

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

H
46
字号
#ifndef CRSEC2DBEAM_H#define CRSEC2DBEAM_H#include "iotools.h"struct vector;struct atsel;/**   class crsec2dbeam defines cross section for 2D beam elements      JK*/class crsec2dbeam{ public:  crsec2dbeam (void);  ~crsec2dbeam (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 iy;  ///  shear coefficient  double shearcoeff;  ///  height of the cross section  ///  it is used in analysis of layered beams  double t;    //  optional components  ///  density of material (necessary for dynamics)  double rho;};#endif

⌨️ 快捷键说明

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