00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _ANMAXISYM_H
00014 #define _ANMAXISYM_H
00015
00016 #include "anmplane.h"
00017
00018
00019
00020
00021 class cAxisym : public cAnmPlane
00022 {
00023 public:
00024 cAxisym ( void );
00025 ~cAxisym ( void ) { };
00026 void CMatrix ( double, double *, double ** );
00027 void InvCMatrix ( double, double *, double ** );
00028 void DofGlobDir ( int [6] );
00029 void ThermalStrain ( double, double, double, double * );
00030 double Rigidity ( double, int, sNodeCoord *, dShapeVal * );
00031 void MountBMatrix ( int, sNodeCoord *, dShapeVal *, sDerivCart *,
00032 double *, double ** );
00033 void MountBlMatrix ( int, sNodeCoord *, dShapeVal *, sDerivCart *,
00034 double *, double ** );
00035 void MountBnlMatrix ( int, sNodeCoord *, dShapeVal *, sDerivCart *,
00036 double ** );
00037 void MountSMatrix ( sTensor *, double ** );
00038 void VecTensor ( double *, sTensor * );
00039 void TensorVec ( sTensor *, double * );
00040 void ITensor4 ( double * );
00041 void ITensor2 ( double * );
00042 void PrincStrain ( sTensor *, sPrincStr *, sPrincStrVec *, double * );
00043 void GetSclLabels ( char ** );
00044 int GetNumPrincVals( void ) { return 4; }
00045 void GetPrincLabels ( char ** );
00046 void GetPrincVals ( sTensor *, double * );
00047 double DsaDerRig ( double, int, sNodeCoord *, double * );
00048 void DsaDerBMatrix ( int, sNodeCoord *, double *, double *,
00049 sNodeCoord *, sDerivCart *, double ** );
00050 void DsaDerBlMatrix ( int, sNodeCoord *, double *, sDerivCart *,
00051 double *, sNodeCoord *, sDerivCart *, double ** );
00052 void DsaDerBnlMatrix( int, sNodeCoord *, double *, sNodeCoord *,
00053 sDerivCart *, double ** );
00054 void DsaRigBodyVecs ( int, sNodeCoord *, sNodeCoord *, int *, int *,
00055 double **, double ** );
00056 void DsaRigBodyMat ( double ** );
00057 };
00058
00059 #endif