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

📄 elsurfload.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef ELSURFLOAD_H#define ELSURFLOAD_H#include "../../GEFEL/siftop.h"#include "../SRC/alias.h"#include <stdio.h>/**  This class is used for element surface load in the mechprep preprocessor.  The load is defined on the surfaces on given elements and   it can be defined in the global or local coordinate system of the given surface.*/class elsurfload{  public :   elsurfload();   ~elsurfload();   long read(FILE *in, long lc);   long nlc;   ///< load case number   long nsurf; ///< number of surfaces on given elements   long ndir;  ///< number of load directions   long *lgcs; ///< global(1)/local(2) coordinate system indicator for each surface on element   double *f;  ///< array with load values  };#endif

⌨️ 快捷键说明

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