CT metering uses a current transformer to proportionally step down high AC line current to a safe, standardized secondary current (typically 5A or 1A) that a standard wattmeter or energy monitor can safely measure. Instead of forcing 400 amps of raw, lethal busbar current through the delicate shunts of a digital power meter, CT metering changes the physical architecture of the installation: it isolates the metering electronics and allows you to route a low-current secondary signal through lightweight 14 AWG control wire. Think of it like a heavy-duty hydraulic scale that uses a small bypass piston to measure the pressure of a massive water main without forcing the entire river through the gauge.

The Core Concept: Magnetic Coupling and Ratios

At its heart, a current transformer (CT) operates on the same electromagnetic induction principles as a standard voltage transformer, but with a critical difference in how it is connected. While a voltage transformer is connected in parallel with the load, a CT is connected in series. The primary 'winding' is often just the single feeder cable or busbar passing through the center of the CT's toroidal iron core.

The alternating current in that primary conductor creates a fluctuating magnetic field in the core, which induces a proportional current in the secondary winding (the hundreds of turns of fine wire wrapped around the core). The ratio of primary to secondary turns dictates the step-down ratio. If you pass a 400A feeder through a CT with a 400:5 ratio, the secondary winding will output exactly 5A when the primary is carrying its full 400A load. According to All About Circuits, this proportional relationship holds true across the entire operating range, allowing the meter to simply multiply the secondary reading by the ratio to determine the true primary current.

Safety Warning: Never open-circuit the secondary of an energized CT. Without a burden (a meter or a shorting block) to consume the induced energy, the CT will attempt to drive infinite current, stepping up the secondary voltage to lethal levels (often exceeding 2,000V) and potentially exploding the core or electrocuting the operator. Always short the secondary terminals before disconnecting a meter.

The Math: A Worked Numeric Example

Let's look at a real-world 3-phase commercial installation to see how CT ratios translate to actual power readings on a digital meter display.

  • System Voltage: 480V AC, 3-phase
  • Service Size: 400A main breaker
  • CT Ratio Installed: 400:5 (Multiplier = 80)
  • Assumed Power Factor (PF): 0.95

You connect your power analyzer to the secondary side of the CTs. Under normal daytime operating conditions, the meter reads a secondary current of 3.75A on Phase A.

  1. Calculate Primary Current: 3.75A (secondary) × 80 (multiplier) = 300A (primary).
  2. Calculate True Power (kW): Use the 3-phase power formula: P = √3 × V × I × PF.
  3. Plug in the primary values: 1.732 × 480V × 300A × 0.95 = 236,937 Watts, or 236.9 kW.

If your meter is programmed with the CT ratio (×80), it performs this math internally and displays 300A and 236.9 kW directly on the screen. If you are using a raw IoT sensor or an Arduino, you must apply this multiplier in your firmware.

Where You Meet CT Metering in Practice

You will rarely encounter CT metering in a standard residential 200A service, where direct-drive meters are the norm. However, CTs become mandatory in several specific scenarios:

  • Commercial Service Entrances: Any service rated above 200A (typically 400A to 4000A) requires CTs because no commercial solid-state meter can physically handle the busbar connections or the thermal dissipation of a 1200A direct shunt.
  • Solar PV Net Metering: Utilities require CTs to measure backfeed on commercial solar arrays. The CTs are placed on the main utility feeders to monitor power flowing backward into the grid, isolated from the inverter's high-frequency switching noise.
  • Tenant Sub-Metering: In multi-tenant office buildings or strip malls, landlords use compact split-core CTs clamped onto individual feeder wires inside a shared switchgear to bill tenants for exact kWh usage without installing separate utility-grade meters.
  • Large Motor and VFD Monitoring: Variable Frequency Drives output high-frequency, non-sinusoidal waveforms. Specialized wideband CTs are used to monitor motor current without being saturated by the VFD's high dv/dt noise.

Common Confusions: CTs vs. Direct-Drive and Hall-Effect

