mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
ebos: disable partial relinearization and linearization recycling by default
in particular, the partial relinearization seems to cause some _very_ weird effects. (the results differ very significantly for SPE1.) I still have to investigate why, but I suspect that this is caused by the fluid system being not continuously differentiable (it's piecewise linear).
This commit is contained in:
parent
597bd22b9a
commit
c651c2f4ce
@ -115,10 +115,10 @@ public:
|
||||
SET_BOOL_PROP(EclBaseProblem, EnableGravity, true);
|
||||
|
||||
// Reuse the last linearization if possible?
|
||||
SET_BOOL_PROP(EclBaseProblem, EnableLinearizationRecycling, true);
|
||||
SET_BOOL_PROP(EclBaseProblem, EnableLinearizationRecycling, false);
|
||||
|
||||
// Only relinearize the parts where the current solution is sufficiently "bad"
|
||||
SET_BOOL_PROP(EclBaseProblem, EnablePartialRelinearization, true);
|
||||
SET_BOOL_PROP(EclBaseProblem, EnablePartialRelinearization, false);
|
||||
|
||||
// only write the solutions for the report steps to disk
|
||||
SET_BOOL_PROP(EclBaseProblem, EnableWriteAllSolutions, false);
|
||||
|
Loading…
Reference in New Issue
Block a user