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