seismtool.h

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

H
44
字号
#ifndef SEISMTOOL_H#define SEISMTOOL_H#include "iotools.h"#include "alias.h"#include "genfile.h"/**   class seismtool contains tools used in seismic analysis      JK, 21.8.2005*/class seismtool{ public:  seismtool (void);  ~seismtool (void);  void read (XFILE *in);  void seisminit (double *seism);  void assemble (double *rhs,double time);  void assemble (double *v,double *w);      ///  number of seismic acceleration components  long nsac;  ///  directions of seismic loads  dirdynload *direction;  ///  array containing components of right hand side  double *seism;    ///  amplitude function or response spectrum  ///  gf describes amplitude functions depending on time in case of step-by-step integration methods  ///  gf describes response spectrum depending on periods of structure in case of response spectrum analysis  gfunct *gf;};#endif

⌨️ 快捷键说明

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