00001 // ------------------------------------------------------------------------- 00002 // nraphson.h - This header file contains the public data structure 00003 // definitions for the Newton-Raphson (load control) path 00004 // following method. 00005 // ------------------------------------------------------------------------- 00006 // 00007 // $Author: evandro $ 00008 // $Revision: 1.4 $ 00009 // $Date: 2000/04/05 15:26:03 $ 00010 // $State: Exp $ 00011 // 00012 // ------------------------------------------------------------------------- 00013 00014 #ifndef _NRAPHSON_H 00015 #define _NRAPHSON_H 00016 00017 #include "path.h" 00018 00019 // ------------------------------------------------------------------------- 00020 // Newton-Raphson Control class: 00021 // 00022 class cPathNR : public cPath 00023 { 00024 public: 00025 cPathNR(void); 00026 virtual ~cPathNR(void) { } 00027 void Solver (void); 00028 }; 00029 00030 #endif