00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _DEGSHELL_H
00014 #define _DEGSHELL_H
00015
00016 #include "anmodel.h"
00017
00018
00019
00020
00021 class cAnmDegShell : public cAnModel
00022 {
00023 public:
00024 cAnmDegShell( void ) { }
00025 virtual ~cAnmDegShell( void ) { }
00026 int NumStrCmp ( void ) { return _iNumStrCmp; }
00027 void DofGlobDir ( int [6] );
00028 void CMatrix ( double, double *, double ** );
00029 void InvCMatrix ( double, double *, double ** );
00030 void NodalDispl ( int, sNodeDispl *, double * );
00031 };
00032
00033 #endif
00034
00035