-
I am exploring this package a bit for some optimal control usecases. From a JuMP control example, the integration rule for the dynamic constraints has to be hard coded in the constraint. I understand Is it possible to see or control which integration method is being used to enforce the dynamic constraints? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The short answer is yes, all the aspects of how the formulation is approximated can be controlled and adjusted. Moreover, there are quite a few ways to do it. Note that by default we use direct transcription (i.e., discretization techniques) to reformulate the continuous time problem. The methodology behind this is explained in our docs here and in Section 3.1 of our paper (https://arxiv.org/pdf/2106.12689.pdf). A good place to start with getting more familiar with the syntax would be to read the "Basic Usage" section on each page of the "User Guide" in the docs. To get started I'll mention 3 typical areas of adjustment. Here the context will be all in the realm of optimal control as per your question. Specifying Support (i.e., discretization) Points Specifying the Derivative Approximation Method Specifying the Integral Evaluation Method I will also mention that all the above can be extended such that we can invoke custom approximation schemes if desired. |
Beta Was this translation helpful? Give feedback.
The short answer is yes, all the aspects of how the formulation is approximated can be controlled and adjusted. Moreover, there are quite a few ways to do it.
Note that by default we use direct transcription (i.e., discretization techniques) to reformulate the continuous time problem. The methodology behind this is explained in our docs here and in Section 3.1 of our paper (https://arxiv.org/pdf/2106.12689.pdf).
A good place to start with getting more familiar with the syntax would be to read the "Basic Usage" section on each page of the "User Guide" in the docs.
To get started I'll mention 3 typical areas of adjustment. Here the context will be all in the realm of optimal control as per …