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

📄 outdiagm.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef OUTDIAGM_H#define OUTDIAGM_H#include <stdio.h>#include "galias.h"#include "xfile.h"#include "alias.h"class outdiagm{  public :  /// constructor  outdiagm();  /// destructor  ~outdiagm();  /// reads data from the input file  long read(XFILE *in);  /// prints data to the input file  long print(FILE *out);  /// prints header to the output diagram file    long print_header(FILE *out);  /// prints diagram to output diagram file  long printval(FILE *out, long lcid, double lambda, long istep, double *fi);  /// prints displacements  long print_displacements(FILE *out, long lcid, long idp);  /// prints strains  long print_strains(FILE *out, long lcid, long idp);  /// prints stresses  long print_stresses(FILE *out, long lcid, long idp);  /// prints forces  long print_forces(FILE *out, long idp, double *fi);  /// prints reactions  long print_reactions(FILE *out, long lcid, long idp);  /// prints others  long print_others(FILE *out, long lcid, long idp);  /// number of printed unknowns  long npun;  /// print step i.e. printout at every pstep-th step  long pstep;  /// pid is node or ipp flag  nodip *nif;  /// point id  long *pid;  /// element id  long *eid;  /// coordinates of selected point   double x, y, z;  /// order of integration point on element  long *ipeid;  /// array of type of printed unknowns  prunk *pu;  /// indeces of pu components  long *ipu;};#endif

⌨️ 快捷键说明

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