Gain Reduction for Overshoot Specification in a Unity-Feedback System
We study a unity-feedback control system with open-loop transfer function
For a unit-step input, the peak (percent) overshoot depends on the closed-loop damping ratio of the resulting second-order dynamics. In this design problem, we will enforce that the overshoot decreases from to by scaling the amplifier gain accordingly.
Key relations we will use:
- unity feedback implies the closed-loop characteristic equation is .
- percent overshoot for underdamped second-order systems is where is the damping ratio.
- The given plant/feedback structure yields a standard second-order denominator, from which can be expressed in terms of and .
Mermaid overview of the control loop:
Footnotes
-
Percent overshoot and damping ratio relationship (including inverse formula) - Wikipedia “Damping” https://en.wikipedia.org/wiki/Damping - Provides PO = 100 exp(−ζπ/√(1−ζ^2)) and ζ inversion formula. ↩
Percent Overshoot & Damping Ratio (Second-Order Systems)
Step 1: Form the unity-feedback closed-loop transfer function
Unity feedback gives the characteristic equation:
Multiply by :
Expand:
Thus the closed-loop transfer function has a denominator proportional to .
To match the standard second-order form
divide by :
Now compare coefficients:
From , we get . Then
Key takeaway:
- damping ratio is inversely proportional to :
This relation lets us compute the ratio once we find and from the overshoot specs.
Compute damping ratios from the percent overshoot formula
- 1Step 1
For an underdamped second-order step response, PO (decimal percent) satisfies PO = .
Footnotes
-
Percent overshoot and damping ratio relationship (including inverse formula) - Wikipedia “Damping” https://en.wikipedia.org/wiki/Damping - Provides PO = 100 exp(−ζπ/√(1−ζ^2)) and ζ inversion formula. ↩
-
- 2Step 2
For PO = and PO = : and .
- 3Step 3
Footnotes
-
Percent overshoot and damping ratio relationship (including inverse formula) - Wikipedia “Damping” https://en.wikipedia.org/wiki/Damping - Provides PO = 100 exp(−ζπ/√(1−ζ^2)) and ζ inversion formula. ↩
-
- 4Step 4
Let . Then .
- 5Step 5
Let . Then .
Step 2: Relate gain ratio to damping ratio
We derived:
With fixed, this implies:
Therefore,
Insert the computed values:
So the amplifier gain should be reduced to about of its original value, i.e., reduced by a factor:
Equivalently, it is reduced by about:
Why overshoot targets ζ
For standard underdamped second-order responses, peak overshoot depends only on the damping ratio , via PO . Frequency scale cancels out for PO, so we only need .
Footnotes
-
Percent overshoot and damping ratio relationship (including inverse formula) - Wikipedia “Damping” https://en.wikipedia.org/wiki/Damping - Provides PO = 100 exp(−ζπ/√(1−ζ^2)) and ζ inversion formula. ↩
Underdamped requirement
The overshoot formula used is for underdamped systems (). Here both computed and satisfy , so the model is consistent .
Footnotes
-
Percent overshoot and damping ratio relationship (including inverse formula) - Wikipedia “Damping” https://en.wikipedia.org/wiki/Damping - Provides PO = 100 exp(−ζπ/√(1−ζ^2)) and ζ inversion formula. ↩
Damping ratio & gain scaling for overshoot reduction
From PO = 75% to PO = 25% (T fixed).
Common checks and derived formulas
Key Concepts Flashcards
Knowledge Check
For the given system with unity feedback, which characteristic equation is correct?
Explore Related Topics
Understanding Hysteresis in Sensors
Hysteresis is a sensor error where the output at a given input value changes depending on whether the input is approached from an increasing or decreasing direction.
- It appears as a systematic up‑down difference (e.g., 49.95 kPa vs 50.05 kPa at 50 kPa).
- Identification involves recording sensor readings while sweeping the input up and then down, then comparing values at identical points.
- Unlike dead time, dead band, repeatability, or noise, hysteresis is a path‑dependent offset often expressed as a percentage of full scale.
- Reducing it requires better material choice, mechanical design, and calibration that tests both directions.
Model Quantization from First Principles
Model quantization maps high‑precision tensors to low‑bit integer representations using affine scaling, enabling smaller models and faster integer‑only inference while preserving the network’s input‑output behavior.
- Affine quantization: and , with scale and zero‑point chosen to fit into an integer range (e.g., for INT8).
- Scale controls the trade‑off between rounding error (smaller → higher precision) and clipping error (larger → wider range).
- Symmetric () suits weight tensors; asymmetric () handles shifted activation ranges, and per‑channel quantization assigns separate per output channel for improved accuracy.
- Calibration (min‑max, histogram, percentile) estimates activation ranges from representative data; static, dynamic, and quantization‑aware training (QAT) are the three main deployment pipelines.
- Practical success depends on bit‑width choice, granularity, hardware support for integer kernels, and evaluation of accuracy, latency, memory, and stability on the target platform.
Mastering Recurrence Relations: The Substitution Method
The lesson shows how to solve the classic recurrence with the substitution method, using a recursion‑tree intuition to guess an bound and then proving it by induction.
- Each level of the recursion tree costs , and there are levels → total .
- Inductive hypothesis: for , which simplifies to in the induction step.
- The base case must start at (e.g., ) because is false.
- Substitution offers rigorous proof, while recursion trees give quick guesses; the Master Theorem confirms .