For C(s) = 4, G(s) = 1/(2s + 1), and unity negative feedback H(s) = 1, the closed-loop transfer function is T(s) = 4/(2s + 5) = 0.8/(0.4s + 1). For a unit step and zero initial conditions, the output approaches 0.8, the steady-state error is 0.2, and the closed-loop time constant is 0.4 s.
E(s) = R(s) - Y_m(s) and the 1 + C(s)G(s)H(s) closed-loop denominator.Scope and notation before the algebra
This is a continuous-time, single-input single-output, linear time-invariant teaching model. Transfer functions describe input/output behavior in the Laplace domain under stated assumptions; they are not equipment specifications by themselves. MathWorks documents transfer functions as continuous- or discrete-time LTI representations with numerator and denominator polynomials, while Åström and Murray use them as a core tool for reasoning from open-loop dynamics to closed-loop behavior.
The symbols are:
R(s): reference input;E(s): error after the summing junction;U(s): controller output and plant input;Y(s): plant output;Y_m(s): measured output returned by the sensor;C(s),G(s), andH(s): controller, plant, and sensor transfer functions;s: the Laplace variable, with units of inverse seconds in this example.
All signals are normalized and dimensionless here. The coefficient 2 in 2s + 1 therefore represents a plant time constant of 2 s; C(s) = 4 and H(s) = 1 are dimensionless gains. The model assumes zero initial conditions, exact parameters, no transport delay, no sampling, no actuator saturation, no rate limit, no noise, and no unmodeled dynamics. Those omissions make the arithmetic reproducible, not universally predictive.
Reproducible Schematex source
blockdiagram "Negative-feedback first-order control loop"
C = block("C(s) = 4") [role: controller]
G = block("G(s) = 1/(2s + 1)") [role: plant]
H = block("H(s) = 1") [role: sensor, route: below]
err = sum(+in, -H)
in -> err ["R(s)"]
err -> C ["E(s)"]
C -> G ["U(s)"]
G -> out ["Y(s)"]
G -> H
H -> err ["Y_m(s)"]
Schematex 1.0.12 strictly validated this source with no diagnostics on August 21, 2026. The rendered SVG contains three blocks, one summing junction, and six directed signals; its two summing labels were also checked as + for the reference path and − for the sensor path. The current control block-diagram syntax reference documents block roles, signed summing inputs, edge labels, and feedback routing.
The signed IDs in sum(+in, -H) must match the actual source IDs of incoming connections. Writing sum(+r, -ym) while connecting in -> err and H -> err may look semantically descriptive, but it does not bind the signs to those incoming nodes in the current renderer. Successful parsing alone is therefore insufficient; inspect the rendered polarity marks.
Step 1: calculate the loop transfer function
The loop transfer function is the product around the loop:
L(s) = C(s) G(s) H(s)
= 4 × [1/(2s + 1)] × 1
= 4/(2s + 1)
This is sometimes called loop gain, although it varies with s; it is not merely the controller's scalar gain of 4. Keeping H(s) in the product prevents a common mistake when the feedback sensor is not unity.
Step 2: reduce the negative-feedback loop
The diagram defines four equations:
E(s) = R(s) - Y_m(s)
U(s) = C(s)E(s)
Y(s) = G(s)U(s)
Y_m(s) = H(s)Y(s)
Substitute from the bottom upward:
Y = CG(R - HY)
Y = CGR - CGHY
Y + CGHY = CGR
Y(1 + CGH) = CGR
Therefore the reference-to-output closed-loop transfer function is:
T(s) = Y(s)/R(s)
= C(s)G(s) / [1 + C(s)G(s)H(s)]
Insert the three example models and clear the nested fraction:
T(s) = [4/(2s + 1)] / [1 + 4/(2s + 1)]
= [4/(2s + 1)] / [(2s + 5)/(2s + 1)]
= 4/(2s + 5)
= 0.8/(0.4s + 1)
MIT's unity-feedback lecture writes the same negative-feedback structure as KG/(1 + KG) and uses it to analyze sensitivity and disturbance attenuation. MathWorks likewise defines negative feedback as the default sign for its feedback interconnection. For high-order numerical models, use a system-interconnection routine rather than manually forming G/(1 + GK): MathWorks warns that the literal algebraic expression can introduce cancelling poles and zeros and degrade numerical accuracy.
Step 3: read the pole and time constant
The closed-loop pole is the root of the denominator:
2s + 5 = 0
s = -5/2 = -2.5 s^-1
The pole is in the open left half-plane, so this first-order model is asymptotically stable. Rewriting the denominator as 0.4s + 1 exposes the time constant:
tau = 1/2.5 s^-1 = 0.4 s
Do not confuse the s in G(s) with the unit symbol s for seconds. In G(s), it names the Laplace variable; in 0.4 s, it names elapsed time.
Step 4: verify the unit-step response
For a unit step, R(s) = 1/s. The output transform and time response are:
Y(s) = [0.8/(0.4s + 1)] × (1/s)
y(t) = 0.8(1 - exp(-t/0.4)), t >= 0
Evaluate fixed checkpoints with seconds carried through the exponent ratio:
| Time | Calculation | Output | Interpretation |
|---|---|---|---|
0 s | 0.8(1 - exp(0)) | 0.0000 | strictly proper model starts at zero |
0.4 s = 1 tau | 0.8(1 - exp(-1)) | 0.5057 | 63.2% of the final value |
1.2 s = 3 tau | 0.8(1 - exp(-3)) | 0.7602 | 95.0% of the final value, not of the reference |
2.0 s = 5 tau | 0.8(1 - exp(-5)) | 0.7946 | 99.3% of the final value |
infinity | 0.8(1 - 0) | 0.8000 | steady state |
The last distinction matters. “95% at three time constants” means 95% of 0.8, so the output is about 0.76; it does not mean the output has reached 0.95 of the unit reference.
The steady-state tracking error is:
e_ss = 1 - y(infinity)
= 1 - 0.8
= 0.2
Equivalently, for this type-0 unity-feedback loop, e_ss = 1/(1 + L(0)) = 1/(1 + 4) = 0.2. Increasing proportional gain would reduce that idealized step error and shorten the idealized time constant, but this example does not claim that arbitrary gain is safe or robust in a real plant with delay, higher-order poles, noise, and saturation.
Checks that should survive every edit
- The feedback arrow returns from
Y(s)throughH(s)to the negative input, and the reference enters the positive input. - The forward numerator is
C(s)G(s); the loop denominator includesC(s)G(s)H(s). - Negative feedback produces
1 + L(s)in the denominator under the stated sign convention. - Units are consistent: every term added to
2s + 1is dimensionless, so the coefficient onscarries seconds. - The only pole is
-2.5 s^-1; the stated0.4 stime constant is its reciprocal magnitude. - The unit-step final value from
T(0)is4/5 = 0.8, matching the exponential response. - Every numeric checkpoint uses
t/tauin the exponential and is rounded only after evaluation. - The source version, model assumptions, and feedback sign travel with the figure.
One high-value negative test is to change sum(+in, -H) to sum(+in, +H). The algebra becomes positive feedback:
T_positive(s) = 4/(2s + 1 - 4)
= 4/(2s - 3)
Its pole is +1.5 s^-1, in the right half-plane, so the simplified linear model is unstable. A missing minus mark is therefore a changed system, not a typographic defect.
Failure modes and engineering boundary
Common review failures are tracing the feedback line to the wrong summing input, dropping the sensor transfer function from the loop product, treating controller gain as the entire loop gain, cancelling factors without checking hidden unstable dynamics, mixing continuous and discrete models, omitting delay, and quoting a settling value without saying whether it is relative to the final value or the reference.
Schematex renders topology and notation deterministically; it does not simplify transfer functions, simulate a response, identify a plant, calculate margins, test robustness, or select a controller. The worked model also says nothing about actuator authority, saturation recovery, sensor range, sampling rate, quantization, noise amplification, mechanical limits, or failure behavior.
Paste the source into the Schematex playground, confirm the rendered + and − marks, and then replace one model element at a time. Recompute L(s), T(s), poles, units, final value, and at least the five time checkpoints after every change; if the real system is higher-order, delayed, sampled, nonlinear, or safety-related, move the validated model into the project's approved analysis and simulation workflow before drawing conclusions.