欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

loadcase.h

Finite element program for mechanical problem. It can solve various problem in solid problem
H
字号:
#ifndef LOADCASE_H#define LOADCASE_H#include "iotools.h"class loadn;class loadel;struct ivector;/**   class loadcase defines load cases in static problems      JK*/class loadcase{ public:  loadcase (void);  ~loadcase (void);  void read (XFILE *in);  void assemble (long lcid,double *rhs,double scale);  void compute_reactions (long lcid);    ///  number of loaded nodes  long nln;  ///  number of loaded elements  long nle;  ///  number of prescribed displacements  long npd;  ///  number of prescribed temperature changes  long npt;    ///  presence of temperature changes  long tempchang;  //  loaded nodes  loadn *lon;  //  loaded elements  loadel *loe;  //  prescribed displacements  double *pd;  //  prescribed temperature changes  double *pt;  };#endif

⌨️ 快捷键说明

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