hardsoft.h
来自「Finite element program for mechanical pr」· C头文件 代码 · 共 50 行
H
50 行
#ifndef HARDSOFT_H#define HARDSOFT_H#include "iotools.h"#include "alias.h"struct matrix;struct vector;struct atsel;/** class defines type of hardening/softening JK, 8.8.2005*/class hardsoft{ public: hardsoft (); ~hardsoft (); void read (XFILE *in); void hvalues (matrix &sigt,matrix &dgds,vector &h); void dhdsigma (matrix &sigt,matrix &dgds,matrix &dgdsds,matrix &dhds); void dhdqpar (matrix &sigt,matrix &dgds,matrix &dgdsdq,matrix &dhdq); void dhdgamma (vector &dhdg); void changeparam (atsel &atm,vector &val); /// type of hardening/softening hardensoften ths; /// input variable to hardening/softening hsinputvar ivhs; /// limit for norm of plastic strain double epspu; /// limit for norm of plastic strain in tension double epsput; /// limit for norm of plastic strain in compression double epspuc; /// computer zero double zero; };#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?