NullPlasticMaterial.cppGo to the documentation of this file.00001 00002 #include "NullPlasticMaterial.h" 00003 #define CLASSTAG_NULL_PLASTIC_MAT -1 00004 00005 NullPlasticMaterial::NullPlasticMaterial() 00006 : PlasticHardeningMaterial(-1, CLASSTAG_NULL_PLASTIC_MAT) 00007 { 00008 } 00009 00010 NullPlasticMaterial::NullPlasticMaterial(int tag) 00011 : PlasticHardeningMaterial(tag, CLASSTAG_NULL_PLASTIC_MAT) 00012 { 00013 } 00014 00015 NullPlasticMaterial::~NullPlasticMaterial() 00016 { 00017 00018 } 00019 00020 00021 double NullPlasticMaterial::getTrialPlasticStiffness() 00022 { 00023 return 0; 00024 } 00025 00026 PlasticHardeningMaterial * NullPlasticMaterial::getCopy() 00027 { 00028 NullPlasticMaterial *nullPM = new NullPlasticMaterial(this->getTag()); 00029 return nullPM; 00030 } |