Merge pull request #2970 from totto82/remove16day

remove 16 days restriction for timestep in predicition mode
This commit is contained in:
Tor Harald Sandve 2024-12-10 11:43:38 +01:00 committed by GitHub
commit b7d3a57b0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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