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

📄 dbcrs.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef DBCRS_H#define DBCRS_H#include <stdio.h>#include "../SRC/alias.h"class csec/**   Cross-section class   Created by Tomas Koudelka, koudelka@cml.fsv.cvut.cz*/{  public :   crsectype type;   long nprop;   ///< number of indeces   char **prop;  ///< array of strings with cross-section properties (cross-section indeces)   long *propu;  ///< array indicators of indeces which are used   long *ridx;   ///< array with renumbered used indeces   long npropu;  ///< counter used indeces this cross-section type   csec(void);   ~csec(void);   /// reading cross-section   long read(FILE *in);};class dbcrs/**   Cross-section database class   Created by Tomas Koudelka, koudelka@cml.fsv.cvut.cz*/{  public :   long numt; ///< number of cross-section entries   csec *crs; ///< array with cross-sections   dbcrs(void);   ~dbcrs(void);   /// searching cross-section with given type and index   long search_crs(crsectype ce, long ci);};#endif

⌨️ 快捷键说明

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