creepdam.h

来自「Finite element program for mechanical pr」· C头文件 代码 · 共 38 行

H
38
字号
#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 + =
减小字号Ctrl + -
显示快捷键?