Common mode chokes (CMC) and network transformers are frequently confused. They perform different functions and are often used together. Here's the complete technical breakdown.
Functional Comparison
Component Network Transformer Common Mode Choke
────────────────────────────────────────────────────────────────────
Galvanic isolation Yes (1500V AC) No
Impedance match Yes (1:1 for Ethernet) No
Signal coupling Across isolation barrier Conducted (no barrier)
Differential loss < 1.1 dB (spec) < 1 dB (target)
Common-mode reject 40–50 dB (balance + BST) High ZCM (90Ω–1kΩ+)
DC blocking Yes No
PoE support Yes (PoE-rated) Requires PoE-rated CMC
IEEE 802.3 mandate Mandatory Optional
Signal Path Architecture
PHY chip
│ (differential signal, 100Ω)
▼
Network Transformer (1CT:1CT)
│ Provides: isolation, impedance match, differential coupling
│ Bob Smith termination → chassis GND (common-mode drain)
▼
Common Mode Choke ← placed HERE, between transformer and RJ45
│ Provides: second-stage common-mode suppression
│ ZCM >> ZDiff (transparent to data, blocks common-mode)
▼
RJ45 Connector
│
▼
Cable (potential antenna for common-mode radiation)
Why Transformer Alone May Fail Class B
Simplified radiated emissions estimation
Cable radiation from common-mode current
freq_MHz = 100 # Frequency of concern
cable_length_m = 1.0 # Ethernet cable length
I_cm_uA = 5 # Residual common-mode current after transformer (µA)
Field strength at 10m (simplified dipole model, worst case)
E ≈ 60 × π × I × L × f / (c × d) [V/m]
import math
c = 3e8 # speed of light m/s
d = 10 # measurement distance m
f = freq_MHz * 1e6
E_Vm = 60 * math.pi * (I_cm_uA * 1e-6) * cable_length_m * f / (c * d)
E_dBuVm = 20 * math.log10(E_Vm * 1e6)
print(f"Estimated field: {E_dBuVm:.1f} dBµV/m @ {freq_MHz}MHz, {d}m")
print(f"CISPR 22 Class B limit: 40.0 dBµV/m @ 100MHz")
Even 5µA common-mode on a 1m cable can approach Class B limit
CMC Key Specifications
**
Parameter Target Value Notes
──────────────────────────────────────────────────────────────────
ZCM @ 100MHz > 90Ω (Class B) Higher = more suppression
> 600Ω (industrial/medical)
Differential ins. loss < 1 dB (1–100 MHz) Must not degrade data signal
Rated current ≥ PoE class if PoE Standard CMC saturates under PoE DC
Frequency curve Flat 10–200 MHz Check manufacturer's impedance plot
**PoE + CMC: The Saturation Problem
Standard CMC under PoE DC bias:
DC flows as common-mode current through both CMC windings
→ Flux adds in core (not cancels — it's common-mode)
→ Core saturates
→ Differential insertion loss rises
→ Signal quality degrades
Solution options:
- PoE-rated CMC (air-gapped core, rated for DC bias current)
- Integrated magnetic jack with PoE-compatible magnetics throughout
- Place CMC before PoE power injection point (topology-dependent) EMC Design Decision Tree Need CE marking / FCC Class B? ├── YES → Include CMC footprint (populate if needed after EMC test) └── NO (Class A or industrial only) → Transformer + Bob Smith may suffice
PoE enabled?
├── YES → PoE-rated CMC or integrated PoE magnetic jack
└── NO → Standard CMC
Emissions failure above 100MHz at 10m?
└── Almost certainly cable common-mode → add or upgrade CMC
Source
Voohu Technology (www.voohuele.com) — network transformers (standard + PoE-rated), BOM sourcing support including CMC cross-reference. MOQ 50pcs, DHL 3–5 days.
Top comments (0)