Skip to content

Commit

Permalink
[PL/TimeLoop] Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
TomFischer authored and endJunction committed Jul 24, 2024
1 parent 6835c81 commit f85bd13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ProcessLib/TimeLoop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,9 @@ std::pair<double, bool> TimeLoop::computeTimeStepping(
}

// adjust step size considering external communciation_point_calculators
for (auto const& time_step_constain : time_step_constraints)
for (auto const& time_step_constraint : time_step_constraints)
{
dt = std::min(dt, time_step_constain(t, dt));
dt = std::min(dt, time_step_constraint(t, dt));
}

// Check whether the time stepping is stabilized
Expand Down

0 comments on commit f85bd13

Please sign in to comment.