00001 // ------------------------------------------------------------------------- 00002 // rsam.h - This header file contains the definition of the Refined 00003 // Semi-Analytical Method class for Design Sensitivity Analysis. 00004 // ------------------------------------------------------------------------- 00005 // 00006 // $Author: evandro $ 00007 // $Revision: 1.2 $ 00008 // $Date: 2000/04/04 22:57:38 $ 00009 // $State: Exp $ 00010 // 00011 // ------------------------------------------------------------------------- 00012 00013 #ifndef _RSAM_H 00014 #define _RSAM_H 00015 00016 #include "sam.h" 00017 00018 // ------------------------------------------------------------------------- 00019 00020 class cRSAMethod : public cSemiAnMethod 00021 { 00022 public: 00023 cRSAMethod (void); 00024 ~cRSAMethod (void); 00025 void DsaIntForce(cElement *, int, cNode **, sNodeCoord *, double *); 00026 void DsaStiffMat(cElement *, int, cNode **, sNodeCoord *, double *, 00027 double *); 00028 }; 00029 00030 #endif