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:
Andreas Lauser 2015-01-21 14:40:51 +01:00
parent 597bd22b9a
commit c651c2f4ce

View File

@ -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);