Rename LinearTimeSteppingBreakdown to TimeSteppingBreakdown.

This commit is contained in:
Markus Blatt 2023-07-25 15:01:44 +02:00
parent d4774cc36e
commit f20716eaf3
2 changed files with 3 additions and 3 deletions

View File

@ -362,7 +362,7 @@ void handleExtraConvergenceOutput(SimulatorReport& report,
}
return exitCode;
}
catch (const LinearTimeSteppingBreakdown& e) {
catch (const TimeSteppingBreakdown& e) {
auto exitCode = logger(e, "Simulation aborted: ");
executeCleanup_();
return exitCode;

View File

@ -582,7 +582,7 @@ std::set<std::string> consistentlyFailingWells(const std::vector<StepReport>& sr
OpmLog::error(msg);
}
// Use throw directly to prevent file and line
throw LinearTimeSteppingBreakdown{msg};
throw TimeSteppingBreakdown{msg};
}
// The new, chopped timestep.
@ -599,7 +599,7 @@ std::set<std::string> consistentlyFailingWells(const std::vector<StepReport>& sr
OpmLog::error(msg);
}
// Use throw directly to prevent file and line
throw LinearTimeSteppingBreakdown{msg};
throw TimeSteppingBreakdown{msg};
}
// Define utility function for chopping timestep.