Skip to content
Snippets Groups Projects
Commit 70871c17 authored by wenqing's avatar wenqing
Browse files

[dt] Stop program when a rejected time step gets step size unchanged.

parent bc34beba
No related branches found
No related tags found
No related merge requests found
......@@ -642,13 +642,28 @@ double UncoupledProcessesTimeLoop::computeTimeStepping(
if (!is_initial_step)
{
if (all_process_steps_accepted)
{
accepted_steps++;
_last_step_rejected = false;
}
else
{
if (std::abs(dt -prev_dt) < std::numeric_limits<double>::min()
&& _last_step_rejected)
{
OGS_FATAL("\tThis time step is rejected and the new computed"
" step size is the same as\n"
"\tthat was just used.\n"
"\tSuggest to adjust the parameters of the time"
" stepper or try other time stepper.\n"
"\tThe program stops");
}
if (t < _end_time)
{
t -= prev_dt;
rejected_steps++;
_last_step_rejected = true;
}
}
}
......
......@@ -66,6 +66,7 @@ private:
std::unique_ptr<Output> _output;
std::vector<std::unique_ptr<SingleProcessData>> _per_process_data;
bool _last_step_rejected = false;
const double _start_time;
const double _end_time;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment