From 3924bb1e6e952652295cba9b4027aa80f372be53 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Tue, 30 Jan 2018 11:53:30 +0100 Subject: [PATCH] explicitly disable all extensions supported by black oil model for the base simulator this should not really be necessary because they are supposed to be disabled by default, but it makes things a bit more explicit --- opm/autodiff/BlackoilModelEbos.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/opm/autodiff/BlackoilModelEbos.hpp b/opm/autodiff/BlackoilModelEbos.hpp index f6811621c..fc3730334 100644 --- a/opm/autodiff/BlackoilModelEbos.hpp +++ b/opm/autodiff/BlackoilModelEbos.hpp @@ -76,6 +76,12 @@ SET_BOOL_PROP(EclFlowProblem, ExportGlobalTransmissibility, true); // default in flow is to formulate the equations in surface volumes SET_BOOL_PROP(EclFlowProblem, BlackoilConserveSurfaceVolume, true); SET_BOOL_PROP(EclFlowProblem, UseVolumetricResidual, false); + +// disable all extensions supported by black oil model. this should not really be +// necessary but it makes things a bit more explicit +SET_BOOL_PROP(EclFlowProblem, EnablePolymer, false); +SET_BOOL_PROP(EclFlowProblem, EnableSolvent, false); +SET_BOOL_PROP(EclFlowProblem, EnableEnergy, false); }} namespace Opm {