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

📄 contactmat.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef CONTACTMAT_H#define CONTACTMAT_H#include "alias.h"#include "iotools.h"struct matrix;struct vector;struct atsel;/**   class contactmat defines material for contact problems      JK, 11.6.2006*/class contactmat{ public:  contactmat (void);  ~contactmat (void);  void read (XFILE *in);  void matstiff (matrix &d,long ipp);  void nlstresses (long ipp);  void changeparam (atsel &atm,vector &val);    ///  stiffness along slip  double slip;  ///  stiffness orthogonal to slip  double normal;  ///  limit force in slip direction  double limits;  ///  limit force in normal direction  double limitn;};#endif

⌨️ 快捷键说明

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