00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _PLNSTRESS_H
00014 #define _PLNSTRESS_H
00015
00016 #include "anmplane.h"
00017
00018
00019
00020
00021 class cAnmPlaneStress : public cAnmPlane
00022 {
00023 public:
00024 cAnmPlaneStress ( void );
00025 ~cAnmPlaneStress ( 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 void MountBMatrix ( int, sNodeCoord*, dShapeVal*, sDerivCart*,
00031 double *, double** );
00032 void MountBlMatrix ( int, sNodeCoord *, dShapeVal *, sDerivCart *,
00033 double *, double ** );
00034 void MountBnlMatrix ( int, sNodeCoord *, dShapeVal *, sDerivCart *,
00035 double ** );
00036 void MountSMatrix ( sTensor *, double ** );
00037 void VecTensor ( double *, sTensor * );
00038 void TensorVec ( sTensor *, double * );
00039 void PrincStress ( sTensor*, sPrincStr*, sPrincStrVec*, double* );
00040 void ComplianceMatrix( double **, double *, double * );
00041 void GetSclLabels ( char ** );
00042 int GetNumPrincVals ( void ) { return 3; }
00043 void GetPrincLabels ( char ** );
00044 void GetPrincVals ( sTensor *, double * );
00045 void DsaDerBlMatrix ( int, sNodeCoord *, double *, sDerivCart *,
00046 double *, sNodeCoord *, sDerivCart *, double ** );
00047 };
00048
00049
00050 #endif
00051