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

📄 hardsoft.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -