There are two examples realized with GEKKO:
- There is no time-horizon
- State and control variables are the same
Current results:
- The algorithm (Gauss-Newton) has been implemented entirely. Everything works correctly.
Current bottlenecks:
- The GN algorithm doesn't work better than the existing method from GEKKO (Branch and Bound based algorithm).
What I plan to do:
- Find more different examples of the problem and try the method.
- There is a time-horizon
$$
\begin{split}
F(\textbf{x}, \textbf{i}) =
\frac{1}{2} & \int\limits^{T}{t_0} (x(t) - x{ref})^2 dt
\rightarrow \min \
\text{such that:} \quad & x(t_0) = x_0 \
& \dot{x}(t) = x^3(t) - i(t) \
& \textbf{i} \in P \cap \mathbb{Z}^{N} \
& N = 30, \ x_0 = 0.8, \ x_{ref} = 0.7
\end{split}
$$
Current results:
- The first step (S1) of the tree-step GN algorithm has been implemented.
- [UPD] The second and the third methods have been implemented.
- Completed steps are substantiated theoretically. All the necessary calculations are attached.
Current bottlenecks:
- The GN algorithm doesn't work better than the existing method from GEKKO.