ScheduleEnum will accept 'WAT' for 'WATER'.

This commit is contained in:
Joakim Hove
2015-11-27 11:01:10 +01:00
parent 0f005b8c68
commit 9346824756
2 changed files with 3 additions and 0 deletions

View File

@@ -294,6 +294,8 @@ namespace Opm {
return OIL;
else if (stringValue == "WATER")
return WATER;
else if (stringValue == "WAT")
return WATER;
else if (stringValue == "GAS")
return GAS;
else