timeswmat.h

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

H
42
字号
#ifndef TIMESWMAT_H#define TIMESWMAT_H#include "iotools.h"#include "alias.h"struct matrix;struct vector;class  gfunct;/**  This class defines artificial material model which combines  several arbitrary material models for time dependent problems  These models are switched on and off depending on their time functions.      15.1.2004*/class timeswmat{ public:  timeswmat (void);  ~timeswmat (void);  void read(XFILE* in);  double give_actual_ym(long ipp, long im, long ido);  double give_actual_ft(long ipp, long im, long ido);  long givencompother (long ipp, long im);  long givencompeqother (long ipp, long im);  void initvalues(long ipp, long im, long ido);  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);  /// number of combined material models  long ncm;  ///  time functions for material switching  gfunct *gf;    };#endif

⌨️ 快捷键说明

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