A current transformer ring is a toroidal inductive sensor that clamps around a single AC conductor to step down high primary current into a safely measurable, proportional secondary current. Instead of forcing you to break a live mains circuit and insert a shunt resistor, a CT ring changes the installation paradigm by providing galvanic isolation and stepping 100A or 200A down to milliamp or low-voltage signals that microcontrollers and digital multimeters can process without direct electrical contact.

How a Current Transformer Ring Steps Down High AC

At its core, a CT ring operates on the same magnetic induction principles as a standard power transformer, but with a crucial physical difference: the primary winding is not a coil of wire inside the device, but rather the single AC power cable passing through the center of the toroid. Because the primary is just one turn ($N_p = 1$), the secondary winding must contain hundreds or thousands of turns of fine enameled copper wire ($N_s$) wrapped around a high-permeability iron or ferrite core.

Just as a mechanical gearbox trades high rotational speed for high torque, a CT trades high primary current for a manageable secondary signal, governed strictly by the inverse turns ratio. The relationship is defined as:

$I_s = I_p \times (N_p / N_s)$

If you pass a 100A mains wire through a CT with a 1:2000 turns ratio, the secondary outputs exactly 50mA. This isolation is what makes CT rings indispensable for mains monitoring. However, this magnetic coupling introduces a severe safety hazard unique to current transformers: never open-circuit a CT while primary current is flowing. Without a secondary load (a burden resistor) to create a counter-magnetomotive force, the core rapidly saturates. The secondary winding then acts as a massive step-up voltage transformer, generating thousands of volts that can arc across terminals, shatter the core, and destroy connected electronics. Always ensure the secondary is shorted or connected to a burden before energizing the primary circuit.

Standard CT Ring Specifications and Sizing Data

Selecting the right CT ring requires matching the primary ampacity, the physical window size, and the secondary output type to your measurement hardware. Below is a reference table of common CT rings used in both DIY embedded projects and commercial metering installations.

Model / Type Primary Rating Secondary Output Turns Ratio Typical Burden Accuracy Class
YHDC SCT-013-000 (Split Core) 100A 50mA 1:2000 External (e.g., 33Ω) ±3.0%
YHDC SCT-016 (Split Core) 120A 333mV 1:3000 Internal ±1.0%
Magnelab 50A (Solid Core) 50A 5A 1:10 0.15VA (Ext) Class 0.5
Accuenergy 200A (Split Core) 200A 333mV 1:3000 Internal ±0.5%
Generic Revenue Metering (Solid) 400A 5A 1:80 5VA (Ext) Class 0.2

Note: Split-core CTs feature a hinged air gap for easy retrofitting over existing wires, while solid-core CTs require disconnecting the wire to thread it through, offering superior accuracy due to the continuous magnetic path.

Where You Meet Current Transformer Rings in Practice

You will encounter CT rings in almost every modern AC monitoring application. Commercial home energy monitors like the Emporia Vue or Sense use arrays of 14 to 32 split-core CT rings to monitor individual branch circuits in a residential panel. In solar installations, grid-tied inverters use CT rings on the main service feeder for anti-islanding protection and to zero-export excess power to the grid. For hobbyists and engineers, CT rings are the standard interface between dangerous 120V/240V AC mains and 3.3V/5V microcontrollers like the ESP32 or Arduino.

Worked Example: Interfacing a 100A CT with an ESP32 ADC

Let’s calculate the exact analog front-end required to read a YHDC SCT-013-000 (100A primary, 50mA secondary) using an ESP32 DevKit v1. The ESP32’s ADC operates from 0V to 3.3V, but AC current swings positive and negative. We must bias the CT signal to a 1.65V DC midpoint.

Calculation Steps:
  1. Find Peak Secondary Current: At max 100A primary, secondary RMS is 0.05A. The peak current is $0.05 \times \sqrt{2} = 0.0707A$.
  2. Determine Max Allowable Voltage Swing: To avoid the ESP32's notoriously noisy ADC rails (below 0.15V and above 3.15V), we limit our peak voltage swing to 1.5V around the 1.65V bias.
  3. Calculate Burden Resistor: $R = V_{peak} / I_{peak} = 1.5V / 0.0707A = 21.2\Omega$. We select the nearest standard resistor value: 22Ω.
  4. Verify Voltage Range: At 100A, the actual peak voltage is $0.0707 \times 22 = 1.55V$. Adding the 1.65V bias, the ADC sees a clean swing from 0.10V to 3.20V, perfectly utilizing the ESP32's linear ADC range without clipping.

For deeper theoretical modeling of the phase shift and core magnetization current inherent in this setup, the OpenEnergyMonitor CT Theory guide provides excellent mathematical breakdowns of the equivalent circuit.

Common Confusions and Selection Mistakes

When specifying a sensor for AC measurement, engineers and hobbyists frequently confuse CT rings with other topologies. Understanding these differences prevents costly design errors.

CT Ring vs. Rogowski Coil:
A Rogowski coil looks similar to a split-core CT but is constructed as a flexible, air-core helical coil. Because it lacks an iron core, it cannot saturate and can measure massive fault currents (10,000A+). However, a Rogowski coil outputs a voltage proportional to the rate of change of current ($di/dt$), not the current itself. It requires an active analog integrator circuit to reconstruct the AC waveform, whereas a standard CT ring outputs a direct proportional signal.

Current Output (5A/50mA) vs. Voltage Output (333mV):
This is the most common purchasing mistake. A current-output CT (like the SCT-013-000) has no internal burden resistor. It is safe to short-circuit the leads, but dangerous to open-circuit them under load. A voltage-output CT (like the SCT-016) contains an internal burden resistor. It is safe to open-circuit the leads, but dangerous to short-circuit them, as the internal resistor will overheat and burn out. Always verify the datasheet before wiring your terminal block.

CT Ring vs. Shunt Resistor:
A shunt resistor measures AC or DC by inserting a low-value resistor (e.g., 0.001Ω) directly in series with the load. While shunts are cheaper and measure DC, they break galvanic isolation, introduce insertion power loss ($I^2R$ heating), and require complex isolation amplifiers to interface with microcontrollers on high-side mains measurements. CT rings remain the superior choice for non-intrusive, isolated AC current measurement.