Ask an engineer which part of a new board causes the most late-stage pain and a surprising number will say the power supply. Not the microcontroller, not the radio — the unglamorous stack of regulators that nobody sketched carefully because "it just needs 3.3 volts." Then the product resets when the motor starts, the sensor reads noisy in one unit out of twenty, and the regulator runs at 195°F inside a sealed enclosure because the datasheet efficiency was measured at a load current your product never draws.
Power architecture is one of the few areas where an afternoon of arithmetic at the start prevents a board respin later. This is what that arithmetic looks like.
Start with the input, not the output
Everything downstream is shaped by what feeds the product. Write the input specification before you pick a single part, and write it as a range rather than a nominal number:
- A USB-C source is nominally 5 V, sags under load, and can negotiate higher voltages only if you implement power delivery. Read what USB-C really requires of a product before assuming 3 amps is available.
- A lithium cell is not 3.7 V. It is 4.2 V freshly charged and 3.0 V at cutoff, and your converter must hold the rail at the bottom of that range while the radio transmits. Battery pack design and power architecture are one conversation.
- A 12 V or 24 V vehicle or industrial supply is a wide, dirty rail. Vehicles see load dump and cold crank transients far outside nominal; industrial 24 V lines carry inductive spikes from whatever else shares them.
- Line voltage changes the problem entirely, adding isolation, creepage, and a safety agency — covered in designing a mains-powered product.
Whatever the source, define the minimum, nominal, and maximum voltage, the current available, and the worst transient you expect. Those four numbers constrain everything that follows.
Build the rail budget before you pick regulators
A power tree is a table, and drawing it takes half an hour. List every rail, every load on that rail, and three current figures for each load: sleep, typical, and worst-case peak. Then total the columns.
| Rail | Loads | Sleep | Typical | Peak |
|---|---|---|---|---|
| 3.3 V digital | MCU, flash, level shifters | 25 µA | 18 mA | 45 mA |
| 3.3 V analog | ADC reference, sensor front end | 0 | 6 mA | 9 mA |
| 3.3 V RF | Radio module | 2 µA | 7 mA | 140 mA |
| 5 V | Display backlight, USB host | 0 | 90 mA | 520 mA |
Two things fall out immediately. The gap between typical and peak — frequently five to twenty times — tells you what your source and battery have to survive. The sleep column tells you whether your quiescent budget is achievable at all: a regulator burning 40 microamps of quiescent current dominates a device meant to sit idle for months, however efficient it is at full load.
Buck, boost, or linear: choosing per rail
There is no single right answer for a product, only a right answer per rail:
- A switching buck when the drop is large and the current meaningful. Dropping 12 V to 3.3 V at 300 mA through a linear dissipates 2.6 watts as heat; a buck at 90 percent efficiency dissipates about a tenth of a watt.
- A boost when the source can fall below the rail — a single lithium cell feeding 5 V, or alkalines feeding anything. Note that a boost passes current through when disabled, so it cannot serve as a power switch.
- A linear regulator where the drop is small, the current modest, and the noise floor matters. Post-regulating a 3.6 V switched rail to a clean 3.3 V for an analog front end costs almost no efficiency and buys tens of decibels of ripple rejection.
The deeper tradeoff in quiescent current, noise, and cost is worked through in DC-DC converter versus LDO. The mistake is picking one topology for the whole product because it was simplest to spec.
Efficiency at real load, not peak
Datasheet efficiency curves peak near the middle of the converter's range, and marketing quotes the peak. If your product spends 95 percent of its life drawing 4 milliamps from a converter optimized for 1 amp, you may be running at 55 percent efficiency, not 94. Read the curve at your current and check whether the part supports burst mode at light load. For a battery product this detail can double or halve run time.
Sequencing, inrush, and soft start
Multi-rail designs have an order problem. Many microcontrollers, FPGAs, and sensors specify which rail must come up first and how much delay is permitted; violating that pushes current through internal protection diodes and can latch the part up. Satisfy those requirements deliberately — enable-pin chaining, a supervisor, or a sequencer — not by hoping the regulators start in a convenient order.
Inrush is the mirror problem. At the instant power is applied every bulk capacitor looks like a short circuit, and several hundred microfarads can pull tens of amps for a few microseconds — tripping upstream protection, browning out a shared supply, and showing up as a product that will not start when hot-plugged. The fixes are cheap: a soft-start capacitor, an inrush-limiting NTC, or a load switch with controlled slew rate. They are only cheap if they are in the schematic before layout.
Protection: what has to be on the input
Every field return that arrives with a burned trace was preventable by roughly a dollar of parts:
- Reverse polarity — a P-channel MOSFET in the supply path survives a barrel jack plugged in backward at a fraction of a watt. A series diode works too but wastes headroom.
- Overvoltage (OVP) — a TVS diode clamps transients; an active OVP circuit or a high absolute-maximum rating handles a sustained wrong-adapter event.
- Overcurrent (OCP) — a resettable polyfuse for consumer designs, a fuse plus a current-limited load switch where a fault must latch off.
- Transient and ESD suppression at every connector a human can touch, overlapping directly with ESD protection in circuit design. The parts belong at the connector, not beside the chip they protect.
Ripple, noise, and the analog rails
A switching converter is a controlled noise source: ripple on its output at the switching frequency, plus radiation from the loop formed by the input capacitor, the switch, and ground. For digital logic this rarely matters. For a 16-bit ADC, a precision amplifier, a microphone preamp, or a radio it matters enormously — you can lose several effective bits of resolution to a poorly placed inductor.
Countermeasures: give analog a separate rail, generally an LDO fed from a switched rail; keep the converter's high-current loop physically tiny and its return path unbroken; place decoupling by inspection of the current path rather than habit; and pick a switching frequency that does not land on a band you care about. The layout half of this is covered in common first PCB design mistakes.
Thermal derating is part of the power design
A regulator's current rating assumes an ambient temperature and a copper area. Inside a sealed plastic enclosure at 104°F with a two-layer board and a small thermal pad, a part rated for 2 amps may be limited to well under 1 amp before it throttles. Do the arithmetic — dissipation is output current times the drop for a linear, or output power times the inefficiency for a switcher — then check it against the package's thermal resistance and the copper you actually have. If the answer is uncomfortable, the fix is a larger pour, a better topology, or the remedies in thermal management for electronic products.
Prove it on the bench
Power comes up first on a new board and is measured before anything else runs: each rail verified in sequence on a current-limited supply, then the turn-on transient, the ripple under worst-case load, and the behavior at minimum and maximum input. Load-step testing catches the instability a static measurement never will. The order of operations is in bringing up a new board without killing it.
Projects House designs power architectures alongside the rest of the electronics, so the rail budget, protection, and thermal math are settled before layout rather than diagnosed after the first build. If you have a product whose power path needs a second look, send the details through our contact form.