diff --git a/opm/simulators/timestepping/AdaptiveTimeStepping.hpp b/opm/simulators/timestepping/AdaptiveTimeStepping.hpp index fffc41ddb..f744ac78e 100644 --- a/opm/simulators/timestepping/AdaptiveTimeStepping.hpp +++ b/opm/simulators/timestepping/AdaptiveTimeStepping.hpp @@ -325,13 +325,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);