Transforms — Sim, EKF, LQR¶
The three compile-time siblings. Each takes a World, writes its math
symbolically over the shared linearized system, and emits a typed
Module. Lower one with a target to get a callable runtime.
Sim¶
manta.Sim ¶
Forward-dynamics transform: model validation + the linearized tick, emitting oracle/deploy Modules.
Source code in manta/sim.py
module ¶
The oracle Module (simulation truth): one step entry —
the full forward tick, one live noise draw → state + readings.
Source code in manta/sim.py
deploy_module ¶
The deploy Module (runs on a robot against real sensors): noiseless forward map + per-sensor measurement models + Jacobians.
Source code in manta/sim.py
EKF¶
manta.EKF ¶
Error-state EKF over a World — symbolic recursion + typed Module.
Args:
track: {craft_name: SlotSet} lower bound of what to estimate
(closed under the dynamics; the rest freezes). None
keeps the full state.
sensors: measurement full-names (or unambiguous suffixes).
None keeps every output (of tracked crafts).
inputs: known control inputs; None keeps all, excluded ones
freeze at their default.
discretization: how F discretizes the dynamics — "exact"
(default; jacobian of the full discrete tick) or
"euler" (F = I + dt·∂ẋ/∂δ; O(dt²) from exact, much
smaller generated deploy code). See LinearizedSystem.
Source code in manta/estimation/ekf.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | |
module ¶
observability ¶
Local observability of the chosen sensor set at an operating
point (see manta.estimation.observability).
sigma_horizon ¶
Per-slot σ attainable after a horizon — the covariance
recursion run open-loop, resolving the weak/slow observability the
rank test can't (see manta.estimation.observability).
Source code in manta/estimation/ekf.py
LQR¶
manta.LQR ¶
Infinite-horizon discrete LQR about an operating point.
Args:
world — the model.
x_ref — target state (nested {owner: {slot: value}} or flat
{"owner.slot": value}), merged over the world's
initial state for any unspecified slot.
u_ref — trim inputs ({input_name: value}), merged over each
Part Input's default. The equilibrium command.
Q, R — LQR cost weights (regulated-tangent², n_inputs²). Default
to identity. R must be positive-definite.
dt — the discrete step the controller will run at.
regulate — slot full-names to regulate, taken verbatim (e.g.
["c.position", "c.velocity"]); the rest are frozen at
x_ref. None regulates the full state (fully-actuated
systems only).
tol, max_iter — Riccati-iteration convergence: relative fixpoint
tolerance (‖ΔP‖ ≤ tol·max(1, ‖P‖)) and iteration cap.
Attributes:
spec (full), regulated (regulated slot names), input_names,
K (n_u × tracked_tangent), A, B, x_ref/u_ref (vectors),
control_fn (u(x_full, x_ref_full) baked ca.Function;
runtimes default x_ref to the built reference — see
NumpyRegulator.retarget).
Source code in manta/control/lqr.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | |
closed_loop_eigs
property
¶
Eigenvalues of the closed-loop tangent map A − B·K (over the
tracked subspace). All inside the unit circle ⇒ stable.
PID¶
manta.PID ¶
Bases: RecurrenceBlock
Scalar PID controller as a recurrence block.
Args:
kp, ki, kd — proportional / integral / derivative gains.
integral_limit — symmetric clamp on the integral accumulator
(anti-windup). None disables it.
output_limit — symmetric clamp on the command. None disables.
name — codegen basename / default C++ class stem.
Ports: inputs setpoint + measurement (scalars); output
command. State: integral, prev_measurement, primed.