2026-07-16
Every ADC you've read about assumes its input is stationary during conversion. A SAR ADC needs 12 clock cycles of stable input to resolve 12 bits. A pipeline ADC needs the signal held constant while it propagates through five stages. Real signals don't cooperate — they move. The sample-and-hold (S/H) circuit is the workhorse that takes a snapshot of a fast-moving analog signal and freezes it long enough for the converter to think.
The topology is embarrassingly simple: a MOSFET switch and a hold capacitor. When the switch closes ("track" phase), the cap follows the input through the switch's RC. When the switch opens ("hold" phase), the cap retains that voltage while the ADC digitizes it. Two components. Four ways to ruin it.
Rule of thumb for sizing the hold cap: pick C_hold so that droop during one conversion time is less than half an LSB. If you're holding for 1 μs with 1 nA of leakage on a 1 V, 12-bit ADC (LSB = 244 μV), you need C ≥ I·t / (LSB/2) = 1 nA · 1 μs / 122 μV ≈ 8 pF. Bigger is safer but slows tracking.
Real-world example: Analog Devices' AD9445 is a 14-bit, 125 MSPS pipeline ADC. Its front-end S/H uses bottom-plate sampling (opening the ground-side switch a hair before the input-side switch) so signal-dependent charge injection cancels to first order. It also uses differential dummy switches — half-sized transistors driven by the inverted clock that inject equal-and-opposite charge. Without these tricks, the ADC couldn't hit 73 dB SNR.
