0
0
SCADA systemsdevops~10 mins

PID tuning through SCADA in SCADA systems - 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 proportional gain (Kp) in the PID controller.

SCADA systems
pid_controller.set_kp([1])
Drag options to blanks, or click blank then click option'
A5.0
B1.2
C2.0
D0.5
Attempts:
3 left
💡 Hint
Common Mistakes
Using a very high Kp causes system instability.
Using zero Kp means no proportional control.
2fill in blank
medium

Complete the code to set the integral time (Ti) in seconds for the PID controller.

SCADA systems
pid_controller.set_ti([1])
Drag options to blanks, or click blank then click option'
A1000
B0
C100
D10
Attempts:
3 left
💡 Hint
Common Mistakes
Setting Ti to zero disables integral action.
Setting Ti too large slows correction.
3fill in blank
hard

Fix the error in the code to set the derivative time (Td) correctly.

SCADA systems
pid_controller.set_td([1])
Drag options to blanks, or click blank then click option'
A2
B0
C-5
Dabc
Attempts:
3 left
💡 Hint
Common Mistakes
Using negative Td causes runtime errors.
Using non-numeric values causes syntax errors.
4fill in blank
hard

Fill both blanks to create a dictionary with PID parameters for tuning.

SCADA systems
pid_params = {'Kp': [1], 'Ti': [2]
Drag options to blanks, or click blank then click option'
A1.5
B10
C20
D0.1
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up Kp and Ti values.
Using zero or negative values.
5fill in blank
hard

Fill all three blanks to create a PID tuning dictionary with keys and values.

SCADA systems
pid_tuning = {'Kp': [1], 'Ti': [2], 'Td': [3]
Drag options to blanks, or click blank then click option'
A2.0
B15
C1.5
D0.5
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping Ti and Td values.
Using zero or negative numbers.