EmbeddedRelated.com

Quiescent Current

Category: Power | Also known as: quiescent currents

Quiescent current (often abbreviated I_Q or I_q) is the current drawn by a circuit or device when it is in a stable, non-switching operating state with no load current flowing -- that is, the baseline current consumed simply to keep the device powered and functional. It is most commonly cited for voltage regulators, op-amps, comparators, and battery-management ICs, where it represents the overhead cost of keeping the device active.

In practice

In battery-powered embedded designs, quiescent current is a primary concern during idle and sleep states. A system that spends most of its time waiting for an event -- a sensor node polling once per minute, for example -- can have its runtime dominated by the combined I_Q of every always-on component: the LDO or buck converter, the MCU's sleep-mode current, RTC oscillator circuits, and any analog front-end devices left powered. Even a few microamps of unexpected leakage can cut months off a coin-cell or AA-battery lifetime.

For LDOs specifically, I_Q flows from the input rail to ground and is not delivered to the load. Devices marketed for low-power applications often specify I_Q in the range of 1--200 µA; some ultra-low-quiescent regulators (e.g., TI TPS7A02, Microchip MCP1811) target sub-1-µA I_Q to suit energy-harvesting and always-on IoT nodes. Buck converters typically show higher I_Q than LDOs in continuous-conduction mode, but many modern switchers include a pulse-frequency modulation (PFM) or skip mode that drops I_Q to the low-µA range at light load.

Measuring quiescent current accurately requires care. Standard bench multimeters are often too slow and have insufficient bandwidth and sampling rate -- and introduce burden voltage -- to capture the fast dynamic transitions of a microcontroller cycling between active and sleep states. A shunt resistor (value chosen carefully to avoid disturbing the circuit) combined with an oscilloscope gives better time resolution; a dedicated current probe can also be used where convenient. The blog post "A Useful Current Profiling Method" covers practical techniques for characterizing the current profile of an embedded system across its operating states, which is essential when trying to separate I_Q contributions from transient active-mode spikes.

A common pitfall is auditing only the MCU's datasheet sleep-mode current while ignoring peripheral ICs left in their default power-on state. Pull-up resistors, level shifters, flash memories, and wireless modules can each contribute tens to hundreds of microamps, easily swamping a carefully optimized MCU sleep current. A full system I_Q budget should account for every component on the always-on power rail.

Frequently asked

What is the difference between quiescent current and standby current?
The terms are used loosely in datasheets and are sometimes interchangeable, but there is a practical distinction. Quiescent current typically refers to the internal bias current of an analog or power device (LDO, op-amp, comparator) with no load and no switching activity. Standby current usually describes a microcontroller or digital IC held in a low-power mode with clocks stopped or reduced. Some datasheets use 'standby current' specifically for a mode where the device retains register state but is otherwise inactive. Always check the datasheet conditions -- voltage, temperature, and mode -- rather than relying on the label alone.
Does quiescent current appear on the output of a regulator?
No. For a linear regulator (LDO), I_Q flows from the input pin to the ground pin and bypasses the output entirely. The total input current equals the load current plus I_Q. This means the efficiency penalty from I_Q is most significant at very light loads, where I_Q can be a substantial fraction of total input current. For switching regulators, the quiescent current similarly represents control-circuit overhead and does not reach the load.
How do I measure the quiescent current of my whole system?
The most reliable approach is to place a low-value shunt resistor (1--10 ohm, depending on the current range) in series with the supply rail and measure the voltage across it with an oscilloscope. This preserves time resolution needed to distinguish sleep-state I_Q from periodic wake events. Avoid using a multimeter in series with the supply for dynamic systems -- the measurement loop inductance and response time can cause the MCU to brown out or miss the actual idle baseline. The 'A Useful Current Profiling Method' blog post describes a practical setup for this kind of profiling.
Why does my system draw more quiescent current than the sum of the datasheet values?
Several factors can cause this. Resistive dividers, pull-up or pull-down resistors, and bus-termination networks draw current continuously and are often not included in IC-level I_Q specs. Floating input pins on CMOS devices can bias internal inverters into a linear region, causing unexpectedly high leakage. Decoupling capacitors charge and discharge during switching transitions and contribute to average current draw through the associated switching losses, even if the capacitors themselves are not a DC load. Finally, some ICs have internal startup or housekeeping circuits that remain active even in their lowest-power mode.
Is a lower quiescent current always better?
Not unconditionally. Ultra-low-I_Q LDOs often exhibit higher output impedance, slower transient response, and lower power-supply rejection ratio (PSRR) compared to higher-I_Q devices, though this is a common design trade-off rather than a universal rule. For a microcontroller that wakes up and draws 10--100 mA in active mode, a regulator with excellent transient response may be more important than minimizing I_Q. The right trade-off depends on the duty cycle of active versus sleep states and the acceptable output-voltage droop during load transients.

Differentiators vs similar concepts

Quiescent current is sometimes confused with dark current (leakage current in reverse-biased photodiodes or diodes, relevant in optical sensing) and with shutdown current (the current drawn when a device is explicitly disabled via a shutdown pin, typically orders of magnitude lower than I_Q). It is also distinct from sleep-mode current as reported for microcontrollers: MCU sleep current is an application-level operating mode, while I_Q for a regulator or op-amp is a device-level bias characteristic. Both contribute to system-level idle current and must be budgeted together.