00001 // ------------------------------------------------------------------------- 00002 // DamNl.h - This header file contains the public data structure 00003 // definitions for the Nonlinear Damage constitutive model class 00004 // within FEMOOP. 00005 // ------------------------------------------------------------------------- 00006 // 00007 // $Author: joaquim $ 00008 // $Revision: 1.2 $ 00009 // $Date: 1998/02/16 20:21:11 $ 00010 // $State: Exp $ 00011 // 00012 // ------------------------------------------------------------------------- 00013 00014 #ifndef _DAMAGENONLINEAR_H 00015 #define _DAMAGENONLINEAR_H 00016 00017 #include "damage.h" 00018 00019 // ------------------------------------------------------------------------- 00020 // Nonlinear damage constitutive model class: 00021 00022 class cDamageNonlinear : public cDamage 00023 { 00024 public: 00025 cDamageNonlinear ( cIntPt *, cMaterial * ); 00026 ~cDamageNonlinear ( void ); 00027 00028 double TensileDamage ( double ); 00029 double CompressiveDamage( double ); 00030 00031 private: 00032 void GetMatData ( double *, double *, double *, double *, 00033 double *, double *, double * ); 00034 }; 00035 00036 #endif