I want to integrate the same differential equation with different initial conditions and I want to compare each points that I have obtained. Unfortunately if I do:
sol = solve_ivp(my_model, [0, leng], [1,1,1], method="LSODA", args=(rho, sigma, beta), dense_output=False)
sol_2 = solve_ivp(my_model, [0, leng], [1+0.001,1+0.001, 1-0.001], method="LSODA", args=(rho, sigma, beta), dense_output=False)
The number of points obtained in these two integration processes is different.
I don't want to use the interpolation procedure since I would like to work with real data.
Can I set the number of points of the solution(s)?