mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-26 19:20:17 -06:00
ebos: use the non-multisegmented well model by default
this avoids regressions for decks that use well testing and makes `ebos` work as expected if UMFPACK is not available, but obviously it will not work for decks that use multisegment wells in earnest. `flow` is unaffected by this because it does not use this type tag.
This commit is contained in:
parent
f5db6e8e1c
commit
794b043a28
@ -56,6 +56,11 @@ SET_BOOL_PROP(EbosTypeTag, EnableExperiments, true);
|
||||
// use flow's well model for now
|
||||
SET_TYPE_PROP(EbosTypeTag, EclWellModel, Opm::BlackoilWellModel<TypeTag>);
|
||||
|
||||
// currently, ebos uses the non-multisegment well model by default to avoid
|
||||
// regressions. the --use-multisegment-well=true|false command line parameter is still
|
||||
// available in ebos, but hidden from view.
|
||||
SET_BOOL_PROP(EbosTypeTag, UseMultisegmentWell, false);
|
||||
|
||||
// set some properties that are only required by the well model
|
||||
SET_BOOL_PROP(EbosTypeTag, MatrixAddWellContributions, true);
|
||||
SET_BOOL_PROP(EbosTypeTag, EnableTerminalOutput, false);
|
||||
|
Loading…
Reference in New Issue
Block a user