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

📄 dloadn.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef DLOADN_H#define DLOADN_H#include <stdio.h>#include "iotools.h"#include "genfile.h"/**  This class defines dynamical nodal load or the load which is the function of time or displacement.  The load may be described with constant values, expression defined by the string or set of strings and  finally it may be described with table.*/class dloadn{ public:  dloadn();  ~dloadn();  long read(XFILE *in);  double getval(double t, long id);  long read_prop(FILE *in, long ndofn, long lc);  long print_prop(FILE *out, long ndofn);  ///  type of time function  generalfunct tfunc;  ///  number of loaded node  long idn;  /// number of directions  long ndir;  /// number of expression sets  long neqs;  /// load case number  long nlc;  ///  components of load or limits of intervals for set of parsers  double *f;  ///  array with the strings containing expressions  char  **func;  ///  parser binary trees with expressions  Equation **eq;  ///  array with pointers to the expression variables  variable **var;  ///  function defined by table  tablefunct *tabf;};#endif

⌨️ 快捷键说明

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