The fundamental power equation in an AC circuit dictates that Apparent Power (S) is the product of RMS voltage and RMS current, which splits vectorially into Real Power (P) and Reactive Power (Q). While textbooks derive this with abstract phasor diagrams, bench validation requires a physical topology. In this guide, we will design, calculate, and breadboard a series Resistor-Inductor (RL) circuit to prove the AC power equations using real component values, while highlighting the measurement traps that routinely destroy bench equipment.

Topology and Node Definitions for the Series RL Load

To demonstrate the power equation in an AC circuit, we use a Series RL Topology. We specifically choose a series configuration over a parallel RL circuit for bench measurement: in a series loop, the current is identical through both components, allowing us to derive the current waveform by measuring the voltage drop across the resistor. A parallel topology would require multiple current shunts or a differential probe to isolate branch currents, complicating the setup.

For oscilloscope compatibility, we must arrange the components with respect to earth ground. Standard oscilloscope probe grounds are tied directly to earth ground via the power cord. If you place the resistor at the top and the inductor at the bottom, grounding the middle node will short out the inductor. Therefore, our topology is ordered as follows:

  • Node A (Source): AC Function Generator output (Hot).
  • Component L1: Inductor connected between Node A and Node B.
  • Node B (Junction): The midpoint between the inductor and resistor.
  • Component R1: Resistor connected between Node B and Node C.
  • Node C (Ground): Common ground, tied to the function generator ground and oscilloscope ground.
⚠ Callout Tip: The Scope Ground Trap
Never float your oscilloscope or use a 3-prong to 2-prong cheater plug to defeat the earth ground just to measure the voltage across the top component. This is a severe shock hazard and can destroy your scope's input stage if a ground loop occurs. Always place the component you want to measure with a single-ended probe at the bottom (Node B to Node C), or use a differential probe.

Component Selection and Power Equation Data Table

Let us design this circuit for a standard 60Hz AC line frequency equivalent, driven by a bench function generator set to 5VRMS (approximately 14.14V peak-to-peak). We want a phase angle (θ) close to 45° to clearly visualize the split between real and reactive power.

Design Walkthrough:

  1. Resistor (R1): Select a standard 100Ω carbon film resistor (1/4W rating). At 5VRMS and ~35mA, power dissipation will be well under the 250mW limit.
  2. Inductor (L1): To achieve a 45° phase shift, the inductive reactance (XL) must equal the resistance (R). Therefore, we need XL = 100Ω.
    Using the formula XL = 2πfL, we solve for L:
    100 = 2 × π × 60 × L → L ≈ 265mH.
    We will select a standard off-the-shelf 270mH radial leaded inductor (e.g., Bourns 78FR27K).

Here is the complete spec-sheet-table calculating the power equation parameters for this exact topology:

Parameter Symbol Formula Calculated Value
Inductive Reactance XL 2 × π × 60Hz × 0.27H 101.78 Ω
Total Impedance Z √(R² + XL²) 142.69 Ω
RMS Current IRMS VRMS / Z (5V / 142.69Ω) 35.04 mA
Phase Angle θ arctan(XL / R) 45.5°
Real Power P I² × R (or S × cos θ) 122.8 mW
Reactive Power Q I² × XL (or S × sin θ) 125.0 mVAR
Apparent Power S VRMS × IRMS 175.2 mVA
Power Factor PF cos(θ) or P / S 0.701 (Lagging)

This table perfectly illustrates the core power equation in an AC circuit: S² = P² + Q². If you square 175.2, it equals the sum of 122.8² and 125.0² (accounting for minor rounding). For a deeper theoretical breakdown of the power triangle, refer to the All About Circuits AC Power chapter.

Behavior Matrix and Extreme Failure Modes

Understanding how the power equation reacts to component drift or failure is critical for designing protective circuits. Below is the behavior matrix showing what happens to our power parameters when one element changes or fails entirely.

Condition Impedance (Z) Real Power (P) Reactive Power (Q) Power Factor
Baseline (R=100Ω, L=270mH) 142.69 Ω 122.8 mW 125.0 mVAR 0.701
R increases to 1kΩ 1005 Ω Drops to ~24 mW Drops to ~2.5 mVAR Approaches 1.0
L increases to 1H 391 Ω Drops to ~16 mW Increases to ~61 mVAR Drops to ~0.25
R Opens (Infinite) 0 W 0 VAR N/A
R Shorts (0Ω) 101.78 Ω 0 W 244 mVAR 0.0
L Opens (Infinite) 0 W 0 VAR N/A
L Shorts (0Ω) 100 Ω 250 mW 0 VAR 1.0

