00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef ElasticCrossAnisotropic_h
00029 #define ElasticCrossAnisotropic_h
00030
00031
00032
00033
00034
00035 #include <Matrix.h>
00036 #include <Vector.h>
00037 #include <Tensor.h>
00038 #include <stresst.h>
00039 #include <straint.h>
00040
00041 #include <NDMaterial.h>
00042
00043 class ElasticCrossAnisotropic : public NDMaterial
00044 {
00045 public:
00046 ElasticCrossAnisotropic(int tag,
00047 double Ehp,
00048 double Evp,
00049 double nuhvp,
00050 double nuhhp,
00051 double Ghvp,
00052 double rhop = 0.0);
00053 ElasticCrossAnisotropic ();
00054 ~ElasticCrossAnisotropic ();
00055
00056 const char *getClassType(void) const {return "ElasticCrossAnisotropic";};
00057
00058 double getrho ();
00059 double getMatParameter(int MatParameterID);
00060
00061 int setTrialStrain (const Tensor &v);
00062 int setTrialStrain (const Tensor &v, const Tensor &r);
00063 int setTrialStrainIncr (const Tensor &v);
00064 int setTrialStrainIncr (const Tensor &v, const Tensor &r);
00065
00066 const Tensor &getTangentTensor (void);
00067 const stresstensor& getStressTensor (void);
00068 const straintensor& getStrainTensor (void);
00069
00070 int commitState (void);
00071 int revertToLastCommit (void);
00072 int revertToStart (void);
00073
00074 NDMaterial *getCopy (void);
00075 NDMaterial *getCopy (const char *type);
00076 const char *getType (void) const;
00077
00078 void Print(OPS_Stream &s, int flag = 0);
00079
00080 int sendSelf(int commitTag, Channel &theChannel);
00081 int recvSelf(int commitTag, Channel &theChannel, FEM_ObjectBroker &theBroker);
00082
00083 protected:
00084
00085 private:
00086 static stresstensor Stress;
00087 static Tensor Dt;
00088 straintensor Strain;
00089
00090
00091
00092 double Eh;
00093 double Ev;
00094 double nuhv;
00095 double nuhh;
00096 double Ghv;
00097 double rho;
00098 };
00099
00100 #endif
00101