From 7ea2f32bca858193d361a3f7cb807e0ebc7e24b6 Mon Sep 17 00:00:00 2001 From: Roland Kaufmann Date: Fri, 8 Nov 2013 08:49:21 +0100 Subject: [PATCH] Use correct order of saturation names Due to a glitch the order of the names was put incorrectly in the file, even though the comment stressed that it was important it was right! Hat tip: @bska --- opm/core/io/eclipse/EclipseWriter.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/opm/core/io/eclipse/EclipseWriter.cpp b/opm/core/io/eclipse/EclipseWriter.cpp index 96458227..471cd266 100644 --- a/opm/core/io/eclipse/EclipseWriter.cpp +++ b/opm/core/io/eclipse/EclipseWriter.cpp @@ -669,9 +669,7 @@ static double pasToBar (double pressureInPascal) { /// Names of the saturation property for each phase. The order of these /// names are critical; they must be the same as the BlackoilPhases enum -static const char* SAT_NAMES[] = { - "SOIL", "SWAT", "SGAS" -}; +static const char* SAT_NAMES[] = { "SWAT", "SOIL", "SGAS" }; } // namespace Opm::internal