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
00029
00030
00032
00033
00034 #ifndef elnp_Elastic_H
00035 #define elnp_Elastic_H
00036
00037 #include "ElasticState.h"
00038
00039
00040
00041
00042 class elnp_Elastic : public ElasticState
00043 {
00044 public:
00045
00046 elnp_Elastic(int kappa_in,
00047 int v_in,
00048 int K_c_in,
00049 int e0_in,
00050 const stresstensor& initialStress = zerostress,
00051 const straintensor& initialStrain = zerostrain);
00052
00053 ElasticState* newObj();
00054
00055 const BJtensor& getElasticStiffness(const MaterialParameter &MaterialParameter_in) const;
00056
00057 private:
00058
00059 double getkappa(const MaterialParameter &MaterialParameter_in) const;
00060 double getv(const MaterialParameter &MaterialParameter_in) const;
00061 double getK_c(const MaterialParameter &MaterialParameter_in) const;
00062 double gete0(const MaterialParameter &MaterialParameter_in) const;
00063
00064 private:
00065
00066 int kappa_index;
00067 int v_index;
00068 int K_c_index;
00069 int e0_index;
00070 };
00071
00072
00073 #endif
00074