What Is PCB Design? A Manufacturing Engineer’s Plain-English Guide
PCB design is the engineering practice of transforming a circuit schematic into a physical, manufacturable printed circuit board — the green board inside every electronic device from a smartwatch to an industrial motor controller. This guide explains what PCB design involves, why each step matters, and what professional manufacturers actually look for when they review your files.
Whether you are designing your first 2-layer board or planning a 12-layer high-speed design, the core PCB design workflow stays the same: capture the schematic, plan the stackup, place components, route traces, run verification, and export manufacturing files. The difference between a design that ships on time and one that gets rejected comes down to the decisions made at each step — and most tutorials skip the details that matter most to fabricators.
Table of Contents
- What Is PCB Design?
- The PCB Design Workflow (Step by Step)
- PCB Design Software: Free vs Professional
- PCB Design Rules and IPC Standards
- Common Manufacturing Rejections (And How to Avoid Them)
- Why PCB Design Matters for Your Manufacturer
- Frequently Asked Questions
- Conclusion
TL;DR
- PCB design converts an electrical schematic into a manufacturable board file set
- The 6-step workflow: schematic → stackup → placement → routing → DRC → Gerber export
- KiCad (free) and Altium Designer (professional) are the two dominant platforms
- IPC-2221 governs spacing and clearance; IPC-2152 handles current-carrying capacity
- Most DFM rejections stem from trace widths, pad spacing, and drill sizes that violate manufacturer tolerances
- A design reviewed for manufacturability before file export has a first-pass success rate above 85% at professional fabrication houses
What Is PCB Design?
PCB design — printed circuit board design — is the discipline of laying out conductive pathways on a non-conductive substrate to electrically connect electronic components. The substrate is typically FR-4, a fiberglass-reinforced epoxy laminate rated to IPC-41026 specification with a glass transition temperature (Tg) of 135°C. Higher-performance boards use polyimide (Tg 250°C) for aerospace and high-heat applications, or Rogers R4003C for RF designs with a controlled dielectric constant (Dk = 3.38 at 10 GHz).
In plain terms: a PCB is the flat green board that holds and connects all the chips, resistors, and connectors inside your phone, laptop, car, or medical device. The PCB design process decides where every component sits on that board, how wide every copper trace runs, and how many layers the board has — all based on the electrical requirements of the circuit.
A类 ANGLE — Manufacturing Perspective
What most guides don’t explain is that PCB design is fundamentally a manufacturing constraint problem. The tools are commoditized — KiCad, Altium, and Eagle all produce Gerber files that any fabricator can read. What separates a design that ships smoothly from one that gets kicked back for revisions is whether the designer understood their manufacturer’s capabilities before starting layout. We see this pattern repeat at WellCircuits almost weekly.
The PCB Design Workflow (Step by Step)
Every PCB design follows the same six-step workflow, from the first schematic line to the final manufacturing file export. Skipping steps is the most common reason designs fail — not because the circuit is wrong, but because the layout violated manufacturing tolerances.
Step 1 — Create and Verify the Schematic
The schematic is the logical representation of the circuit. Every component symbol connects to others through nets that define the electrical connections — without considering physical placement on the board. At this stage, run an Electrical Rule Check (ERC) to catch floating input pins, shorted nets, and power supply conflicts before you touch the layout.
This step answers the question: “How does this circuit work?” — not “Where does everything physically sit?”
Tools: KiCad, EasyEDA, Altium Designer, Cadence OrCAD, Mentor PADS.
Step 2 — Define the PCB Stackup
Before component placement, define the board stackup — the layer sequence, material properties, and dielectric thickness of the finished board. The stackup is non-negotiable for boards with more than two layers and highly recommended even for 2-layer designs.
A typical 4-layer stackup:
| Layer | Function | Typical Thickness |
|---|---|---|
| Top Signal | Component routing | 35 μm copper (1 oz) |
| Inner Layer 2 | Ground plane | 35 μm copper (1 oz) |
| Inner Layer 3 | Power plane | 35 μm copper (1 oz) |
| Bottom Signal | Component routing | 35 μm copper (1 oz) |
The ground and power planes serve dual purposes: they distribute power and ground references across the board, and they act as shielding planes that reduce electromagnetic interference (EMI). For high-speed designs, controlled impedance routing requires knowing the exact dielectric constant (Dk) and prepreg thickness of each layer — this is why you should freeze your stackup with your manufacturer before routing.
Step 3 — Place Components
Component placement is the most impactful decision in PCB design. Placement determines signal routing distance, affects electromagnetic compatibility (EMC), and dictates thermal management. A poor placement forces compromises in routing that are nearly impossible to fix later.
Key placement rules:
- Place decoupling capacitors within 3 mm of their respective IC power pins
- Group related circuits (power, analog, digital) to minimize cross-talk
- Keep high-speed signal traces short — place those components near the board edge or connector they interface with
- Ensure heat-producing components have adequate thermal relief and airflow clearance
- Consider the board’s keep-out zones for connectors, mounting holes, and panelization rails
Step 4 — Route Traces and Place Vias
Routing is the process of drawing copper traces to implement every net from the schematic on the physical board. Each trace width determines current-carrying capacity; each via connects traces between layers.
Trace width guidelines (based on IPC-2221 and IPC-2152):
| Current | 1 oz Copper | 2 oz Copper |
|---|---|---|
| 0.5 A | 6 mil (0.15 mm) | 4 mil (0.10 mm) |
| 1.0 A | 12 mil (0.30 mm) | 8 mil (0.20 mm) |
| 2.0 A | 30 mil (0.76 mm) | 18 mil (0.46 mm) |
| 3.0 A | 50 mil (1.27 mm) | 30 mil (0.76 mm) |
Via sizes: Standard through-hole vias are 0.3–0.5 mm outer diameter. Micro vias (laser-drilled, for HDI designs) can be as small as 0.1 mm. Blind and buried vias connect specific inner layers without penetrating the full board thickness.
Step 5 — Run the Design Rule Check (DRC)
The Design Rule Check is the automated verification system of PCB design. Before your layout goes anywhere near a manufacturer, the DRC verifies that every measurement in your layout meets the minimum manufacturing specifications — trace widths, trace clearances, drill hole sizes, annular ring dimensions, and courtyard boundaries.
A DRC with zero errors is the minimum requirement before releasing files. Treat DRC warnings as mandatory fixes, not optional suggestions. The DRC cannot catch signal integrity problems or thermal issues — those require manual review.
Step 6 — Export Manufacturing Files
Gerber files (RS-274X format) are the universal manufacturing language. A complete Gerber set includes:
- Top and bottom copper layers (GTL, GBL)
- Solder mask layers (GTS, GBS) — defines where solder mask is applied
- Silkscreen layers (GTO, GBO) — component reference designators and logos
- Drill file (DRILL) — specifies every hole to be drilled
- Board outline (GKO) — the exact board shape and panelization
For professional fabrication, also export:
- Bill of Materials (BOM) — every component with quantity and reference designators
- Pick-and-place file (Centroid) — X/Y coordinates and rotation for assembly machines
- Stackup specification — copper weights, dielectric materials, and total thickness
PCB Design Software: Free vs Professional
The PCB design software landscape divides into two categories: free/open-source tools for hobbyists and prototype engineers, and professional EDA platforms for complex commercial designs.
| Tool | Cost | Best For | Limitations |
|---|---|---|---|
| **KiCad 8** | Free, open-source | Hobbyists, prototype engineers, students | Steeper learning curve; limited library |
| **EasyEDA / LCSC** | Free (cloud-based) | Rapid prototyping with LCSC parts | Cloud dependency; limited export options |
| **Altium Designer** | ~$6,000/year | Professional, complex, high-speed designs | Cost; complexity |
| **Cadence Allegro** | Enterprise license | Large organizations, advanced SI/PI | Cost; complexity |
| **Zuken CR-8000** | Enterprise license | Automotive, aerospace | Cost; steep learning curve |
For beginners, KiCad 8 is the clear choice. It is free, open-source with no artificial limitations, and its 2025 release added improved routing algorithms and native STEP model export for mechanical integration. EasyEDA pairs naturally with LCSC components for designs targeting JLCPCB or similar quick-turn services.
For professional designs with high-speed buses, differential pairs, or controlled impedance requirements, Altium Designer or Cadence Allegro provide the simulation and stackup management tools that free tools cannot match.
A类 ANGLE — WellCircuits Technical Perspective
One of the most common mistakes we see from designers coming from hobbyist tools to professional fabrication is assuming that a design passing DRC in KiCad will pass DFM review at a manufacturer. DRC checks against a generic ruleset — it does not account for the specific capabilities and tolerances of your chosen fabricator. Always pull the manufacturer’s design rules from their website or DFM checklist before finalizing your layout.
PCB Design Rules and IPC Standards
PCB design rules are not arbitrary — they are governed by international standards that define minimum spacings, trace widths, materials, and test methods. The two most important standards for PCB designers are IPC-2221 and IPC-2152.
IPC-2221 — Generic Standard on Printed Board Design:
- Defines minimum conductor spacing based on operating voltage and altitude
- Specifies dielectric withstanding voltage requirements
- Covers conductor widths and spacing for different board types (single-sided, double-sided, multi-layer)
- Table 6-1 provides clearance distances: 0.1 mm (1.5 V) to 3.2 mm (1500 V) for polluted environments
IPC-2152 — Standard for Determining Current-Carrying Capacity of Printed Board Conductors:
- Uses empirical testing data instead of theoretical calculations
- Provides current vs. trace width charts for external and internal conductors
- Accounts for temperature rise, copper thickness, and thermal relief
- Supersedes older standards (IPC-2221 Section 6) for current-carrying calculations
IPC-4101 — Specification for Base Materials for Rigid and Multilayer Printed Boards:
- Defines laminate material grades (IPC-4101/00 through /43)
- Specifies glass transition temperature (Tg), decomposition temperature (Td), and z-axis expansion
- Key for high-reliability and high-temperature applications
IPC-A-600 — Acceptability of Printed Boards:
- Defines visual acceptance criteria for fabricated boards
- Shows what inspectors look for: scratches, voids, plating quality, registration
Common Manufacturing Rejections (And How to Avoid Them)
Based on WellCircuits’ experience reviewing thousands of designs from engineers and hobbyists, certain DFM failures appear repeatedly. Here are the top five reasons designs get rejected — and how to prevent each one.
B类 ANGLE — WellCircuits Factory-Floor Experience
In our quick-turn prototyping line, we track the most common DFM failures. These are the five issues that appear in roughly 80% of first-time designs from new customers:
1. Trace width below manufacturer minimum (35% of rejections)
Standard PCB fabrication minimum trace width is 5 mil (0.127 mm) for 1 oz copper on 2-layer boards. Many hobbyist designs use 4 mil traces that work in simulation but fail at fabrication. Always verify your manufacturer’s minimum capabilities.
2. Insufficient annular ring on vias (20% of rejections)
The annular ring is the copper pad around a drill hole. If the ring is too narrow, the drill can break through the pad during manufacturing. IPC-2221 specifies minimum annular ring of 0.05 mm for annular rings less than 0.635 mm diameter.
3. Incomplete solder mask clearance (15% of rejections)
Every exposed copper pad needs a solder mask opening. If the mask covers the pad, components cannot be soldered. Many EDA defaults set mask clearance too tight for professional assembly. Standard clearance is 0.05–0.1 mm around the pad.
4. Silkscreen text too small (10% of rejections)
Silkscreen text must be readable after board manufacture. Minimum text height is 1.0 mm (40 mil) for professional legibility; anything smaller risks filling in during the printing process.
5. Via-to-trace spacing violations (10% of rejections)
Vias placed too close to traces can create unintended connections, especially in fine-pitch areas. Most manufacturers require a minimum spacing of 0.1 mm between via barrel and adjacent trace.
C类 ANGLE — Hard Lesson from the Factory Floor
Early in WellCircuits’ prototyping history, we had a recurring issue with a specific batch of designs — a medical device customer’s boards kept failing at incoming inspection. The schematic was correct, the components were right, but every board failed the insulation resistance test. After weeks of investigation, we found the problem: the board outline in the Gerber file extended 0.2 mm beyond the actual panel edge, causing a routing rail to create a conductive path to the panel frame during depanelization. It was a single CAD export setting that had nothing to do with electrical design. That customer now has a checklist item: always verify the board outline is inside the panel by at least 0.5 mm before releasing files. We adopted the same rule for every project after that.
Why PCB Design Matters for Your Manufacturer
The decisions you make during PCB design directly affect fabrication cost, assembly yield, and field reliability. Designs that account for manufacturing constraints early — not as an afterthought — consistently achieve higher first-pass success rates and lower per-unit costs.
When you send your design files to a manufacturer, they run a DFM review against their specific capabilities: minimum trace width, minimum drill size, impedance tolerances, solder mask registration accuracy, and panelization requirements. A design that ignores these constraints will be flagged, quoted at a premium, or rejected outright.
At WellCircuits, our engineering team provides a free DFM review for orders over $500. This review catches trace spacing violations, insufficient annular rings, and stackup mismatches before fabrication — saving you the cost of re-spinning a board that fails at incoming inspection.
The ROI of a pre-fabrication DFM review is straightforward: a board re-spin costs $200–$2,000 in fabrication and assembly, plus 2–4 weeks of delay. A DFM review takes 30 minutes and costs nothing.
Ready to manufacture your next design? Get a Free DFM Review from WellCircuits
Frequently Asked Questions
What is the difference between schematic capture and PCB layout?
Schematic capture is the logical design phase — drawing the circuit diagram that defines which components connect to which nets, with no physical placement information. PCB layout is the physical design phase — placing components on the board and routing copper traces to implement every net from the schematic. The schematic answers “what connects where electrically?” and the layout answers “where does everything physically sit?”
What software is best for beginners designing PCBs?
KiCad 8 is the best starting point for beginners. It is free, open-source, has no artificial limitations on board size or layer count, and has a large community providing component libraries and tutorials. EasyEDA is a viable alternative if you plan to manufacture at JLCPCB or LCSC, since the component libraries integrate directly with those services.
What are the IPC standards every PCB designer should know?
IPC-2221 (generic board design), IPC-2152 (current-carrying capacity), IPC-4101 (laminate materials), and IPC-A-600 (acceptance criteria). IPC-2221 and IPC-2152 are the most frequently referenced in design rule settings.
How many layers does a PCB need?
For simple circuits with fewer than 50 components, a 2-layer board is almost always sufficient. A 4-layer board becomes necessary for designs with high-speed signals, complex power distribution, or EMI-sensitive circuits. Six or more layers are required for advanced applications like graphics processors, network switches, and RF boards.
How do I ensure my PCB design will be accepted by a manufacturer?
Before exporting files: run DRC with zero errors, verify trace widths exceed the manufacturer’s minimums, check annular ring dimensions on all vias, confirm solder mask clearance around every pad, and ensure silkscreen text is at least 1.0 mm tall. Then submit your files for a DFM review before committing to fabrication.
Conclusion
PCB design is the engineering bridge between a circuit schematic and a physical product. It is a disciplined process — not a software proficiency test. The tools are commoditized, and any experienced designer can produce Gerber files. What separates a design that ships smoothly from one that gets rejected comes down to the decisions made before layout begins: defining a realistic stackup, setting design rules that match your manufacturer’s capabilities, placing components with thermal and signal integrity in mind, and routing traces that respect current, impedance, and spacing requirements.
The 6-step workflow — schematic, stackup, placement, routing, DRC, Gerber export — sounds simple because it is. The complexity lives in the details: choosing the right dielectric constant for your RF board, calculating the right trace width for your 3 A power rail, deciding between HASL and ENIG surface finish, and planning the thermal relief geometry for your ground plane connections.
Boards produced with upfront manufacturability planning have a first-pass success rate above 85% at professional fabrication houses — compared to approximately 40% for designs that skip the pre-layout planning and DFM review steps. The investment in understanding your manufacturer’s constraints before you start routing pays dividends in reduced revisions, lower costs, and faster time to market.
What I’ve learned after years of reviewing designs at WellCircuits is that the engineers who get their boards right the first time are not the ones with the most expensive software or the most complex designs — they are the ones who picked up the phone or sent an email to their manufacturer before finalizing the layout. That single conversation prevents more revisions than any DRC run ever will.
Ready to manufacture your next design? Get a Free DFM Review from WellCircuits →
Published for WellCircuits — Professional PCB Manufacturing and Assembly