Merge pull request #481 from andlaus/add_experimental_mode

introduce an "experimental mode"
This commit is contained in:
Tor Harald Sandve 2019-02-20 09:39:33 +01:00 committed by GitHub
commit b4382c23e8
2 changed files with 9 additions and 0 deletions

View File

@ -36,6 +36,11 @@ BEGIN_PROPERTIES
NEW_TYPE_TAG(EclProblem, INHERITS_FROM(BlackOilModel, EclBaseProblem));
// Enable experimental features for ebos: ebos is the research simulator of the OPM
// project. If you're looking for a more stable "production quality" simulator, consider
// using `flow`
SET_BOOL_PROP(EclProblem, EnableExperiments, true);
END_PROPERTIES
int main(int argc, char **argv)

View File

@ -325,6 +325,10 @@ SET_BOOL_PROP(EclBaseProblem, EnableThermalFluxBoundaries, false);
SET_BOOL_PROP(EclBaseProblem, EnableTracerModel, false);
// By default, simulators derived from the EclBaseProblem are production simulators,
// i.e., experimental features must be explicitly enabled at compile time
SET_BOOL_PROP(EclBaseProblem, EnableExperiments, false);
END_PROPERTIES
namespace Ewoms {