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

📄 scaldamcc.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef SCALDAMCC_H#define SCALDAMCC_H#include "iotools.h"#include "alias.h"struct matrix;struct vector;class scaldamcc/**  This class defines scalar damage with crack closure material model.  The different type of norms for the computing parameters of  the damage function can be used.*//***/{ public:  scaldamcc (void);  ~scaldamcc (void);  void read (XFILE *in);  void damfuncpar(long ipp, vector &eps, vector &kappa);  double damfunction(long ipp, vector &kappa, vector &eps);  void matstiff (matrix &d,long ipp,long ido);  void nlstresses (long ipp,long im,long ido);  void updateval (long ipp,long im,long ido);  double epsefunction ();      ///  double k0;  ///  double at;  /// tensile strength  double bt;  ///  double ac;  /// strength at compression  double bc;  ///  double beta;  ///  double k;  /// function type for evaluation damage funtion parameter  paramf_type ft;};#endif

⌨️ 快捷键说明

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