Hi there,
I have an optimization problem which is subject to a nonlinear DAE system. I used a variant of implicit Runge-Kutta method to discretize my model and form a discrete time model that integrates the DAE system between to consecutive sampling times 'k' and 'k+1', e.g. x(k+1) = phi(x(k),u(k)).
Based on my understanding this would form an algebraic equation ( x(k+1) - phi(x(k),u(k)) =0 ) from my original DAE system. So my question is that: Is it OK to consider my converted system a convex equality constraint and solve my optimization problem using nonlinear solvers as IPOPT, or I have to acquire non-convex global solvers like BARON? (considering the rest of my constraints to be convex and I am seeking the global solution)
Thank you for your time and consideration.