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

📄 graphmat.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef GRAPHMAT_H#define GRAPHMAT_H#include "iotools.h"#include "alias.h"struct matrix;class Equation;class tablefunct;/**  This class defines special type of material model which is  used for the spring support with nonlinear stiffness. The  constitutive equation is described with force/displacement  diagram. The diagram can be given by the table or by the  expression written to the string which is parsed. The several  equations for the different ranges can be given.*/class graphmat{  public :   graphmat(void);   ~graphmat(void);   long read (XFILE *in);   void matstiff (matrix &d,long ipp);   void nlstresses (long ipp);   /// type of graph   graphtype gt;   /// number of function   long numf;   /// stiffness for linear elastic material   double k;   /// array of functions of graph (displacement-force graph)   Equation **eq;   /// array of functions of graph (displacement-stiffness graph)   Equation **deq;   /// array of limit values for each function   double   *limval;   /// table of values of graph   tablefunct *tab;};#endif

⌨️ 快捷键说明

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