⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seismtool.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -