00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _WINKLER_H
00014 #define _WINKLER_H
00015
00016 #include "anmodel.h"
00017
00018
00019
00020
00021 class cAnmWinkler : public cAnModel
00022 {
00023 public:
00024 cAnmWinkler ( void );
00025 ~cAnmWinkler ( 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 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
00038
00039
00040 class cAnmWinkler2D : public cAnModel
00041 {
00042 public:
00043 cAnmWinkler2D( void );
00044 ~cAnmWinkler2D( void ) { }
00045 void CMatrix ( double, double *, double ** );
00046 void InvCMatrix ( double, double *, double ** );
00047 void DofGlobDir ( int [6] );
00048 void NodalDispl ( int, sNodeDispl *, double * );
00049 void MountBMatrix ( int, sNodeCoord *, dShapeVal *,
00050 sDerivCart *, double *, double ** );
00051 void VecTensor ( double *, sTensor * );
00052 void TensorVec ( sTensor *, double * );
00053 void GetSclLabels ( char ** );
00054 };
00055
00056 #endif
00057