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

📄 mechbclc.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef MECHBCLC_H#define MECHBCLC_H#include "iotools.h"class inicd;class loadcase;class dloadcase;/**   class mechbclc      it is one of the 5 most important classes of the program   (probdesc, mechtop, mechmat, mechbclc, mechcrsec)      class mechbclc contains data about boundary conditions, load cases      JK, TK*/class mechbclc{ public:  mechbclc ();  ~mechbclc ();  void read (XFILE *in);  long readinic (XFILE *in);  void inicipval(void);  void alloc_sumcomp ();  void comp_sum (double *rhs);  void give_comp_sum (double *sum);  /// number of load cases  long nlc;  /// number of initcond  long nico;    ///  number of components of array sumcomp  long ncsum;  ///  array containing sums of components of load %vector in particular directions   double *sumcomp;    loadcase  *lc;  dloadcase *dlc;  inicd     *ico;};#endif

⌨️ 快捷键说明

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