00001 // ------------------------------------------------------------------------- 00002 // ElcParCo.h - This header file contains methods for parametric condensed 00003 // finite element classes. 00004 // ------------------------------------------------------------------------- 00005 // 00006 // $Author: joaquim $ 00007 // $Revision: 1.2 $ 00008 // $Date: 1998/02/16 20:21:11 $ 00009 // $State: Exp $ 00010 // 00011 // ------------------------------------------------------------------------- 00012 00013 #ifndef _ELCPARAMCONDSD_H 00014 #define _ELCPARAMCONDSD_H 00015 00016 #include "gbldefs.h" 00017 #include "elcparam.h" 00018 00019 00020 // ------------------------------------------------------------------------- 00021 // Definition of a Parametric Condensed Element Class: 00022 // 00023 class cElcParamCondsd : public cElcParam 00024 { 00025 public: 00026 cElcParamCondsd( eShapeType ); 00027 virtual ~cElcParamCondsd( void ); 00028 void Stiffness ( double * ); 00029 int InternalForce ( double * ); 00030 void CalcIntPtStress( void ); 00031 }; 00032 00033 #endif 00034