
Sistem Kendali 2.1
By the end of this session, you will be able to:
Single block:

Cascaded blocks:

Tip
Think: time domain = “oscilloscope view”. Laplace/frequency domain = “algebra and plots” view for design.
We define the (unilateral) Laplace transform as
\[ \mathcal{L}[f(t)] = F(s) = \int_{0^-}^{\infty} f(t) e^{-st}\, dt,\quad s=\sigma + j\omega \]
Inverse Laplace transform:
\[ \mathcal{L}^{-1}[F(s)] = \frac{1}{2\pi j} \int_{\sigma - j\infty}^{\sigma + j\infty} F(s)e^{st} ds = f(t) u(t) \]
Time domain \(f(t)\)
Laplace domain \(F(s)\)
Important
These seven pairs cover most standard test signals in control: impulse, step, ramp, exponentials, and sinusoids. You should be able to recognize and use them without a table over time.
Use the definition to compute the Laplace transform of \(f(t) = Ae^{-at}u(t)\).
We want \(\mathcal{L}[f(t)]\) for \(f(t) = A e^{-a t} u(t)\).
Since there is no impulse at \(t=0\), we can start at 0:
\[ \begin{aligned} F(s) &= \int_{0}^{\infty} A e^{-a t} e^{-s t} dt \\ &= A \int_{0}^{\infty} e^{-(s + a)t} dt \\ &= -\frac{A}{s+a} e^{-(s+a)t} \bigg|_{0}^{\infty} \\ &= \frac{A}{s+a} \end{aligned} \]
So
\[ \mathcal{L}[A e^{-a t} u(t)] = \frac{A}{s + a} \]
Linearity
Frequency shift
Differentiation in time
Integration in time
Value theorems:
Warning
Value theorems have conditions:
Given:
\[ F_1(s) = \frac{1}{(s+3)^2} \]
We know from Table 2.1:
Use the frequency shift theorem:
So with \(a = 3\):
\[ \mathcal{L}^{-1}\left[\frac{1}{(s+3)^2}\right] = e^{-3t} t u(t) \]
Many \(F(s)\) arise as ratios of polynomials:
\[ F(s) = \frac{N(s)}{D(s)},\quad \deg N < \deg D \]
Usually not in table form directly.
Strategy:
Note
If \(\deg N \ge \deg D\), perform polynomial long division first to get polynomial + proper fraction (numerator degree < denominator degree).
Given
\[ F_1(s) = \frac{s^3 + 2s^2 + 6s + 7}{s^2 + s + 5} \]
Perform polynomial division:
\[ F_1(s) = s + 1 + \frac{2}{s^2 + s + 5} \]
Then inverse Laplace:
\[ f_1(t) = \frac{d\delta(t)}{dt} + \delta(t) + \mathcal{L}^{-1}\left[\frac{2}{s^2 + s + 5}\right] \]
Example:
\[ F(s) = \frac{2}{(s+1)(s+2)} \]
Assume
\[ F(s) = \frac{K_1}{s+1} + \frac{K_2}{s+2} \]
Solve residues:
So
\[ F(s) = \frac{2}{s+1} - \frac{2}{s+2} \]
Inverse Laplace:
\[ f(t) = 2 e^{-t} - 2 e^{-2t} \]
Tip
For distinct real poles at \(-p_1, -p_2, ..., -p_n\):
\[ F(s) = \sum_{i=1}^n \frac{K_i}{s + p_i},\quad K_i = (s + p_i) F(s)\big|_{s = -p_i} \]
Given system:
\[ \frac{d^2 y}{dt^2} + 12 \frac{dy}{dt} + 32 y = 32 u(t),\quad y(0^-) = 0,\ \dot{y}(0^-) = 0 \]
\[ s^2 Y(s) + 12 s Y(s) + 32 Y(s) = \frac{32}{s} \]
\[ Y(s) = \frac{32}{s(s^2 + 12s + 32)} = \frac{32}{s (s+4)(s+8)} \]
Now we just need partial fractions.
Assume
\[ Y(s) = \frac{K_1}{s} + \frac{K_2}{s+4} + \frac{K_3}{s+8} \]
Use cover‑up method:
So
\[ Y(s) = \frac{1}{s} - \frac{2}{s+4} + \frac{1}{s+8} \]
Inverse Laplace:
\[ y(t) = 1 - 2 e^{-4t} + e^{-8t} \]
Note
We often drop the explicit \(u(t)\) factor in notation, assuming causal systems with inputs applied at \(t=0\).
Try a partial‑fraction expansion of
\[ F(s) = \frac{2}{(s+1)(s+2)} \]
Modify the expression in the code cell to experiment with other denominators.
Example:
\[ F(s) = \frac{2}{(s+1)(s+2)^2} \]
We write:
\[ F(s) = \frac{K_1}{s+1} + \frac{K_2}{(s+2)^2} + \frac{K_3}{s+2} \]
Procedure:
So
\[ f(t) = 2 e^{-t} - 2 t e^{-2t} - 2 e^{-2t} \]
Tip
For a repeated pole at \(s = -p\) of multiplicity \(r\), the expansion is
\[ \sum_{i=1}^r \frac{K_i}{(s+p)^i} \]
Corresponding time terms are of the form \(t^{i-1} e^{-p t}\).
Example:
\[ F(s) = \frac{3}{s(s^2 + 2s + 5)} \]
We use
\[ F(s) = \frac{K_1}{s} + \frac{K_2 s + K_3}{s^2 + 2s + 5} \]
So
\[ F(s) = \frac{3/5}{s} - \frac{3}{5}\frac{s+2}{s^2 + 2s + 5} \]
Complete the square:
\[ s^2 + 2s + 5 = (s + 1)^2 + 2^2 \]
Rewrite:
\[ F(s) = \frac{3/5}{s} - \frac{3}{5} \frac{(s+1) + 1}{(s+1)^2 + 4} \]
Match with
\[ \mathcal{L}[A e^{-a t}\cos\omega t + B e^{-a t}\sin\omega t] = \frac{A(s+a) + B\omega}{(s+a)^2 + \omega^2} \]
Yield
\[ f(t) = \frac{3}{5} - \frac{3}{5} e^{-t}\left(\cos 2t + \frac{1}{2} \sin 2t\right) \]
Or equivalently
\[ f(t) = 0.6 - 0.671 e^{-t} \cos(2t - \phi), \quad \phi \approx 26.57^\circ \]
Note
Complex poles → damped sinusoidal modes (oscillations that decay over time). This is crucial for understanding underdamped systems (e.g., RLC circuits, motor torque responses).
We can also expand
\[ \frac{3}{s(s^2+2s+5)} = \frac{3}{s(s+1+j2)(s+1-j2)} \]
as
\[ F(s) = \frac{K_1}{s} + \frac{K_2}{s+1+j2} + \frac{K_3}{s+1-j2} \]
\(K_2\) and \(K_3\) are complex conjugates.
After inverse Laplace, exponentials with \(e^{\pm j2t}\) combine via
\[ \cos\theta = \frac{e^{j\theta}+e^{-j\theta}}{2},\quad \sin\theta = \frac{e^{j\theta}-e^{-j\theta}}{2j} \]
to the same real expression as before.
Exercise 2.1: Find \(\mathcal{L}[f(t)]\) for \(f(t) = t e^{-5t} u(t)\).
Using Table 2.1 and frequency shift:
\[ \mathcal{L}[t e^{-5t} u(t)] = \frac{1}{(s + 5)^2} \]
We now connect Laplace transforms to transfer functions.
Start from a general LTI differential equation:
\[ a_n \frac{d^n c}{dt^n} + a_{n-1} \frac{d^{n-1} c}{dt^{n-1}} + \cdots + a_0 c(t) = b_m \frac{d^m r}{dt^m} + \cdots + b_0 r(t) \]
Take Laplace transforms (with zero initial conditions):
\[ (a_n s^n + a_{n-1} s^{n-1} + \cdots + a_0) C(s) = (b_m s^m + b_{m-1} s^{m-1} + \cdots + b_0) R(s) \]
Form the ratio
\[ \frac{C(s)}{R(s)} = G(s) = \frac{b_m s^m + b_{m-1} s^{m-1} + \cdots + b_0} {a_n s^n + a_{n-1} s^{n-1} + \cdots + a_0} \]
This \(G(s)\) is the transfer function:
Important
The denominator of \(G(s)\) is the characteristic polynomial. Its roots → poles → fundamental dynamics (stability, oscillation, speed).

