v0.23.0
ModelPredictiveControl v0.23.0
BREAKING CHANGES
preparestate!
should be called before solving the MPC optimization withmoveinput!
- current form by default for all
StateEstimator
ym
keyword argument ofmoveinput!
removed (was only forInternalModel
, I now use the newpreparestate!
method)MovingHorizonEstimator
advanced constructor (with complete covariance matrices):covestim
andoptim
are now keyword arguments instead of positional arguments.
Changelog
- added: current form for all
StateEstimator
exceptMovingHorizonEstimator
, to improve accuracy and closed-loop robustness - reduce allocation for
SimModel
andStateEstimator
instances by using internal buffers - multiple doc correction
Merged pull requests:
- minor doc correction (#87) (@franckgaga)
- minor doc additions (#88) (@franckgaga)
- added: support for the current form for all the state estimators (#90) (@franckgaga)
- Reduce allocations by avoiding
empty
for defaultd
argument (#91) (@franckgaga) - added:
SimModelBuffer
andStateEsimatorBuffer
objects to reduce the allocations (#92) (@franckgaga)