📄 crsec3dbeam.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -