tloadcase.h

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

H
57
字号
#ifndef TLOADCASE_H#define TLOADCASE_H#include <stdio.h>#include "genfile.h"#include "alias.h"class dloadn;class dloadpd;class loadcase;/**   class tloadcase defines load cases for time dependent problems   (dynamic problems, creep problems, etc.)      JK, TKo, 3.6.2005*/class tloadcase{ public:  tloadcase (void);  ~tloadcase (void);  void read (FILE *in);  void assemble (long lcid,double *rhs,long n, double t);  void assemble (double *rhs, double *lhs);  void compute_reactions (long lcid);  void seisminit (double *seism);    ///  type of time load  timeload ttl;  ///  directions of seismic loads  dirdynload *direction;  //  number of subload cases  long nslc;    ///  number of loaded nodes  long nln;  ///  number of loaded elements  long nle;  ///  number of prescribed displacements  long npd;    dloadn  *lon;  dloadpd *pd;    //  subload cases  loadcase *slc;  //  time functions  gfunct *gf;  //  array for seismic loads  double *seism;};#endif

⌨️ 快捷键说明

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