From 386f08a45cb24128bf9d02476d7a813da6f718ea Mon Sep 17 00:00:00 2001 From: renchao_lu <renchao.lu@gmail.com> Date: Fri, 6 Sep 2019 12:22:18 +0200 Subject: [PATCH] [MatLib/MPL] Add decay_rate in the list of property type. --- MaterialLib/MPL/PropertyType.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/MaterialLib/MPL/PropertyType.h b/MaterialLib/MPL/PropertyType.h index 7caa86f50d8..636b14b77c0 100644 --- a/MaterialLib/MPL/PropertyType.h +++ b/MaterialLib/MPL/PropertyType.h @@ -43,6 +43,8 @@ enum PropertyType : int critical_pressure, critical_temperature, compressibility, + /// used to specify decay rate of a substance. + decay_rate, density, drhodT, effective_stress, @@ -123,6 +125,10 @@ inline PropertyType convertStringToProperty(std::string const& inString) { return PropertyType::compressibility; } + if (boost::iequals(inString, "decay_rate")) + { + return PropertyType::decay_rate; + } if (boost::iequals(inString, "density")) { return PropertyType::density; -- GitLab