contactmat.h
来自「Finite element program for mechanical pr」· C头文件 代码 · 共 40 行
H
40 行
#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 + =
减小字号Ctrl + -
显示快捷键?