lhsrhs.h

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

H
43
字号
#ifndef LHSRHS_H#define LHSRHS_H#include <stdio.h>#include "iotools.h"class lhsrhs{ public:  lhsrhs ();  ~lhsrhs ();  void alloc ();  double *give_lhs (long i);  double *give_tdlhs (long i);  double *give_stdlhs (long i);  double *give_rhs (long i);  void output (FILE *out,long lcid);  void initcond (XFILE *in);  void clean_lhs ();    ///  dimension of LHS and RHS  long ndof;  ///  number of loading cases  long nlc;  ///  array containing left hand sides  double *lhs;  ///  array containing time derivative of unknowns  double *tdlhs;  ///  array containing second time derivative of unknowns  double *stdlhs;  ///  array containing initial values of left hand sides  double *lhsi;  ///  array containing initial values of time derivative of unknowns  double *tdlhsi;  ///  array containing right hand sides  double *rhs;  ///  array containing eigenvalues  double *w;};#endif

⌨️ 快捷键说明

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