eigvalsol.h

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

H
51
字号
#ifndef EIGVALSOL_H#define EIGVALSOL_H#include <stdio.h>#include "alias.h"#include "galias.h"#include "iotools.h"/**   class eigvalsol defines solver of eigenvalues and eigenvectors      JK, 20.8.2005*/class eigvalsol{ public:    eigvalsol (void);  ~eigvalsol (void);  void read (XFILE *in);  void print (FILE *out);      ///  type of solver of eigenvalues and eigenvectors  eigensolver teigsol;  ///  number of required eigenvectors  long neigv;  ///  number of vectors used in computation  long nev;  ///  maximum number of iterations  long nies;  ///  number of performed iterations  long anies;  ///  required error  double erres;  ///  attained error  double aerres;  ///  maximum number of iteration in Jacobi' method  long nijmr;  ///  number of thresholds in Jacobi' method  long njacthr;  ///  array containing thresholds in Jacobi' method  double *jacthr;};#endif

⌨️ 快捷键说明

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