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