5-channel decomposed control. Fault-tolerant by algebra. CC0. No patents.
Traditional PID: ONE control signal u(t) = Kp*e + Ki*integral(e) + Kd*de/dt.
CRT PID: DECOMPOSE the control signal into 5 independent channels.
ARCHITECTURE:
1. Plant output y(t) -> error e(t) = setpoint - y(t)
2. Quantize error: e_q = round(e * scale) mod 970200
3. CRT decompose: e_q -> (e mod 8, e mod 9, e mod 25, e mod 49, e mod 11)
4. Each channel runs its OWN PID controller independently:
u_i = Kp_i * e_i + Ki_i * sum(e_i) + Kd_i * (e_i - prev_e_i)
5. CRT reconstruct: u = CRT(u_0, u_1, u_2, u_3, u_4)
6. De-quantize and apply to plant
WHY CRT WINS:
- 5 INDEPENDENT control loops = fault tolerance by structure
- If channel i fails, remaining 4 channels still control (graceful degradation)
- L=11 channel = FREE actuator integrity check
- Each channel has different dynamic range (8,9,25,49,11) = multi-scale control
- Block-diagonal: no cross-channel interference in Jacobian
- Patent-free: PID is old, CRT decomposition makes it algebraically robust
Plant type: Setpoint:
Watch each CRT channel's independent PID action:
Kill a channel and watch the system adapt: