00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _THINPLT_H
00014 #define _THINPLT_H
00015
00016 #include "plate.h"
00017
00018
00019
00020
00021 class cAnmThinPlate : public cAnmPlate
00022 {
00023 public:
00024 cAnmThinPlate( void );
00025 ~cAnmThinPlate( void ) { }
00026 void CMatrix ( double, double *, double ** );
00027 void InvCMatrix ( double, double *, double ** );
00028 void ThermalStrain( double, double, double, double * );
00029 void VecTensor ( double *, sTensor * );
00030 void TensorVec ( sTensor *, double * );
00031 void GetSclLabels ( char ** );
00032 };
00033
00034 #endif
00035