Hi,
First, this error means that the algorithm cannot achieve convergence within the maximum iteration limit. To have a better understanding in the convergence you shoud add verbose=True in solve_forces parameters. It shows that indeed there is a problem that will not be resolved by increasing number of iterations.
After testing I saw that the problem comes from interaction between the h_stab and v_stab, removing the v_stab resolves the problem. To keep the v_stab, you sometimes like in this case need a gap between it and the h_stab. To do so, in the connect_to section, replace :
"dx": -5.0
by
"dx": -5.0,
"dz": -0.1
I don't know why it ran fine on the video.