Complete the code to define the primary goal of component placement.
placement_goal = "Minimize [1] and improve signal integrity"
The primary goal in component placement is to minimize trace length to reduce signal delay and interference.
Complete the code to specify the placement rule for sensitive analog components.
if component_type == 'analog': place_near = '[1]'
Analog components should be placed near the ground plane to reduce noise and improve signal quality.
Fix the error in the placement priority code for high-speed components.
if component_speed == 'high': priority = '[1]'
High-speed components must have high placement priority to ensure signal integrity and timing.
Fill both blanks to set placement constraints for thermal management.
if component_heat > [1]: place_away_from = '[2]'
Components generating heat above 50 units should be placed away from heat sensitive parts to avoid damage.
Fill all three blanks to define a placement rule for minimizing electromagnetic interference (EMI).
if component_type == 'RF': place_near = '[1]' shield_with = '[2]' keep_distance_from = '[3]'
RF components should be placed near the ground plane, shielded with a metal enclosure, and kept away from digital components to reduce EMI.
