Bird
0
0
PCB Designbi_tool~10 mins

Via size and drill diameter 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 drill diameter for a via given the via size.

PCB Design
drill_diameter = via_size [1] 0.2
Drag options to blanks, or click blank then click option'
A-
B/
C*
D+
Attempts:
3 left
💡 Hint
Common Mistakes
Using addition instead of subtraction, which makes the drill diameter too large.
2fill in blank
medium

Complete the code to calculate the annular ring width by subtracting drill diameter from via size and dividing by 2.

PCB Design
annular_ring = (via_size [1] drill_diameter) [2] 2
Drag options to blanks, or click blank then click option'
A-
B+
C*
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Using addition instead of subtraction, or multiplying instead of dividing.
3fill in blank
hard

Fix the error in the code to correctly calculate the drill diameter as 0.3 mm less than the via size.

PCB Design
drill_diameter = via_size [1] 0.3
Drag options to blanks, or click blank then click option'
A+
B-
C*
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Using addition which increases drill diameter incorrectly.
4fill in blank
hard

Fill both blanks to calculate the annular ring width correctly.

PCB Design
annular_ring = (via_size [1] drill_diameter) [2] 2
Drag options to blanks, or click blank then click option'
A-
B+
C/
D*
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up addition and subtraction or multiplication and division.
5fill in blank
hard

Fill all three blanks to calculate the drill diameter and annular ring width correctly.

PCB Design
drill_diameter = via_size [1] 0.25
annular_ring = (via_size [2] drill_diameter) [3] 2
Drag options to blanks, or click blank then click option'
A-
B+
C/
D*
Attempts:
3 left
💡 Hint
Common Mistakes
Using addition instead of subtraction, or multiplication instead of division.