remove 16 days restriction for timestep in prediciton mode

This commit is contained in:
Tor Harald Sandve
2020-12-08 12:55:46 +01:00
parent 3188ac713a
commit 98b86e891a

View File

@@ -329,13 +329,6 @@ void registerAdaptiveParameters();
restarts = 0;
}
// Further restrict time step size if we are in
// prediction mode with THP constraints.
if (solver.model().wellModel().hasTHPConstraints()) {
const double maxPredictionTHPTimestep = 16.0 * unit::day;
dtEstimate = std::min(dtEstimate, maxPredictionTHPTimestep);
}
assert(dtEstimate > 0);
if (timestepVerbose_) {
std::ostringstream ss;
substepReport.reportStep(ss);