Runtime & deployment¶
kontrolem_controllers is the runtime consumer of the Kontrol’Em design
pipeline: chainable ros2_control controller plugins that load
linear state-space controllers (LQR, LQG, H∞) exported by
state_space_setup_assistant and run them on a robot. No synthesis happens at
runtime — just realtime-safe matrix–vector math on gains computed offline.
Design-time (Kontrol’Em, Python) |
Runtime (this repo, C++) |
|---|---|
URDF → LTI plant → Riccati / H∞ |
load |
runs once, offline |
runs at the controller rate, on-robot |
The bundle carries the operating point and the gains; the controllers rebuild
the deviation state x = [q − q_eq, q̇], apply the law, and write effort
commands. See the export contract for the exact schema
and conventions — it is the single source of truth shared by the exporter and
these loaders.
Packages¶
Package |
Description |
|---|---|
|
umbrella metapackage |
|
shared library: artifact loader, static-gain & dynamic-compensator cores (Tustin discretization), validity guard, chainable controller base |
|
static state feedback |
|
LQG output-feedback compensator (Kalman + LQR as one LTI), runs from position-only measurements |
|
H∞ output-feedback compensator ( |