Complete the code to set the clearance for net class 'Power' to 0.2 mm.
set_clearance(net_class='Power', clearance=[1])
The clearance for the 'Power' net class is set to 0.2 mm, which is a typical value for power nets.
Complete the code to apply a clearance rule only between 'Signal' and 'Ground' nets.
apply_clearance_rule(nets=['Signal', 'Ground'], clearance=[1])
The clearance between 'Signal' and 'Ground' nets is set to 0.5 mm to ensure safe spacing.
Fix the error in the clearance rule that sets clearance for 'HighSpeed' nets to 0.1 mm but uses wrong syntax.
set_clearance(net_class='HighSpeed', clearance=[1] mm)
The clearance value should be a number without units inside the function call. '0.1' as a string or '0,1' with comma are incorrect.
Fill both blanks to define clearance rules for 'Power' and 'Signal' nets with 0.3 mm and 0.1 mm respectively.
set_clearance(net_class='Power', clearance=[1]) set_clearance(net_class='Signal', clearance=[2])
Power nets get 0.3 mm clearance for safety, signal nets get 0.1 mm for compact routing.
Fill all three blanks to create clearance rules for 'HighSpeed', 'Power', and 'Ground' nets with 0.1 mm, 0.25 mm, and 0.15 mm respectively.
set_clearance(net_class='HighSpeed', clearance=[1]) set_clearance(net_class='Power', clearance=[2]) set_clearance(net_class='Ground', clearance=[3])
HighSpeed nets require tight clearance of 0.1 mm, Power nets need 0.25 mm, and Ground nets have 0.15 mm clearance.
