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