What breaks at the extremes?
If R opens, current ceases, and Node B floats up to the full 5VRMS source potential. No damage occurs, but the circuit ceases to do work.
If L shorts (e.g., the inductor winding insulation melts and turns into a dead short), the impedance drops to purely resistive (100Ω). The current spikes to 50mA, and the Real Power (P) jumps to 250mW. Because our resistor is rated for 1/4W (250mW), it is now operating at 100% capacity. In a real-world scenario with component tolerances and poor airflow, the resistor will overheat, drift in value, and eventually fail open. This is why engineers derate resistors to 50% of their maximum wattage in continuous AC designs.

Breadboard Testing and Measurement Steps

To validate the power equation in this AC circuit on the bench, you need a function generator, a 2-channel oscilloscope, and a True-RMS multimeter (like the Fluke 87V). Follow these exact steps to measure the phase angle and calculate power without blowing a fuse.

  1. Wire the Topology: Insert the 270mH inductor and 100Ω resistor in series on the breadboard. Connect the function generator's center pin (Hot) to the inductor (Node A). Connect the function generator's ground shield to the bottom of the resistor (Node C).
  2. Configure the Source: Set the function generator to a Sine wave, 60Hz frequency, and 14.14Vpp (which equals exactly 5VRMS). Verify this with your True-RMS multimeter across Node A and Node C.
  3. Connect the Oscilloscope:
    • Attach Channel 1 probe tip to Node A (Source). Attach CH1 ground clip to Node C.
    • Attach Channel 2 probe tip to Node B (the junction between L and R). Attach CH2 ground clip to Node C.
  4. Interpret the Waveforms: CH1 displays the total source voltage (VS). CH2 displays the voltage across the resistor (VR). Because a resistor has no phase shift, VR is perfectly in phase with the circuit current (I). Therefore, CH2 acts as our current proxy.
  5. Measure Phase Shift (θ): Use the scope's cursor function to measure the time delay (Δt) between the zero-crossing of CH1 and CH2. At 60Hz, one full cycle (360°) is 16.67ms.
    Formula: θ = (Δt / 16.67ms) × 360°.
    You should measure a delay of roughly 2.1ms, yielding a phase angle of ~45.5°, confirming our math.
💡 Pro-Tip: Power Factor Correction
If this were a 120V mains motor circuit with a 0.70 lagging power factor, the utility company would penalize you for the 125mVAR of reactive power bouncing back and forth. To correct this, you would add a capacitor in parallel with the entire RL branch. The capacitive reactive power (QC) would cancel the inductive reactive power (QL), pushing the power factor back toward 1.0 and reducing the apparent power (S) drawn from the grid. Read more on Fluke's guide to Power Factor and Power Quality.

Real-World Edge Cases in AC Power Design

The math above assumes ideal components. When you scale this power equation from a breadboard to a 10A industrial load, physical realities alter the equations:

  • Skin Effect: At 60Hz, skin effect in a small 270mH inductor is negligible. But if you drive this circuit at 10kHz, the AC current will migrate to the outer surface of the copper wire. This increases the effective AC resistance (RAC) of the inductor's winding, introducing unintended Real Power (heat loss) inside the reactive component.
  • Core Saturation: The Bourns 78FR27K uses a ferrite core. If you increase the source voltage to 50VRMS, the current will rise, and the magnetic flux in the core may saturate. Once saturated, the inductance (L) drops drastically. Your XL will plummet, Z will drop, and current will spike non-linearly, completely invalidating the linear power equations used in our table.
  • Parasitic Capacitance: Every wound inductor has parasitic parallel capacitance between its wire turns. At high frequencies, this creates a parallel LC tank circuit. If your operating frequency approaches the inductor's Self-Resonant Frequency (SRF), the component stops acting like an inductor and begins acting like a capacitor, flipping your power factor from lagging to leading.

By anchoring the abstract power equation in a physical series RL topology, you bridge the gap between textbook phasor math and the actual waveforms you see on the oscilloscope. Always respect the scope ground, derate your resistors, and remember that in AC design, apparent power is what your wiring must handle, but real power is what actually does the work.