Skip to content
Snippets Groups Projects
Commit 28c7f38d authored by Alexis Girault's avatar Alexis Girault
Browse files

BUG: Fix wrong check on Corotational femMethod


Its name should be "CLFEM" and not "Corotational" to return
the correct type.

Written-by: default avatarSreekanth Arikatla <sreekanth.arikatla@kitware.com>
parent 0692305e
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ ForceModelConfig::getForceModelType()
{
return ForceModelType::StVK;
}
else if (this->m_stringsOptionMap["femMethod"] == "Corotational")
else if (this->m_stringsOptionMap["femMethod"] == "CLFEM")
{
return ForceModelType::Corotational;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment