Part I: Circuit Fundamentals | Chapter 3

AC Analysis & Phasors

Sinusoidal steady-state analysis using complex phasors, impedance, complex power, and resonance.

Sinusoidal Signals & Phasors

In AC steady-state analysis all voltages and currents are sinusoidal at the same angular frequency \( \omega \). The general sinusoidal voltage is:

\[ v(t) = V_m \cos(\omega t + \phi) \]

where \( V_m \) is the peak amplitude, \( \omega = 2\pi f \) is the angular frequency, and \( \phi \) is the phase. A phasor is the complex number that encodes amplitude and phase:

\[ \mathbf{V} = V_m e^{j\phi} = V_m\angle\phi, \qquad v(t) = \operatorname{Re}\!\left[\mathbf{V}\,e^{j\omega t}\right] \]

The key advantage: differentiation in the time domain becomes multiplication by \( j\omega \) in the phasor domain, converting differential equations into algebraic ones.

Complex Impedance

Impedance \( \mathbf{Z} = \mathbf{V}/\mathbf{I} \) generalises resistance to reactive elements. For the three basic elements:

Resistor
\[ Z_R = R \]

Real, frequency-independent. Voltage and current in phase.

Capacitor
\[ Z_C = \frac{1}{j\omega C} \]

Decreases with frequency. Current leads voltage by 90°.

Inductor
\[ Z_L = j\omega L \]

Increases with frequency. Voltage leads current by 90°.

Impedances combine exactly like resistances: series addition and parallel reciprocal addition apply directly using complex arithmetic.

Complex Power & Power Factor

For a load with impedance \( \mathbf{Z} = |\mathbf{Z}|e^{j\theta} \), the complex power is:

\[ S = \mathbf{V}\,\mathbf{I}^* = P + jQ = |\mathbf{S}|\angle\theta \]
Real power P

Watts (W). Energy consumed per second. \( P = |\mathbf{S}|\cos\theta \).

Reactive power Q

VAR. Oscillates between source and storage. \( Q = |\mathbf{S}|\sin\theta \).

Power factor

\( \text{PF} = \cos\theta = P/|S| \). Unity at resonance (pure resistive load).

Resonance

In a series RLC circuit, resonance occurs when the imaginary part of \( \mathbf{Z} \) vanishes — i.e., when \( \omega L = 1/(\omega C) \):

\[ \omega_0 = \frac{1}{\sqrt{LC}}, \qquad |\mathbf{Z}|_{\min} = R, \qquad \text{PF} = 1 \]

At resonance the impedance is purely resistive, power factor is unity, and the current is maximised. The voltage across the reactive elements can exceed the source voltage by a factor of \( Q \):\( V_L = V_C = Q \cdot V_s \) at \( \omega_0 \).

Python: RLC Bode Plot & Power Factor

Compute and plot the impedance magnitude and phase (Bode plot) of a series RLC circuit across six decades of frequency, show the resonance peak in the bandpass transfer function, and visualise power factor.

RLC Impedance Bode Plot, Resonance & Power Factor

Python
ac_phasors_bode.py121 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server