Skip to content
Snippets Groups Projects
Commit 3fbc09fd authored by Tom Fischer's avatar Tom Fischer
Browse files

[NL/TimeStepping] Relax splitting the timestep

The treshold to not to split the timestep is relaxed
parent 2b7447ac
No related branches found
No related tags found
No related merge requests found
......@@ -124,12 +124,12 @@ void incorporateFixedTimesForOutput(
begin(delta_ts), begin(delta_ts) + interval_number, t_initial);
auto const upper_bound = lower_bound + delta_ts[interval_number];
if (fixed_time_for_output - lower_bound <=
std::numeric_limits<double>::epsilon())
TimeStep::minimalTimeStepSize)
{
continue;
}
if (upper_bound - fixed_time_for_output <=
std::numeric_limits<double>::epsilon())
TimeStep::minimalTimeStepSize)
{
continue;
}
......
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