mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #481 from andlaus/add_experimental_mode
introduce an "experimental mode"
This commit is contained in:
commit
b4382c23e8
@ -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)
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user