Increase air alarm low pressure thresholds.

If a room's pressure drops it can become unbreathable long before people start taking pressure damage, and so also long before the air alarm starts reporting a danger state. I've increased the values so that the air alarm should show danger if the pressure becomes so low as to be unbreathable.
This commit is contained in:
Pieter-Jan Briers
2024-03-17 22:38:48 +01:00
parent b5138b245e
commit 865f530d1f

View File

@@ -12,13 +12,14 @@
- type: alarmThreshold
id: stationPressure
upperBound: !type:AlarmThresholdSetting
threshold: 550 # as defined in Atmospherics.cs
threshold: 550 # HazardHighPressure from Atmospherics.cs
lowerBound: !type:AlarmThresholdSetting
threshold: 20 # as defined in Atmospherics.cs
# Actual low pressure damage threshold is at 20 kPa, but below ~85 kPa you can't breathe due to lack of oxygen.
threshold: 85
upperWarnAround: !type:AlarmThresholdSetting
threshold: 0.7
threshold: 0.7 # 385 kPa, WarningHighPressure from Atmospherics.cs
lowerWarnAround: !type:AlarmThresholdSetting
threshold: 2.5
threshold: 1.05 # ~90 kPa
# a reminder that all of these are percentages (where 1 is 100%),
# so 0.01 is 1%,