You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Integration method. Default is 'dop853_c'. See Notes for more information.
4973
4972
skip : int, optional
4974
4973
For non-adaptive integrators, the number of basic steps to take between crossings (these are further refined in the code, but only up to a maximum refinement, so you can use skip to get finer integration in cases where more accuracy is needed). Default is 100.
@@ -4994,7 +4993,6 @@ def SOS(
4994
4993
- 'dopr54_c' for a 5-4 Dormand-Prince integrator in C
4995
4994
- 'dop853' for a 8-5-3 Dormand-Prince integrator in Python
4996
4995
- 'dop853_c' for a 8-5-3 Dormand-Prince integrator in C
4997
-
- 'ias15_c' for an adaptive 15th order integrator using Gauß-Radau quadrature (see IAS15 paper) in C
4998
4996
4999
4997
5000
4998
- 2023-03-16 - Written - Bovy (UofT)
@@ -5773,7 +5771,7 @@ def plotSOS(
5773
5771
Surface to punch through (this has no effect in 3D, where the surface is always z=0, but in 2D it can be 'x' or 'y' for x=0 or y=0). The default is None.
5774
5772
t0 : float or Quantity, optional
5775
5773
Time of the initial condition. The default is 0.0.
Method to integrate the orbit. The default is 'dop853_c'.
5778
5776
skip : int, optional
5779
5777
For non-adaptive integrators, the number of basic steps to take between crossings (these are further refined in the code, but only up to a maximum refinement, so you can use skip to get finer integration in cases where more accuracy is needed). The default is 100.
0 commit comments