From 1382ea0c3f39f4211930ae30c51162252178ac76 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <github@naumov.de>
Date: Thu, 27 May 2021 00:13:30 +0200
Subject: [PATCH] [MPL] Variable enum to string conversion.

---
 MaterialLib/MPL/VariableType.h | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/MaterialLib/MPL/VariableType.h b/MaterialLib/MPL/VariableType.h
index 049e3e3f8cc..62908a8bbe2 100644
--- a/MaterialLib/MPL/VariableType.h
+++ b/MaterialLib/MPL/VariableType.h
@@ -69,6 +69,32 @@ enum class Variable : int
     number_of_variables
 };
 
+static const std::array<std::string,
+                        static_cast<int>(Variable::number_of_variables)>
+    variable_enum_to_string{{"capillary_pressure",
+                             "concentration",
+                             "density",
+                             "displacement",
+                             "effective_pore_pressure",
+                             "enthalpy_of_evaporation",
+                             "equivalent_plastic_strain",
+                             "grain_compressibility",
+                             "liquid_phase_pressure",
+                             "liquid_saturation",
+                             "mechanical_strain",
+                             "molar_mass",
+                             "molar_fraction",
+                             "phase_pressure",
+                             "porosity",
+                             "solid_grain_pressure",
+                             "stress",
+                             "temperature",
+                             "total_strain",
+                             "total_stress",
+                             "transport_porosity",
+                             "vapour_pressure",
+                             "volumetric_strain"}};
+
 /// Data type for primary variables, designed to contain both scalar and vector
 /// data.
 using VariableType =
-- 
GitLab