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 Linear_Eij_H
00035 #define Linear_Eij_H
00036
00037 #include "TensorEvolution.h"
00038
00039 class Linear_Eij : public TensorEvolution
00040 {
00041 public:
00042
00043 Linear_Eij(int LinearFactor_index_in);
00044
00045 TensorEvolution* newObj();
00046
00047 const straintensor& Hij(const straintensor& plastic_flow, const stresstensor& Stre,
00048 const straintensor& Stra, const MaterialParameter& material_parameter);
00049
00050 private:
00051
00052 double getLinearFactor(const MaterialParameter& material_parameter) const;
00053
00054 private:
00055
00056 int LinearFactor_index;
00057 };
00058
00059
00060 #endif
00061