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