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

📄 auxdatout.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef AUXDATOUT_H#define AUXDATOUT_H#include <stdio.h>class auxdatout{ public:  auxdatout (void);  ~auxdatout (void);  void read (FILE *in);  void printin (FILE *out);  void print (FILE *out,long step,double lambda,long lcid);    //  number of nodes where displacements are printed  long nnoddispl;  //  array containing node numbers  long *noddispl;  //  number of elements where strains are printed  long nelemstra;  //  array containing element numbers  long *elemstra;  //  number of elements where stresses are printed  long nelemstre;  //  array containing element numbers  long *elemstre;  //  number of elements where parts of array other are printed  long nelemother;  //  array containing element numbers  long *elemother;  //  array containing numbers of segments from other array  long *elemnseg;  //  array containing initial and final indeces of printed segments  long **eleminit;  long **elemfin;};#endif

⌨️ 快捷键说明

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