Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/concept/meltdown-mitigation/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ The following three tasks are all related to writing code for maintaining ideal

## 1. Check for criticality

The first thing a control system has to do is check if the reactor is balanced in criticality.
A reactor is said to be critical if it satisfies the following conditions:
The first thing a control system has to do is check if the reactor is _balanced in criticality_.
A reactor is said to be balanced in criticality if it satisfies the following conditions:

- The temperature is less than 800 K.
- The number of neutrons emitted per second is greater than 500.
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/meltdown-mitigation/conditionals.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def is_criticality_balanced(temperature, neutrons_emitted):
:param neutrons_emitted: int or float - number of neutrons emitted per second.
:return: bool - is criticality balanced?

A reactor is said to be critical if it satisfies the following conditions:
A reactor is said to be balanced in criticality if it satisfies the following conditions:
- The temperature is less than 800 K.
- The number of neutrons emitted per second is greater than 500.
- The product of temperature and neutrons emitted per second is less than 500000.
Expand Down
Loading