I implemented a class to identify ARX models in Python. The next step is the calculation of optimal PID parameters based on LQR. Apparently a continuous time model is required and I have the following possibilites:
- transform the discrete time model to a continuous time model,
- identify a continuous time model,
- adapt the LQR approach to determine optimal PID parameters to the discrete time domain.
In Matlab the first two approaches are easily done, but I need them in Python. Does anybody know how Matlab implemented d2c
and has a reference?