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
Copy file name to clipboardExpand all lines: docs/src/tutorial-goddard.md
+10-7
Original file line number
Diff line number
Diff line change
@@ -37,16 +37,12 @@ We import the [OptimalControl.jl](https://control-toolbox.org/OptimalControl.jl)
37
37
[NLPModelsIpopt.jl](https://github.com/JuliaSmoothOptimizers/NLPModelsIpopt.jl) to solve it.
38
38
We import the [Plots.jl](https://github.com/JuliaPlots/Plots.jl) package to plot the solution.
39
39
The [OrdinaryDiffEq.jl](https://github.com/SciML/OrdinaryDiffEq.jl) package is used to
40
-
define the shooting function for the indirect method and the
41
-
[NonlinearSolve.jl](https://github.com/SciML/NonlinearSolve.jl) and
42
-
[MINPACK.jl](https://github.com/sglyon/MINPACK.jl) packages permit to solve the shooting
43
-
equation.
40
+
define the shooting function for the indirect method and the [MINPACK.jl](https://github.com/sglyon/MINPACK.jl) package permits to solve the shooting equation.
44
41
45
42
```@example main
46
43
using OptimalControl # to define the optimal control problem and more
47
44
using NLPModelsIpopt # to solve the problem via a direct method
48
45
using OrdinaryDiffEq # to get the Flow function from OptimalControl
49
-
using NonlinearSolve # interface to NLE solvers
50
46
using MINPACK # NLE solver: use to solve the shooting equation
51
47
using Plots # to plot the solution
52
48
```
@@ -295,14 +291,21 @@ the shooting equation. To compute the Jacobian of the shooting function we use t
0 commit comments