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

📄 creepdam.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef CREEPDAM_H#define CREEPDAM_H#include <stdio.h>#include "alias.h"struct matrix;struct vectror;/**  This class defines artificial material model which combines  a creep model with damage model with a plastic model    Order of internal variables in the other array :  -----------------------------------------------  The first components of eqother array belong to creep model,  followed by the damage eqother components and  optionally followed by the thermisomatttime components  Exact order of the components depends on the used material   models.      15.1.2004*/class creepdam{ public:  creepdam (void);  ~creepdam (void);  void matstiff (matrix &d,long ipp,long im,long ido);  void nlstresses (long ipp, long im, long ido);  void updateval (long ipp, long im, long ido);  void initvalues (long ipp, long im, long ido);  double give_actual_ft (long ipp, long im, long ido);  };#endif

⌨️ 快捷键说明

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