remove partial relinarization

the reasons are the same as for removing linearization recycling but
more so.
This commit is contained in:
Andreas Lauser 2015-12-31 13:20:15 +01:00
parent 5de416e314
commit c0f8fc274d
2 changed files with 1 additions and 4 deletions

View File

@ -495,7 +495,7 @@ public:
// and features a fracture, specify the fracture fluid
// state.
FluidState fractureFluidState;
fractureFluidState.setTemperature(temperature_ + 10);
fractureFluidState.setTemperature(temperature_ + 10.0);
fractureFluidState.setSaturation(wettingPhaseIdx, 1.0);
fractureFluidState.setSaturation(nonWettingPhaseIdx,

View File

@ -91,9 +91,6 @@ public:
// Enable gravitational acceleration
SET_BOOL_PROP(RichardsLensProblem, EnableGravity, true);
// Only relinearize the parts where the current solution is sufficiently "bad"
SET_BOOL_PROP(RichardsLensProblem, EnablePartialRelinearization, true);
// Use central differences to approximate the Jacobian matrix
SET_INT_PROP(RichardsLensProblem, NumericDifferenceMethod, 0);