From c17dbecac0f395b48fc65b0c7dcc2ba4de1be271 Mon Sep 17 00:00:00 2001
From: Alvin Noe Ladines <ladinesalvinnoe@gmail.com>
Date: Wed, 16 Sep 2020 17:48:10 +0200
Subject: [PATCH] Minor fix to calculation method

---
 elasticparser/elastic_parser.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/elasticparser/elastic_parser.py b/elasticparser/elastic_parser.py
index daaeb62..67311ba 100644
--- a/elasticparser/elastic_parser.py
+++ b/elasticparser/elastic_parser.py
@@ -183,6 +183,6 @@ class ElasticParserInterface:
         sec_workflow = self.archive.m_create(Workflow)
         sec_workflow.workflow_type = 'elastic'
         sec_elastic = sec_workflow.m_create(Elastic)
-        sec_elastic.elastic_calculation_method = self.properties.info['calculation_method']
+        sec_elastic.elastic_calculation_method = self.properties.info['calculation_method'].lower()
         sec_elastic.elastic_constants_order = self.properties.info['order']
         sec_elastic.strain_maximum = self.properties.info['max_strain']
-- 
GitLab