00001 // ------------------------------------------------------------------------- 00002 // gdcm.h - This header file contains the definition of the class to trace 00003 // the equilibrium path of nonlinear structures by using the 00004 // Generalized Displacement Control Method. 00005 // ------------------------------------------------------------------------- 00006 // 00007 // $Author: evandro $ 00008 // $Revision: 1.3 $ 00009 // $Date: 1999/04/12 14:57:37 $ 00010 // $State: Exp $ 00011 // 00012 // ------------------------------------------------------------------------- 00013 00014 #ifndef _GDCM_H 00015 #define _GDCM_H 00016 00017 #include "path.h" 00018 00019 // ------------------------------------------------------------------------- 00020 // Generalized Displacement Control class: 00021 // 00022 class cPathGDCM : public cPath 00023 { 00024 public: 00025 cPathGDCM (void); 00026 ~cPathGDCM (void) { } 00027 double IncLoadFac(cVector &, cVector &, cVector &); 00028 }; 00029 00030 #endif