0
0
Embedded-cHow-ToBeginner · 4 min read

How to Design Power Supply Circuit for PCB: Step-by-Step Guide

To design a power supply circuit for a PCB, start by selecting the correct voltage regulator and filter capacitors to ensure stable output voltage. Then, create a schematic including input protection, voltage conversion, and output filtering, followed by careful PCB layout to minimize noise and heat.
📐

Syntax

A basic power supply circuit includes these parts:

  • Input source: AC or DC voltage input.
  • Protection: Fuse or diode to protect from reverse polarity.
  • Voltage regulator: Converts input voltage to a stable output voltage.
  • Filter capacitors: Smooth out voltage fluctuations.
  • Output: Provides stable voltage to the PCB components.

Each part must be chosen based on your PCB's voltage and current needs.

plaintext
Input Voltage --> Protection (Fuse/Diode) --> Voltage Regulator --> Filter Capacitors --> Output Voltage
💻

Example

This example shows a simple 5V power supply circuit using a 7805 voltage regulator:

plaintext
1. Input: 9V DC power supply
2. Protection: 1A fuse and a diode for reverse polarity
3. Voltage Regulator: 7805 linear regulator
4. Filter Capacitors: 0.33µF on input, 0.1µF on output

Schematic steps:
- Connect 9V input to fuse, then diode (cathode to regulator input).
- Connect regulator input pin to diode output.
- Connect ground pins of regulator and capacitors to PCB ground.
- Connect capacitors between input and ground, output and ground.
- Output pin provides stable 5V to PCB.
Output
Stable 5V DC output suitable for powering digital circuits on PCB
⚠️

Common Pitfalls

  • Not adding input protection can damage components if polarity is reversed.
  • Skipping filter capacitors causes unstable voltage and noise.
  • Poor PCB layout placing regulator and capacitors far apart increases noise.
  • Ignoring heat dissipation for voltage regulators can cause overheating.

Always place capacitors close to the regulator pins and add a heat sink if needed.

plaintext
Wrong way:
Input --> Voltage Regulator --> Output (no capacitors, no protection)

Right way:
Input --> Fuse --> Diode --> Voltage Regulator --> Capacitors --> Output
📊

Quick Reference

ComponentPurposeTypical Value/Type
FuseProtects circuit from overcurrent1A slow-blow fuse
DiodePrevents reverse polarity damage1N4001 or similar
Voltage RegulatorProvides stable output voltage7805 for 5V output
Input CapacitorSmooths input voltage0.33µF ceramic capacitor
Output CapacitorReduces output noise0.1µF ceramic capacitor
Heat SinkDissipates heat from regulatorAs per regulator datasheet

Key Takeaways

Choose the right voltage regulator and capacitors based on your PCB's voltage and current needs.
Always include input protection like fuses and diodes to prevent damage.
Place filter capacitors close to the regulator pins to reduce noise.
Design PCB layout to allow heat dissipation for voltage regulators.
Test your power supply circuit before integrating with sensitive components.