elastgmat3d.h
来自「Finite element program for mechanical pr」· C头文件 代码 · 共 32 行
H
32 行
#ifndef ELASTGMAT3D_H#define ELASTGMAT3D_H#include<stdio.h>struct matrix;/** class elastgmat3d defines elastic fully anisotropic material model JK*/class elastgmat3d{ public: elastgmat3d (void); ~elastgmat3d (void); void read (FILE *in); void matstiff (matrix &d); void elmatstiff (matrix &d); /// stiffness coefficients double d11,d12,d13,d14,d15,d16; double d22,d23,d24,d25,d26; double d33,d34,d35,d36; double d44,d45,d46; double d55,d56; double d66;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?