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

📄 dloadpd.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef DLOADPD_H#define DLOADPD_H#include <stdio.h>#include <stdlib.h>#include <math.h>#include "iotools.h"#include "../../GEFEL/PARSER/parser.h"#include "../../GEFEL/PARSER/equ.h"/**  This class defines dynamical prescribed displacements*/class dloadpd{  public:   double ampl;   ///< amplitude value   char   expr[256];  ///< string with the function expression   Equation *eq;  ///< parser pointer   variable *var;  ///< pointer to the expression variable	 dloadpd();	 ~dloadpd();   long read(XFILE *in);   double getval(double t);};#endif

⌨️ 快捷键说明

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