00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _PLNSTRAIN_H
00014 #define _PLNSTRAIN_H
00015
00016 #include "anmplane.h"
00017
00018
00019
00020
00021 class cAnmPlaneStrain : public cAnmPlane
00022 {
00023 public:
00024 cAnmPlaneStrain ( void );
00025 ~cAnmPlaneStrain ( 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 ITensor4 ( double * );
00038 void ITensor2 ( double * );
00039 void VecTensor ( double *, sTensor * );
00040 void TensorVec ( sTensor *, double * );
00041 void ComplianceMatrix( double **, double *, double * );
00042 void GetSclLabels ( char ** );
00043 int GetNumPrincVals ( void ) { return 4; }
00044 void GetPrincLabels ( char ** );
00045 void GetPrincVals ( sTensor *, double * );
00046 void DsaDerBlMatrix ( int, sNodeCoord *, double *, sDerivCart *,
00047 double *, sNodeCoord *, sDerivCart *, double ** );
00048 };
00049
00050 #endif
00051