Bird
0
0
PCB Designbi_tool~10 mins

Thermal spoke connections 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 define a thermal spoke connection with correct clearance.

PCB Design
thermal_spoke = ThermalSpoke(clearance=[1])
Drag options to blanks, or click blank then click option'
A0.5mm
B2.0mm
C1.0mm
D0.2mm
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing too small clearance causing shorts
Choosing too large clearance reducing heat dissipation
2fill in blank
medium

Complete the code to set the number of thermal spokes in a connection.

PCB Design
thermal_spoke.set_spokes(count=[1])
Drag options to blanks, or click blank then click option'
A4
B6
C2
D8
Attempts:
3 left
💡 Hint
Common Mistakes
Using too few spokes reducing heat dissipation
Using too many spokes complicating layout
3fill in blank
hard

Fix the error in the code to correctly create a thermal spoke with width 0.3mm.

PCB Design
thermal_spoke = ThermalSpoke(width=[1])
Drag options to blanks, or click blank then click option'
A0.03mm
B0.3mm
C3mm
D30mm
Attempts:
3 left
💡 Hint
Common Mistakes
Using 0.03mm which is too thin
Using 3mm or 30mm which are too wide
4fill in blank
hard

Fill both blanks to define a thermal spoke with 4 spokes and 0.5mm clearance.

PCB Design
thermal_spoke = ThermalSpoke(spokes=[1], clearance=[2])
Drag options to blanks, or click blank then click option'
A4
B0.3mm
C0.5mm
D6
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing clearance and spoke count values
Choosing incorrect clearance values
5fill in blank
hard

Fill all three blanks to create a thermal spoke with 4 spokes, 0.3mm width, and 0.5mm clearance.

PCB Design
thermal_spoke = ThermalSpoke(spokes=[1], width=[2], clearance=[3])
Drag options to blanks, or click blank then click option'
A6
B0.3mm
C0.5mm
D4
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping width and clearance values
Using wrong spoke count