Complete the code to define a power plane layer in the PCB stackup.
power_plane_layer = '[1]'
The power plane layer is made of copper to conduct electricity efficiently.
Complete the code to set the power plane thickness to 1 oz copper.
power_plane_thickness = '[1]'
1 oz copper thickness is a common standard for power planes to balance current capacity and cost.
Fix the error in the code to correctly assign the power plane net name.
power_plane_net = '[1]'
The power plane net is usually connected to ground (GND) to provide a stable reference.
Fill both blanks to define a power plane polygon with correct net and layer.
power_plane_polygon = Polygon(net='[1]', layer='[2]')
The polygon should be assigned to the GND net on an internal copper layer like Internal1 for power planes.
Fill all three blanks to create a power plane with correct net, layer, and clearance.
power_plane = PowerPlane(net='[1]', layer='[2]', clearance=[3])
The power plane should be on the GND net, placed on an internal copper layer like Internal2, with a clearance of 0.2mm to avoid shorts.
