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

📄 lhsrhs.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -