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

📄 strretalg.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef STRRETALG_H#define STRRETALG_H#include "iotools.h"#include "alias.h"/**   class defines type of stress return algorithm   it contains all necessary informations about selected algorithm      JK*/class strretalg{ public:  strretalg ();  ~strretalg ();  void read (XFILE *in);  stressretalgtype give_tsra ();  long give_ni ();  double give_err ();    ///  type of stress return algorithm  stressretalgtype tsra;  ///  computer zero  double zero;  ///  maximum number of iterations  long ni;  ///  required accuracy  double err;};#endif

⌨️ 快捷键说明

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