Given DE:
\[ \frac{dc}{dt} + 2c(t) = r(t) \]
\[ s C(s) + 2 C(s) = R(s) \]
\[ G(s) = \frac{C(s)}{R(s)} = \frac{1}{s + 2} \]
So the system is a first‑order low‑pass with pole at \(s = -2\).
We use \(G(s) = 1/(s+2)\) and input \(r(t) = u(t)\).
\[ C(s) = G(s) R(s) = \frac{1}{s(s+2)} \]
\[ C(s) = \frac{1/2}{s} - \frac{1/2}{s+2} \]
\[ c(t) = \frac{1}{2} - \frac{1}{2} e^{-2t} \]
Interpretation:
Tip
You can check final value via final value theorem:
\[ c(\infty) = \lim_{s\to0} s \cdot C(s) = \lim_{s\to0} \frac{s}{s(s+2)} = \frac{1}{2} \]
Exercise 2.3: From DE
\[ \frac{d^3 c}{dt^3} + 3\frac{d^2 c}{dt^2} + 7\frac{dc}{dt} + 5c = \frac{d^2 r}{dt^2} + 4\frac{dr}{dt} + 3r \]
Transfer function:
\[ G(s) = \frac{s^2 + 4s + 3}{s^3 + 3s^2 + 7s + 5} \]
Exercise 2.4: From \(G(s)\) back to DE:
\[ G(s) = \frac{2s + 1}{s^2 + 6s + 2} \]
multiply both sides by denominator and inverse Laplace to get
\[ \frac{d^2 c}{dt^2} + 6\frac{dc}{dt} + 2c = 2\frac{dr}{dt} + r \]
Exercise 2.5: Ramp response from \(G(s) = \dfrac{s}{(s+4)(s+8)}\)
1. RC low‑pass filter
Circuit: resistor R in series, capacitor C to ground.
Input: \(v_{in}(t)\), output: \(v_{out}(t)\) across C.
DE:
\[ RC \frac{dv_{out}}{dt} + v_{out} = v_{in} \]
Transfer function:
\[ G(s) = \frac{V_{out}(s)}{V_{in}(s)} = \frac{1}{RC s + 1} \]
2. DC motor speed control (simplified)
Input: armature voltage \(V_a(t)\).
Output: angular speed \(\omega(t)\).
Linearized model often:
\[ J \frac{d\omega}{dt} + B \omega = K_t i_a,\quad L \frac{di_a}{dt} + R i_a + K_e \omega = V_a \]
Combine and Laplace to get \(G(s) = \Omega(s)/V_a(s)\): typically a second‑order transfer function.
Laplace transform definition:
\[ \mathcal{L}[f(t)] = F(s) = \int_{0^-}^{\infty} f(t) e^{-s t}\, dt \]
Inverse Laplace:
\[ \mathcal{L}^{-1}[F(s)] = \frac{1}{2\pi j} \int_{\sigma - j\infty}^{\sigma + j\infty} F(s)e^{st}\, ds = f(t)u(t) \]
Selected transform pairs:
Key theorems:
Transfer function (zero initial conditions):
From DE:
\[ \frac{C(s)}{R(s)} = G(s) = \frac{b_m s^m + \cdots + b_0} {a_n s^n + \cdots + a_0} \]
Input–output relation:
\[ C(s) = G(s) R(s) \]