Skip to content

Improve exit condition for iterative pusher

Byung Kyu Na requested to merge improve_exit_condition_iterative_pusher into devel

close issue #205 (closed)

  • By counting and communicating number of not converged particles n_not_converged, iteration can exit the loop when all the particles are converged (n_not_converged = 0).

  • Remove safety stop at Pusher.__call__().

Loop can be terminated either reaching the maxiter or n_not_converged = 0

  • Remove if clauses at Pusher.__call__().

  • Reduce n_cols of Particles5D

Merge request reports