geoelast.h

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

H
35
字号
#ifndef GEOELASTMAT_H#define GEOELASTMAT_H#include "iotools.h"#include "alias.h"struct matrix;struct vector;/**   Class geoelastmat defines elastic material model for geotechnical   purposes. This material has different elastic modulus for loading    and unloading. Loading is defined as decreasing of mean stress    (i.e. increasing pressure) and unloading is defined as increasing   of mean stress (i.e. decreasing pressure).      TKo*/class geoelastmat{ public:  geoelastmat (void);  ~geoelastmat (void);  void read (XFILE *in);  void matstiff (matrix &d, long ipp, long ido);  void nlstresses (long ipp, long im, long ido);  void updateval (long ipp, long im, long ido);    /// unloading modulus coefficient   double keu;};#endif

⌨️ 快捷键说明

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