surfload.h

来自「Finite element program for mechanical pr」· C头文件 代码 · 共 27 行

H
27
字号
#ifndef SURFLOAD_H#define SURFLOAD_H#include "../../GEFEL/siftop.h"#include "../SRC/alias.h"#include <stdio.h>/**  This class is used for surface load in the mechprep preprocessor.  The surface load is defined on the surface generated by a mesh generator and  it can be defined in the global or local coordinate system of the given surface.*/class surfload{  public :   surfload();   ~surfload();   long read(FILE *in, long lc);   long ndir; ///< number of load directions   long nlc;  ///< load case number   long lgcs; ///< global(1)/local(2) coordinate system indicator   double *f; ///< array with load values  };#endif

⌨️ 快捷键说明

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