Bench note

Inrush current limiting you won't regret at 3 a.m.

The click that ruins momentum

You've wired up a motor controller, maybe a handful of electrolytic caps on the power rails, hit the switch, and the bench supply faults to protect itself. The project is fine—once it's running. But that first instant, when every capacitor rushes to charge and every coil fights inertia, the current spike convinces your supply that something catastrophic is happening.

Inrush limiting isn't exotic. It's a deliberate bottleneck you place between the supply and the load so the initial surge stays below the threshold that makes things unhappy. For home-lab work, two approaches cover most cases: NTC thermistors and series resistors with a bypass relay.

NTC thermistors for the simple path

Negative temperature coefficient thermistors start cold with high resistance, then self-heat as current flows and drop to near-zero impedance within a second or two. You place one in series with your power input, and it absorbs the inrush without firmware, without extra components.

Pick a thermistor rated for your steady-state current and at least twice your expected inrush energy. Vishay and Amphenol publish tables; match your capacitance and supply voltage to a part number. A 5 A steady rating will handle most motor drivers and multi-board setups. Cold resistance around 5–10 Ω gives enough damping without a painful voltage drop once warm.

The trade-off: NTCs need cooldown time between power cycles. If you're bench-testing and flipping the switch every thirty seconds, the thermistor stays warm and stops limiting. For prototype iteration, that's usually fine—you're not hammering the power button. For anything approaching a product or field deployment, consider the relay path instead.

Series resistor with bypass relay

A low-value power resistor in series with a relay in parallel gives you control. On startup, current flows through the resistor—1 Ω at 12 V limits inrush to 12 A if your load were a dead short, realistically much less. After a few milliseconds, your microcontroller or a simple RC timer closes the relay, bypassing the resistor entirely.

This method resets instantly and handles rapid power cycles without flinching. The resistor is always cold when you need it. Choose a wirewound or thick-film type rated for at least 5 W; inrush is brief, but you want margin. The relay needs a coil voltage that matches your logic supply and contacts rated for your full load current plus thirty percent.

If you're already doing interrupt-driven sensor reads or managing a watchdog timer, adding a GPIO to trigger the bypass relay is trivial. Gate it behind a 10 ms delay in your init routine, and you're done.

When to care

Any time your design includes bulk capacitance over 1000 µF, motors, or transformers, budget for inrush limiting. If your bench supply is conservatively rated and you're never running near its current limit, you might skate by—but the first time you demo the project on a different supply or try to power it from a battery with internal resistance, the oversight catches up.

For circuits where linear regulators dominate and capacitance is modest, inrush is rarely an issue. But switching supplies with pre-charge caps, or anything downstream of a decoupling network that's more aggressive than the datasheet anticipated, benefit from explicit current slew control.

Implementation checklist

  • Estimate peak inrush: multiply supply voltage by total capacitance, divide by acceptable rise time (1–10 ms).
  • If under 5 A and power cycles are slow, use an NTC thermistor.
  • If over 5 A or rapid cycling matters, use a series resistor with relay bypass.
  • Place the limiter before any voltage dividers or sensing circuits that assume stable rails.
  • Test with the weakest supply you expect to encounter, not just your benchtop unit.

Inrush limiting is invisible when it works, which is the point. You add it once, and every subsequent power-up is uneventful. That's worth the extra component and the four lines of init code.

← Full log