Bird
0
0
PCB Designbi_tool~10 mins

Minimum trace width and spacing in PCB Design - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to set the minimum trace width to 10 mils.

PCB Design
set_trace_width([1])
Drag options to blanks, or click blank then click option'
A15
B10
C20
D5
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a trace width too small to handle current.
Using a value larger than necessary, wasting board space.
2fill in blank
medium

Complete the code to set the minimum spacing between traces to 6 mils.

PCB Design
set_trace_spacing([1])
Drag options to blanks, or click blank then click option'
A6
B10
C8
D4
Attempts:
3 left
💡 Hint
Common Mistakes
Setting spacing too small causing shorts.
Setting spacing too large wasting PCB area.
3fill in blank
hard

Fix the error in the code to correctly set minimum trace width to 12 mils.

PCB Design
set_trace_width([1])
Drag options to blanks, or click blank then click option'
A"12"
Btwelve
C12
D0xC
Attempts:
3 left
💡 Hint
Common Mistakes
Using a string instead of a number.
Using a word instead of a numeric value.
4fill in blank
hard

Fill both blanks to set minimum trace width and spacing to 8 mils and 6 mils respectively.

PCB Design
set_trace_width([1])
set_trace_spacing([2])
Drag options to blanks, or click blank then click option'
A8
B6
C10
D5
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping width and spacing values.
Using values too small for manufacturing.
5fill in blank
hard

Fill all three blanks to define a rule with minimum trace width 12 mils, minimum spacing 8 mils, and clearance 10 mils.

PCB Design
rule = {
  "min_width": [1],
  "min_spacing": [2],
  "clearance": [3]
}
Drag options to blanks, or click blank then click option'
A12
B8
C10
D6
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up spacing and clearance values.
Using values that are too small for manufacturing.