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 #ifndef VM_PF_H
00034 #define VM_PF_H
00035
00036 #include "PlasticFlow.h"
00037 #include <math.h>
00038
00039 class VM_PF : public PlasticFlow
00040 {
00041 public:
00042 VM_PF(int alpha_which = -1, int index_alpha_in = 0);
00043
00044 ~VM_PF();
00045
00046 PlasticFlow* newObj();
00047
00048 const straintensor& PlasticFlowTensor(const stresstensor& Stre,
00049 const straintensor& Stra,
00050 const MaterialParameter &MaterialParameter_in) const;
00051
00052 private:
00053
00054 const stresstensor& getalpha(const MaterialParameter &MaterialParameter_in) const;
00055
00056 private:
00057
00058 int alpha_which;
00059 int index_alpha;
00060
00061 static straintensor VMm;
00062 static stresstensor VMb;
00063 };
00064
00065
00066 #endif
00067