Skip to content

Activity 1.2.0 — The Circuit Design Process


Learning Objectives

By the end of this lesson, students will be able to:

  1. Explain the eight steps of the engineering design process as applied to circuit design.
  2. Differentiate between analog and digital design approaches.
  3. Describe the roles of Circuit Design Software (CDS) and Design Mode Software (DMS) in the design workflow.
  4. Understand why documentation is critical in engineering.

Vocabulary

Vocabulary (click to expand)
Term Definition
Engineering Design Process A systematic approach to solving problems and creating solutions through research, brainstorming, design, testing, and refinement.
Circuit Design Software (CDS) Software used to draw schematics and simulate circuit behavior before building physical prototypes (e.g., MultiSim, PLTW S7).
Design Mode Software (DMS) Software used with PLTW hardware to build and test circuits on actual breadboards or PCBs.
Schematic A symbolic representation of a circuit showing how components are connected.
Breadboard A reusable board with holes for temporarily building circuits without soldering.
Simulation Using software to model how a circuit will behave before physical construction.
Analog Design Design approach dealing with continuously varying signals.
Digital Design Design approach dealing with discrete signals (typically 0s and 1s).
Documentation Written records of design decisions, schematics, test results, and procedures.

Part 1: The Engineering Design Process for Circuits

The engineering design process is a structured method engineers use to develop solutions to problems. When applied to circuit design, this process helps ensure that circuits work correctly, safely, and efficiently. Below are the eight key steps:

Step 1: Define the Problem or Need

Every circuit starts with identifying a problem or meeting a specific need. What should the circuit do? This step involves understanding the requirements and constraints of the project.

Example: You need a circuit that can count objects on an assembly line.

Step 2: Research Existing Solutions

Before starting from scratch, engineers research what already exists. This includes: - Looking at similar circuits - Reading datasheets for components - Reviewing academic papers or technical documentation - Examining commercially available solutions

Step 3: Brainstorm and Sketch

During brainstorming, you generate as many ideas as possible without judging them initially. Sketch your ideas on paper: - Block diagrams showing major components - Simple circuit concepts - Different approaches to solving the problem

Step 4: Design the Schematic (CDS)

Using Circuit Design Software (CDS), you translate your sketches into a proper schematic diagram. Popular tools include: - MultiSim (National Instruments) - PLTW S7 (specifically designed for PLTW courses)

The schematic shows: - All components and their symbols - Connections between components - Component values (resistance, capacitance, etc.)

Step 5: Simulate and Verify

Before building anything physically, you simulate the circuit using CDS software. This allows you to: - Verify the circuit works as intended - Identify design errors - Test different component values - Measure voltage and current at various points

Step 6: Build on Breadboard (DMS)

Using Design Mode Software (DMS), you translate your verified schematic into a physical prototype. The breadboard allows: - Quick assembly and modifications - Easy component replacement - Testing without soldering

Step 7: Test and Debug

Physical testing reveals issues that simulation might not catch: - Actual component tolerances - Wiring mistakes - Unintended interactions between components - Real-world noise and interference

Debugging tip: Start by checking power connections, then trace the signal path systematically.

Step 8: Document Results

Good documentation includes: - Final schematic with annotations - List of components used - Test procedures and results - Problems encountered and solutions - Suggestions for future improvements

Key insight: Documentation is not just paperwork—it enables others to understand, replicate, and improve your work. Engineers spend significant time documenting because it saves even more time later.


Part 2: Analog vs. Digital Design

Circuit design generally falls into two categories:

Analog Design

  • Deals with continuously varying signals
  • Signals can take any value within a range
  • Examples: audio amplifiers, radio receivers, power supplies
  • Requires careful consideration of signal ranges, filtering, and noise

Digital Design

  • Deals with discrete signals (typically two states: HIGH and LOW)
  • Easier to store, process, and reproduce accurately
  • Examples: microcontrollers, computers, digital watches
  • More resistant to noise and component variations

The Random Number Generator (RNG) Project

Throughout this course, you will work on a Random Number Generator (RNG) project that demonstrates both analog and digital concepts:

Analog Section: - Generates truly random physical noise (thermal noise, radioactive decay, etc.) - Requires amplification and signal conditioning - Uses analog-to-digital conversion

Digital Section: - Processes the random data - Displays results - Implements counting or game logic

This semester project integrates skills learned in both analog and digital units.


Part 3: The CDS and DMS Workflow

CDS Workflow (MultiSim/PLTW S7)

1. Create new project
2. Place components from library
3. Wire components together
4. Add measurement instruments (oscilloscope, multimeter)
5. Run simulation
6. Verify behavior matches expectations
7. Adjust component values if needed
8. Export final schematic

DMS Workflow

1. Open project from CDS export
2. Select appropriate hardware platform
3. Place components on breadboard/virtual breadboard
4. Make physical/wired connections
5. Measure voltages with multimeter
6. Compare measurements to simulation
7. Debug any discrepancies
8. Document final configuration

Why Documentation Matters

Reason Explanation
Communication Others must understand your work to use or improve it
Replication Documentation allows anyone to rebuild your circuit
Troubleshooting Well-documented designs are easier to debug
Learning Documentation helps you remember your own design process
Professionalism Engineers must document their work thoroughly

Summary

The engineering design process applied to circuits follows eight steps:

  1. Define the problem or need
  2. Research existing solutions
  3. Brainstorm and sketch
  4. Design the schematic (using CDS)
  5. Simulate and verify (using CDS)
  6. Build on breadboard (using DMS)
  7. Test and debug
  8. Document results

CDS (Circuit Design Software) allows virtual design and simulation before physical construction. DMS (Design Mode Software) enables building and testing real circuits. Both tools are essential in modern engineering workflows.

The Random Number Generator (RNG) project you will build this semester demonstrates how analog and digital design work together to create functional electronic systems.


Quick Check

What is the first step in the circuit design process?

Define the problem — clearly stating what needs to be solved and why.

What is the difference between CDS and DMS?

CDS (Circuit Design Software) is for virtual simulation. DMS (Design Mode Software) is for building and testing real physical circuits.

Why should you always simulate before building?

Simulation catches design errors early, saving time and preventing component damage from incorrect wiring.


Key Reminders

  • Always simulate before building physical circuits to catch design errors early.
  • Debug systematically: check power first, then trace the signal path.
  • Documentation should be thorough enough that someone else could recreate your circuit from it.
  • The RNG project integrates both analog noise generation and digital processing.
  • CDS and DMS serve different but complementary roles in the design process.

Custom activity — adapted from PLTW Digital Electronics