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

📄 elasttime.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef ELASTTIME_H#define ELASTTIME_H#include "alias.h"struct matrix;/**   artificial material model for computation of elastic analysis by mtsolver   mtsolver solves slow mechanical problems (inertial forces are neglected)   this material model works only with one elastic material model      remark: in time dependent problems the array stress contains increments   of stress, not stress; stress components are located in the array eqother!      structure of eqother array of a elastic time material:   total stress components, previous total strains,      JK, 28.9.2004					*/class elasttime{ public:  elasttime (void);  ~elasttime (void);  void matstiff (matrix &d,long ipp,long im,long ido);  void nlstresses (long ipp,long im,long ido);  };#endif

⌨️ 快捷键说明

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