Address review comments.

This commit is contained in:
Atgeirr Flø Rasmussen
2018-10-25 12:11:15 +02:00
parent 2bf4d15285
commit 852765a65b
5 changed files with 30 additions and 28 deletions

View File

@@ -47,7 +47,7 @@ namespace Opm
NotANumber = 3 };
struct ReservoirFailure
{
enum struct Type { Mb, Cnv };
enum struct Type { Invalid, MassBalance, Cnv };
Type type;
Severity severity;
int phase;
@@ -55,7 +55,7 @@ namespace Opm
};
struct WellFailure
{
enum struct Type { Mb, Pressure, CtrlBHP, CtrlTHP, CtrlRate };
enum struct Type { Invalid, MassBalance, Pressure, ControlBHP, ControlTHP, ControlRate };
Type type;
Severity severity;
int phase;