dloadpd.h
来自「Finite element program for mechanical pr」· C头文件 代码 · 共 30 行
H
30 行
#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 + =
减小字号Ctrl + -
显示快捷键?