0
0
SCADA systemsdevops~10 mins

SCADA applications (water, power, oil and gas) 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 the main SCADA component for water management.

SCADA systems
class WaterSCADA:
    def __init__(self):
        self.system_type = '[1]'
Drag options to blanks, or click blank then click option'
AGas
BWater
COil
DPower
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Power' or 'Oil' which are for other SCADA applications.
2fill in blank
medium

Complete the code to set the correct SCADA system parameter for monitoring electrical grids.

SCADA systems
scada_system = {
    'application': '[1]',
    'monitoring': True
}
Drag options to blanks, or click blank then click option'
APower
BOil
CWater
DGas
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing 'Power' with 'Gas' or 'Oil' which are different industries.
3fill in blank
hard

Fix the error in the SCADA configuration for oil pipeline monitoring.

SCADA systems
scada_config = {
    'application': 'Oil',
    'pipeline_length_km': [1]
}
Drag options to blanks, or click blank then click option'
A1000
B'1000'
C'one thousand'
DNone
Attempts:
3 left
💡 Hint
Common Mistakes
Using quotes around numbers which makes them strings.
4fill in blank
hard

Fill both blanks to create a dictionary comprehension that maps sensor IDs to their status for a gas SCADA system.

SCADA systems
sensor_status = {sensor_id: [1] for sensor_id in sensors if sensors[sensor_id] [2] 'active'}
Drag options to blanks, or click blank then click option'
Asensors[sensor_id]
B==
C!=
Dsensor_id
Attempts:
3 left
💡 Hint
Common Mistakes
Using '!=' instead of '==' in the condition.
Mapping to sensor_id instead of status.
5fill in blank
hard

Fill all three blanks to filter and transform SCADA data for power systems into a dictionary of sensor names and their voltage readings above 220V.

SCADA systems
filtered_data = { [1]: [2] for [3] in data if data[[3]]['voltage'] > 220 }
Drag options to blanks, or click blank then click option'
Asensor_name
Bdata[sensor_name]['voltage']
Dsensor_id
Attempts:
3 left
💡 Hint
Common Mistakes
Using sensor_id inconsistently.
Not accessing voltage correctly.