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

📄 boermat.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef BOERMAT_H#define BOERMAT_H#include "iotools.h"#include "strretalg.h"struct matrix;struct vector;struct atsel;/**  This class implements Boer plasticity model, which is similar to Mohr-Coulomb but  the singularities on the cone edges are removed by the smoothing. Smoothing is  controled by the attribute n which has default valu 0.229.*/class boermat{ public:  boermat (void);  ~boermat (void);  void read (XFILE *in);  double yieldfunction (matrix &sig);  void deryieldfsigma (matrix &sig,matrix &dfds);  void derpotsigma (matrix &sig,matrix &dgds);  void matstiff (matrix &d, long ipp,long ido);  void nlstresses (long ipp,long im,long ido);  void nonloc_nlstresses (long ipp,long im,long ido);  void updateval (long ipp,long im,long ido);  void giveirrstrains (long ipp, long ido, vector &epsp);  double give_consparam (long ipp,long ido);  void changeparam (atsel &atm,vector &val);  ///  friction angle  double phi;  ///  cohesion  double c;  ///  dilation  double psi;  ///  exponent for smoothing  double n;      //  1 - hat  //  2 - prime  double alpha,alpha1,alpha2,beta,beta1,delta,a;  ///  stress return algorithm  strretalg sra;};#endif

⌨️ 快捷键说明

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