When specifying metering equipment, people frequently confuse CT-based systems with other topologies. Understanding the difference prevents catastrophic purchasing mistakes.

Direct-Drive (Self-Contained) Metering: In a direct-drive setup, the actual load current passes directly through the meter's internal shunts. This is common in residential 100A/200A panels. The confusion arises when electricians assume they can use a direct-drive meter on a 400A commercial service. You cannot; the meter will melt. Above 200A, you must transition to CT metering.

Hall-Effect Sensors: Unlike CTs, which rely on electromagnetic induction and only work with AC, Hall-effect sensors measure the magnetic field generated by both AC and DC current. Makers often confuse the two when building Arduino-based energy monitors. If you need to measure DC battery current from a LiFePO4 bank, a standard iron-core CT will read zero; you must use a Hall-effect sensor like the Allegro ACS712 or a dedicated shunt with an INA219 amplifier.

Decision Tree: Which Metering Topology Do You Need?

Use this decision matrix to select the exact hardware topology and part number for your specific application.

Application Scenario Topology Choice Concrete Part Recommendation
Residential / Small Commercial (<200A), AC only, new panel build Direct-Drive Meter (No CTs required) Schneider Electric PM8E or Socomec DIRIS A10
Commercial Service (>200A), fixed busbar, new construction Solid-Core 5A CTs (Requires busbar disconnection to install) AccuEnergy ECT-1200-400 (400:5A, solid core)
Retrofit Sub-metering, cannot de-energize or disconnect existing feeders Split-Core CTs (Hinged design, clamps over live wire) Magnelab SCT-0750-400 (400:5A, split core)
Maker / IoT Project (ESP32/Arduino), measuring standard 120V/240V home circuits Voltage-Output Mini CT (Requires burden resistor and ADC biasing) YHDC SCT-013-000 (100A:1V output, 3.5mm jack)
Measuring DC Battery Banks or Solar DC strings Hall-Effect or Shunt-based sensor (CTs will not work) Victron SmartShunt 500A/50mV (with BMS integration)
Pro-Tip for IoT Builders: If you are using the popular YHDC SCT-013-000 with an ESP32, remember that the ESP32's ADC can only read 0V to 3.3V DC. The CT outputs an AC sine wave centered on 0V. You must build a voltage divider to bias the signal to 1.65V DC, and ensure your burden resistor is correctly sized so the peak-to-peak voltage never exceeds 3.3V, or you will permanently damage the ESP32's GPIO pins.

FAQ: Installation and Safety Gotchas

Q: Does the direction the CT is clamped onto the wire matter?
A: Yes, absolutely. CTs have polarity marks, usually indicated by an arrow, a white dot, or labels like P1/P2 (primary) and X1/X2 (secondary). The P1 side must face the source (the utility or breaker), and P2 must face the load. If you install the CT backward, the meter will read negative power (watts) and subtract energy from your total, which is a massive headache in commercial solar net-metering inspections.

Q: What is a 'burden resistor' and why do I need one?
A: A CT is a current source, not a voltage source. To get a measurable voltage signal for an oscilloscope or an Arduino ADC, you must place a resistor (the burden) across the secondary terminals to convert the current into voltage via Ohm's Law (V = I × R). If you are using a standard 5A commercial CT with a commercial meter, the meter has the burden built-in. If you are using a raw maker CT, you must calculate and solder the exact burden resistor specified in the datasheet to prevent core saturation and inaccurate readings. For deeper mathematical modeling of CT burden limits, refer to the Electrical Technology guide on CT saturation.

Q: Can I use a 400:5 CT on a 100A load?
A: You can, but your accuracy will be terrible. At 100A primary, a 400:5 CT only outputs 1.25A on the secondary. Most commercial meters are only rated for 1% accuracy down to 10% of their nominal current. Always size the CT primary rating as close to the maximum expected continuous load as possible, ideally keeping the normal operating load between 50% and 100% of the CT's primary rating.