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
This package solves constrained trajectory optimization problems:
5
+
A Julia package for solving constrained trajectory optimization problems:
6
6
7
7
```
8
8
minimize gT(xT; wT) + sum(gt(xt, ut; wt))
9
9
xt, ut
10
10
subject to xt+1 = ft(xt, ut; wt) , t = 1,...,T-1
11
-
ct(xt, ut; wt) {>,=} 0, t = 1,...,T
11
+
ct(xt, ut; wt) {<,=} 0, t = 1,...,T
12
12
xt_L <= xt <= xt_U, t = 1,...,T
13
13
ut_L <= ut <= ut_U, t = 1,...,T-1.
14
14
```
15
15
16
+
with direct trajectory optimization.
17
+
16
18
Fast and allocation-free gradients and sparse Jacobians are automatically generated using [Symbolics.jl](https://github.com/JuliaSymbolics/Symbolics.jl) for user-provided costs, constraints, and dynamics. The problem is solved with [Ipopt](https://coin-or.github.io/Ipopt/).
0 commit comments