00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _VKARMAN_H
00014 #define _VKARMAN_H
00015
00016 #include "anmodel.h"
00017
00018
00019
00020
00021 class cAnmVonKarman : public cAnModel
00022 {
00023 public:
00024 cAnmVonKarman ( void );
00025 ~cAnmVonKarman ( 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 void DsaDerBMatrix ( int, sNodeCoord *, double *, double *,
00042 sNodeCoord *, sDerivCart *, double ** );
00043 void DsaDerBlMatrix ( int, sNodeCoord *, double *, sDerivCart *,
00044 double *, sNodeCoord *, sDerivCart *, double ** );
00045 void DsaDerBnlMatrix( int, sNodeCoord *, double *, sNodeCoord *,
00046 sDerivCart *, double ** );
00047 };
00048
00049 #endif
00050