Complete the code to calculate the drill diameter for a via given the via size.
drill_diameter = via_size [1] 0.2
The drill diameter is typically smaller than the via size by a fixed amount, so we subtract 0.2 mm.
Complete the code to calculate the annular ring width by subtracting drill diameter from via size and dividing by 2.
annular_ring = (via_size [1] drill_diameter) [2] 2
The annular ring is the difference between via size and drill diameter, divided by 2.
Fix the error in the code to correctly calculate the drill diameter as 0.3 mm less than the via size.
drill_diameter = via_size [1] 0.3
Drill diameter should be smaller than via size, so subtract 0.3 mm.
Fill both blanks to calculate the annular ring width correctly.
annular_ring = (via_size [1] drill_diameter) [2] 2
Subtract drill diameter from via size, then divide by 2 to get annular ring width.
Fill all three blanks to calculate the drill diameter and annular ring width correctly.
drill_diameter = via_size [1] 0.25 annular_ring = (via_size [2] drill_diameter) [3] 2
Drill diameter is via size minus 0.25 mm. Annular ring is (via size minus drill diameter) divided by 2.
