elasttime.h
来自「Finite element program for mechanical pr」· C头文件 代码 · 共 31 行
H
31 行
#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 + =
减小字号Ctrl + -
显示快捷键?