Every time you switch on a light or charge your phone, energy flows from the grid into your home. A meter is the device that measures exactly how much energy you consumed — so the utility can bill you, and the grid can be managed.
From Spinning Disk to Digital Chip
The oldest meters used a Ferraris disk — an aluminum disc that spun faster as you drew more power. The number of rotations was mechanically counted and displayed on a register. Simple, robust, and used for over a century.
Modern digital meters replace the spinning disk with silicon. A metrology IC samples voltage and current thousands of times per second and computes energy with far greater accuracy.
title "Voltage and Current Waveforms"
time start=0 end=20 unit=ms divisions=10
V: sine label="Voltage (230V AC)" amplitude=1 cycles=1 unit="pu"
I: sine label="Current (resistive load)" amplitude=0.8 cycles=1 unit="pu"
What a Meter Measures
| Quantity | Symbol | Unit | What it means |
|---|---|---|---|
| Active energy | kWh | kilowatt-hour | Real energy consumed |
| Reactive energy | kVArh | kilovar-hour | Energy for magnetic fields (motors, transformers) |
| Apparent energy | kVAh | kilovolt-ampere-hour | Total energy drawn from the grid |
| Power factor | PF | dimensionless 0–1 | Ratio of active to apparent power |
| Maximum demand | MD | kW or kVA | Peak load in a billing period |
Single-Phase vs Three-Phase
Homes use single-phase supply (230 V, one live conductor). Factories use three-phase supply (415 V, three live conductors) for heavy machinery.
CT and PT Based Metering
For large industrial loads, the current is too high to wire directly into the meter. A Current Transformer (CT) steps it down to a safe 5 A secondary. A Potential Transformer (PT) similarly steps high voltage down to a measurable level (typically 110 V).
define CT annotation=CT label="Current Transformer" {
pin 1 P1 left
pin 2 P2 right
pin 3 S1 bottom
pin 4 S2 bottom
}
define IC annotation=U label="Metrology IC" {
pin 1 Iin left
pin 2 Vin left
pin 3 VDD top
pin 4 GND bottom
}
define RH annotation=R label="R1 high" {
pin 1 A top
pin 2 B bottom
}
define RL annotation=R label="R2 low" {
pin 1 A top
pin 2 B bottom
}
define CAP annotation=C label="Bypass" {
pin 1 P top
pin 2 N bottom
}
CT1: CT value="400/5A"
U1: IC value="ADE7758"
R1: RH value="1MOhm"
R2: RL value="1kOhm"
C1: CAP value="100nF"
layout direction=LR gap=70
CT1.P1 --> global:LINE
R1.A --> global:LINE
CT1.P2 --> global:NEUTRAL
R2.B --> global:NEUTRAL
R1.B --> global:VMID
R2.A --> global:VMID
U1.Vin --> global:VMID
CT1.S1 --> U1.Iin
CT1.S2 --> global:GND
U1.GND --> global:GND
C1.N --> global:GND
U1.VDD --> global:VCC
C1.P --> global:VCC
Key Takeaway
A meter is not just a billing device — it is a precision instrument that must maintain accuracy across temperature extremes, varying loads, and poor power factor. Understanding what it measures is the foundation of everything else in this handbook.