Proportional Trim Adjustment¶
Proportional controller — instantiates Perturbative Error Correction
Continuously trims an actuator in proportion to the live error between a setpoint and the measured state, so drift is corrected the instant it appears.
Some processes cannot wait for a human to notice drift and decide what to do. Proportional Trim Adjustment is the automatic control law that holds a process on its setpoint by continuously nudging an actuator in proportion to the error: the further the measured state has drifted, the larger the trim; the closer it is, the gentler. Its defining idea is correction proportional to the live error, applied without pause. There is no discrete decision, no ledger, no human at the gate — just a tight loop that senses the error and adjusts by an amount scaled to it, again and again, so deviations are corrected as fast as they form. It is the humblest and fastest corrector: it never rests, and it never does more than the error calls for.
Example¶
A chemical process holds a reactor at 180 °C, where product quality is best. Heat load fluctuates as feedstock composition varies, so the temperature is always drifting a little. A proportional trim controller reads the temperature every fraction of a second, computes the error against the 180 °C setpoint, and trims the heater output in proportion: three degrees low, it opens the valve a lot; half a degree low, it opens it a little; above setpoint, it eases off. The correction is not a fixed step and not a human decision — it is a continuous function of how far off the process currently is. As feedstock shifts and the temperature dips, the controller has already begun correcting before an operator would even see the trend. The reactor rides its setpoint within a tight band, and the closed loop watches its own result every cycle: the same measurement that drives the next trim is the observation that the last trim worked.
How it works¶
The distinguishing move is the correction is a proportional function of the current error, computed continuously. A setpoint (or narrow operating band) defines the reference; the live measurement gives the error; the actuator trim equals that error times a gain. Because the loop runs constantly, sensing and correcting are the same act — the next measurement both evaluates the last trim and drives the next one, so observation is built into the mechanism rather than a separate step. Everything else the archetype offers — budgets, ledgers, simulators, human gates — is deliberately absent; a pure proportional controller trades all of that for speed and simplicity.
Tuning parameters¶
- Gain — how strongly the trim responds to a given error. High gain corrects fast but can overshoot and oscillate; low gain is stable but sluggish and leaves more residual offset.
- Proportional band — the error range over which the actuator moves across its full stroke. A narrow band is aggressive; a wide band is gentle.
- Setpoint / band width — the target and how tightly it is held. A tighter band demands more actuator activity to maintain.
- Sampling rate — how often the loop reads and acts. Faster sampling tracks disturbances better but amplifies sensor noise into the actuator.
- Actuator limits — the saturation bounds on how far the trim can push. Tight limits protect the plant but can leave large errors uncorrected.
When it helps, and when it misleads¶
Its strength is immediacy and simplicity: with no human in the loop and no heavy machinery, it corrects drift the instant it appears and keeps a process glued to its setpoint through continuous small trims. For fast, well-behaved processes it is the workhorse corrector.
Its failure modes are the classic ones of pure proportional control. It leaves a steady-state offset — a persistent small error it never fully removes, because the trim goes to zero exactly when the error does, so it settles slightly off target unless helped by additional control terms.[n1] Push the gain up to shrink that offset and it oscillates, chasing noise and overshooting — the noise-chasing failure the archetype warns of, in its purest form. The classic misuse is applying a fast proportional loop to a process with long lag, where the correction arrives out of phase and drives sustained oscillation. The guarding discipline is to match gain to the process dynamics, filter sensor noise before it reaches the actuator, and accept a small offset rather than cranking gain into instability.
How it implements the components¶
Proportional Trim Adjustment fills the sense-and-continuously-correct core of the loop and nothing beyond it — its austerity is the point:
reference_state_or_operating_band— the setpoint or narrow band the process is held to.drift_and_error_signal— the live measured error between current state and setpoint, sampled every cycle.local_correction_vector— the actuator trim, sized in proportion to the error and applied immediately.post_perturbation_observation_loop— the continuous re-measurement that both confirms the last trim and drives the next, folded into the same loop.
It does not implement perturbation_budget or escalation_or_reset_threshold — a metered, exhaustible actuation budget and a safe-mode escalation trigger belong to Spacecraft Attitude Trim Pulse; a proportional controller has no scarce fuel to ration and simply keeps correcting.
Related¶
- Instantiates: Perturbative Error Correction — supplies the fastest, most automatic correction: a continuous trim proportional to the live error.
- Sibling mechanisms: Spacecraft Attitude Trim Pulse · Clinical Titration Adjustment · Bounded Rebalancing Trade · Corrective Feedback Nudge
Editorial Notes¶
Form Classification¶
Form family: Control, Automation & Runtime
Rationale: Proportional Trim Adjustment operates as a live operational control that automatically routes, enforces, adapts, or responds during execution because it continuously trims an actuator in proportion to the live error between a setpoint and the measured state, so drift is corrected the instant it appears.
Independent corroboration: The frozen evidence defines Proportional Trim Adjustment as 'Continuously trims an actuator in proportion to the live error between a setpoint and the measured state, so drift is corrected the instant it appears', so its operative form is Control, Automation & Runtime.
Review outcome: Independent reviewer agreement; high confidence.
Origin Attribution¶
Primary origin: Engineering & Design
Origin pattern: Cross-disciplinary synthesis
Present-day reach: Multi-domain
Rationale: Proportional Trim Adjustment is most plausibly rooted in the engineering_design tradition because its characteristic form depends on physical-system design, process control, reliability, and safety engineering. The assignment tracks that formative lineage, not the many settings in which the mechanism can now be applied.
Related originating lineages:
- Systems Thinking & Cybernetics — The systems_cybernetics tradition materially shaped Proportional Trim Adjustment through its own practice of feedback, thresholds, dynamic regulation, and whole-system intervention.
Review resolution: Both blind reviewers agree that engineering design is the primary origin. Explicit reconciliation resolves origin mode disagreement, domain reach disagreement. Formative alternate lineages are retained as systems_cybernetics; later breadth of use is recorded separately as domain_reach=multi_domain, while origin_mode=cross_disciplinary_synthesis describes the relationship among origin lineages.
Review outcome: Reconciled after independent review; high confidence.
Notes¶
Two twins sit close. Against Spacecraft Attitude Trim Pulse: this controller corrects continuously and has no fuel budget, whereas the pulse fires discrete, fuel-budgeted events. Against Clinical Titration Adjustment: both take error-scaled steps, but titration puts a human at the gate of each one, while proportional trim is fully automatic — same shape, no operator.
[n1] In control theory, a pure proportional (P) controller produces an output proportional to the error and characteristically leaves a steady-state error (offset), since its correction vanishes as the error does. Integral and derivative terms are added precisely to remove that offset and damp oscillation — evidence of the tradeoff this mechanism makes in exchange for simplicity. ↩