00001 // ------------------------------------------------------------------------- 00002 // StabEES.h - This header file contains the public data structure 00003 // definitions for Stability point calculation by Enhanced 00004 // Extended System. 00005 // ------------------------------------------------------------------------- 00006 // 00007 // $Author: evandro $ 00008 // $Revision: 1.1 $ 00009 // $Date: 1999/04/12 14:45:14 $ 00010 // $State: Exp $ 00011 // 00012 // ------------------------------------------------------------------------- 00013 00014 #ifndef _STABESS_H 00015 #define _STABESS_H 00016 00017 #include "stabses.h" 00018 00019 // ------------------------------------------------------------------------- 00020 // Forward declarations: 00021 // 00022 class cVector; 00023 00024 // ------------------------------------------------------------------------- 00025 // Stability class: 00026 // 00027 class cStabEES : public cStabSES 00028 { 00029 public: 00030 cStabEES(void); 00031 ~cStabEES(void){ } 00032 void Solver (void); 00033 00034 protected: 00035 void DirecDeriv(int, double, cVector &, cVector &, cVector &, cVector &, 00036 cVector &, cVector &, cVector &, cVector &, cVector &, 00037 cVector &); 00038 }; 00039 00040 #endif