Bird
0
0
PCB Designbi_tool~10 mins

Trace width calculator usage 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 calculate the trace width for a given current using the IPC-2152 standard.

PCB Design
trace_width = calculate_trace_width([1], temperature_rise=10)
Drag options to blanks, or click blank then click option'
Aresistance
Bvoltage
Cpower
Dcurrent
Attempts:
3 left
💡 Hint
Common Mistakes
Using voltage or resistance instead of current as input.
2fill in blank
medium

Complete the code to specify the copper thickness when calculating trace width.

PCB Design
trace_width = calculate_trace_width(current=5, copper_thickness=[1])
Drag options to blanks, or click blank then click option'
A20 A
B"1 oz"
C5 V
D10 mm
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing copper thickness with voltage or current values.
3fill in blank
hard

Fix the error in the code to correctly calculate trace width with temperature rise parameter.

PCB Design
trace_width = calculate_trace_width(current=3, temperature_rise=[1])
Drag options to blanks, or click blank then click option'
A10
B25C
Chigh
D5V
Attempts:
3 left
💡 Hint
Common Mistakes
Using strings with units or voltage values instead of numeric temperature rise.
4fill in blank
hard

Fill both blanks to calculate trace width for a 2 oz copper thickness and 20°C temperature rise.

PCB Design
trace_width = calculate_trace_width(current=4, copper_thickness=[1], temperature_rise=[2])
Drag options to blanks, or click blank then click option'
A"2 oz"
B10
C20
D"1 oz"
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing copper thickness and temperature rise values or using incorrect units.
5fill in blank
hard

Fill all three blanks to calculate trace width with current 6A, copper thickness 1 oz, and temperature rise 15°C.

PCB Design
trace_width = calculate_trace_width(current=[1], copper_thickness=[2], temperature_rise=[3])
Drag options to blanks, or click blank then click option'
A5
B6
C15
D"1 oz"
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping current and temperature rise values or using incorrect copper thickness.