00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _NLTIMBEAM_H
00014 #define _NLTIMBEAM_H
00015
00016 #include "anmodel.h"
00017
00018
00019
00020
00021 class cAnmNlTimBeam : public cAnModel
00022 {
00023 public:
00024 cAnmNlTimBeam ( void );
00025 ~cAnmNlTimBeam ( 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 MountBlMatrix ( int, sNodeCoord *, dShapeVal *,
00033 sDerivCart *, double *, double ** );
00034 void MountBnlMatrix( int, sNodeCoord *, dShapeVal *,
00035 sDerivCart *, double ** );
00036 void MountSMatrix ( sTensor *, double **);
00037 void VecTensor ( double *, sTensor * );
00038 void TensorVec ( sTensor *, double * );
00039 void GetSclLabels ( char ** );
00040 };
00041
00042 #endif
00043