00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _PPSTRESS_H
00014 #define _PPSTRESS_H
00015
00016 #include "anmpplan.h"
00017
00018
00019
00020
00021 class cPolarPlaneStress : public cAnmPolarPlane
00022 {
00023 public:
00024 cPolarPlaneStress ( void );
00025 ~cPolarPlaneStress ( void ) { }
00026 void CMatrix ( double, double *, double ** );
00027 void InvCMatrix ( double, double *, double ** ) { }
00028 void DofGlobDir ( int[6] );
00029 void MountBMatrix ( int, sNodeCoord *, dShapeVal *, sDerivCart *,
00030 double *, double** );
00031 void VecTensor ( double *, sTensor * );
00032 void TensorVec ( sTensor *, double * );
00033 void GetSclLabels ( char ** );
00034 };
00035
00036
00037 #endif
00038