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

📄 maorder.h

📁 电力系统稀疏矩阵计算类,用法范例代码,包括三个目录,MALIB(类),MATEST(使用范例),INCLUDE(*.H),是我编写的电力系统能量管理系统基础类之一.
💻 H
字号:
#ifndef MAORDER
#define MAORDER 1
//************************************************************************
// maorder - matrix optimal order data 
//************************************************************************
struct maorderst
{
   int mastate_itm;               // mastate item number              
   int magmtrx_col;               // magmtrx column item           
   int magmtrx_cnt;               // number of magmtrx items          
   int magmtrx_itm;               // 1st magmtrx item                 
   int cmtrxcnt;                  // number of c-matrix items         
   int cmtrxitm;                  // 1st c-matrix item             
   double diag;                   // inverse of magmtrx diag element  
   union
   {                                
      int magmtrx_lastcol;          // last magmtrx item in column
      struct mastatest *mastatept;  // ptr to mastate item        
   } link;                          // multi-purpose linkage        

   struct
   {                         
      unsigned active    : 1;     //   active state              
      unsigned partial   : 1;     //   partial factorization     
      unsigned fastfbs   : 1;     //   fast forward-backward sub 
      unsigned spares    : 29;
   } stat;

   //修正PQ分解法  mdn  04-11-11
   double  diag1;
   //

} ;
#endif

⌨️ 快捷键说明

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