Bird
0
0
PCB Designbi_tool~10 mins

Zone properties configuration 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 set the zone fill type to solid.

PCB Design
zone.FillType = [1]
Drag options to blanks, or click blank then click option'
ANone
BHatched
CSolid
DGradient
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a fill type that creates patterns instead of solid fill.
2fill in blank
medium

Complete the code to set the zone clearance to 0.2 mm.

PCB Design
zone.Clearance = [1]
Drag options to blanks, or click blank then click option'
A0.5
B0.1
C1.0
D0.2
Attempts:
3 left
💡 Hint
Common Mistakes
Using too large or too small clearance values that affect design rules.
3fill in blank
hard

Fix the error in the code to correctly set the zone layer to 'TopLayer'.

PCB Design
zone.Layer = [1]
Drag options to blanks, or click blank then click option'
Atoplayer
B"TopLayer"
CTopLayer
D'TopLayer'
Attempts:
3 left
💡 Hint
Common Mistakes
Using unquoted names or single quotes which may cause errors.
4fill in blank
hard

Fill both blanks to set the zone's thermal relief to enabled and the pad connection to 'Thermal'.

PCB Design
zone.ThermalRelief = [1]
zone.PadConnection = [2]
Drag options to blanks, or click blank then click option'
ATrue
BFalse
C"Thermal"
D"Direct"
Attempts:
3 left
💡 Hint
Common Mistakes
Using False for thermal relief or wrong pad connection strings.
5fill in blank
hard

Fill all three blanks to configure the zone with a clearance of 0.15, fill type 'Hatched', and layer 'BottomLayer'.

PCB Design
zone.Clearance = [1]
zone.FillType = [2]
zone.Layer = [3]
Drag options to blanks, or click blank then click option'
A0.15
B"Hatched"
C"BottomLayer"
D0.25
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up numeric and string types or using wrong values.