0
0
SCADA systemsdevops~10 mins

Color coding standards (ISA-101) 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 color for an alarm state in ISA-101.

SCADA systems
alarm_color = "[1]"  # Color for active alarm
Drag options to blanks, or click blank then click option'
Ared
Bgreen
Cblue
Dyellow
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing green which usually means normal or safe.
Using blue which is not standard for alarms.
2fill in blank
medium

Complete the code to set the color for a normal operating state in ISA-101.

SCADA systems
normal_state_color = "[1]"  # Color for normal operation
Drag options to blanks, or click blank then click option'
Ared
Bgreen
Corange
Dpurple
Attempts:
3 left
💡 Hint
Common Mistakes
Using red which means alarm.
Choosing orange which is for warnings.
3fill in blank
hard

Fix the error in the code to correctly assign the warning color according to ISA-101.

SCADA systems
warning_color = "[1]"  # Color for warning state
Drag options to blanks, or click blank then click option'
Ablue
Bred
Cyellow
Dgreen
Attempts:
3 left
💡 Hint
Common Mistakes
Using red which is for alarms.
Choosing green which means normal.
4fill in blank
hard

Fill both blanks to define colors for 'inactive alarm' and 'acknowledged alarm' states in ISA-101.

SCADA systems
inactive_alarm_color = "[1]"  # Color for inactive alarm
acknowledged_alarm_color = "[2]"  # Color for acknowledged alarm
Drag options to blanks, or click blank then click option'
Agray
Bblue
Cred
Dyellow
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing red with inactive or acknowledged states.
Using yellow which is for warnings.
5fill in blank
hard

Fill all three blanks to create a dictionary mapping ISA-101 states to their standard colors.

SCADA systems
isa101_colors = {
  "active_alarm": "[1]",
  "warning": "[2]",
  "normal": "[3]"
}
Drag options to blanks, or click blank then click option'
Ared
Byellow
Cgreen
Dblue
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping warning and normal colors.
Using blue which is not standard for these states.