Bird
0
0
PCB Designbi_tool~10 mins

Ground pour on PCB in PCB Design - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to define a ground pour area on the PCB.

PCB Design
ground_pour = pcb.create_pour(layer='Bottom', net=[1])
Drag options to blanks, or click blank then click option'
AGND
BSIGNAL
CVCC
DPOWER
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'VCC' or 'POWER' instead of 'GND' for ground pour.
2fill in blank
medium

Complete the code to set the clearance for the ground pour.

PCB Design
ground_pour.set_clearance([1])
Drag options to blanks, or click blank then click option'
A0.5mm
B5mm
C0.05mm
D50mm
Attempts:
3 left
💡 Hint
Common Mistakes
Setting clearance too large or too small causing design issues.
3fill in blank
hard

Fix the error in the code to correctly add a thermal relief to the ground pour.

PCB Design
ground_pour.add_thermal_relief([1]=True)
Drag options to blanks, or click blank then click option'
Athermal
Benable
Cenabled
Denable_thermal
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect parameter names causing runtime errors.
4fill in blank
hard

Fill both blanks to create a ground pour with a specific shape and net.

PCB Design
ground_pour = pcb.create_pour(layer=[1], net=[2])
Drag options to blanks, or click blank then click option'
A'Top'
B'Bottom'
C'GND'
D'VCC'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up layer names or net names.
5fill in blank
hard

Fill all three blanks to define a ground pour with clearance, thermal relief enabled, and on the correct layer.

PCB Design
ground_pour = pcb.create_pour(layer=[1], net='GND')
ground_pour.set_clearance([2])
ground_pour.add_thermal_relief([3]=True)
Drag options to blanks, or click blank then click option'
A'Top'
B0.5mm
Cenabled
D'Bottom'
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong layer names, clearance values, or parameter names.