0
0
SCADA systemsdevops~10 mins

Process mimic diagram design 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 define a basic process mimic element.

SCADA systems
element = {'type': [1], 'id': 'pump1', 'status': 'off'}
Drag options to blanks, or click blank then click option'
A'pump'
B'sensor'
C'valve'
D'controller'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'sensor' or 'valve' which represent different devices.
2fill in blank
medium

Complete the code to set the status of the valve to open.

SCADA systems
valve = {'type': 'valve', 'id': 'valve1', 'status': [1]
Drag options to blanks, or click blank then click option'
A'closed'
B'off'
C'fault'
D'open'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'closed' or 'off' which mean the valve is not open.
3fill in blank
hard

Fix the error in the mimic element definition to correctly represent a sensor.

SCADA systems
sensor = {'type': [1], 'id': 'temp1', 'value': 75}
Drag options to blanks, or click blank then click option'
A'pump'
B'valve'
C'sensor'
D'controller'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'pump' or 'valve' which are not sensors.
4fill in blank
hard

Fill both blanks to create a mimic element with an ID and status.

SCADA systems
element = {'type': 'controller', 'id': [1], 'status': [2]
Drag options to blanks, or click blank then click option'
A'ctrl1'
B'open'
C'off'
D'valve1'
Attempts:
3 left
💡 Hint
Common Mistakes
Using valve ID for controller or wrong status values.
5fill in blank
hard

Fill all three blanks to define a mimic element with a type, ID, and status.

SCADA systems
element = {'type': [1], 'id': [2], 'status': [3]
Drag options to blanks, or click blank then click option'
A'sensor'
B'pump1'
C'on'
D'valve'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing types and IDs or using incorrect status values.