Complete the code to calculate the copper thickness in micrometers given the copper weight in ounces.
copper_thickness_um = [1] * 35
The copper thickness in micrometers is calculated by multiplying the copper weight in ounces by 35.
Complete the code to calculate the resistance of a copper trace given its length, width, and copper thickness.
resistance = resistivity * (length / (width * [1]))The resistance formula uses the copper thickness in micrometers to calculate the cross-sectional area.
Fix the error in the code to convert copper weight in ounces to thickness in micrometers.
thickness_um = copper_weight_oz [1] 35
Multiplying copper weight in ounces by 35 gives the thickness in micrometers.
Fill both blanks to calculate the copper weight in ounces from thickness in micrometers.
copper_weight_oz = [1] / [2]
Dividing thickness in micrometers by 35 converts it back to copper weight in ounces.
Fill both blanks to calculate the cross-sectional area of a copper trace in square micrometers.
cross_section_um2 = [1] * [2]
The cross-sectional area is width_um * thickness_um.
