2022-12-10 18:58:17 +00:00
|
|
|
local log = require("scada-common.log")
|
|
|
|
local rsio = require("scada-common.rsio")
|
|
|
|
local types = require("scada-common.types")
|
|
|
|
local util = require("scada-common.util")
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-12-10 18:58:17 +00:00
|
|
|
local rsctl = require("supervisor.session.rsctl")
|
2022-12-01 04:31:14 +00:00
|
|
|
|
|
|
|
---@class reactor_control_unit
|
2022-05-09 13:35:39 +00:00
|
|
|
local unit = {}
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
local WASTE_MODE = types.WASTE_MODE
|
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
local ALARM = types.ALARM
|
|
|
|
local PRIO = types.ALARM_PRIORITY
|
|
|
|
local ALARM_STATE = types.ALARM_STATE
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
local TRI_FAIL = types.TRI_FAIL
|
|
|
|
local DUMPING_MODE = types.DUMPING_MODE
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
local IO = rsio.IO
|
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
local FLOW_STABILITY_DELAY_MS = 15000
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
local DT_KEYS = {
|
2022-08-28 16:12:30 +00:00
|
|
|
ReactorTemp = "RTP",
|
|
|
|
ReactorFuel = "RFL",
|
2022-05-21 16:24:43 +00:00
|
|
|
ReactorWaste = "RWS",
|
|
|
|
ReactorCCool = "RCC",
|
|
|
|
ReactorHCool = "RHC",
|
2022-08-28 16:12:30 +00:00
|
|
|
BoilerWater = "BWR",
|
|
|
|
BoilerSteam = "BST",
|
|
|
|
BoilerCCool = "BCC",
|
|
|
|
BoilerHCool = "BHC",
|
2022-09-19 02:25:59 +00:00
|
|
|
TurbineSteam = "TST",
|
|
|
|
TurbinePower = "TPR"
|
2022-05-18 17:28:43 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
---@alias ALARM_INT_STATE integer
|
|
|
|
local AISTATE = {
|
|
|
|
INACTIVE = 0,
|
|
|
|
TRIPPING = 1,
|
|
|
|
TRIPPED = 2,
|
|
|
|
ACKED = 3,
|
|
|
|
RING_BACK = 4,
|
|
|
|
RING_BACK_TRIPPING = 5
|
|
|
|
}
|
|
|
|
|
|
|
|
local aistate_string = {
|
|
|
|
"INACTIVE",
|
|
|
|
"TRIPPING",
|
|
|
|
"TRIPPED",
|
|
|
|
"ACKED",
|
|
|
|
"RING_BACK",
|
|
|
|
"RING_BACK_TRIPPING"
|
|
|
|
}
|
|
|
|
|
2022-12-05 21:17:09 +00:00
|
|
|
-- check if an alarm is active (tripped or ack'd)
|
|
|
|
---@param alarm table alarm entry
|
|
|
|
---@return boolean active
|
|
|
|
local function is_active(alarm)
|
|
|
|
return alarm.state == AISTATE.TRIPPED or alarm.state == AISTATE.ACKED
|
|
|
|
end
|
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
---@class alarm_def
|
|
|
|
---@field state ALARM_INT_STATE internal alarm state
|
|
|
|
---@field trip_time integer time (ms) when first tripped
|
|
|
|
---@field hold_time integer time (s) to hold before tripping
|
|
|
|
---@field id ALARM alarm ID
|
|
|
|
---@field tier integer alarm urgency tier (0 = highest)
|
|
|
|
|
2022-05-11 16:31:19 +00:00
|
|
|
-- create a new reactor unit
|
2022-05-18 17:28:43 +00:00
|
|
|
---@param for_reactor integer reactor unit number
|
|
|
|
---@param num_boilers integer number of boilers expected
|
|
|
|
---@param num_turbines integer number of turbines expected
|
2022-05-31 19:36:17 +00:00
|
|
|
function unit.new(for_reactor, num_boilers, num_turbines)
|
2022-05-09 13:35:39 +00:00
|
|
|
local self = {
|
|
|
|
r_id = for_reactor,
|
2022-09-05 15:49:23 +00:00
|
|
|
plc_s = nil, ---@class plc_session_struct
|
|
|
|
plc_i = nil, ---@class plc_session
|
2022-05-09 13:35:39 +00:00
|
|
|
turbines = {},
|
|
|
|
boilers = {},
|
|
|
|
redstone = {},
|
2022-12-05 21:17:09 +00:00
|
|
|
-- state tracking
|
2022-05-21 16:24:43 +00:00
|
|
|
deltas = {},
|
2022-09-08 14:25:00 +00:00
|
|
|
last_heartbeat = 0,
|
2022-12-05 21:17:09 +00:00
|
|
|
damage_initial = 0,
|
|
|
|
damage_start = 0,
|
2022-12-07 04:39:35 +00:00
|
|
|
damage_last = 0,
|
|
|
|
damage_est_last = 0,
|
2022-12-05 21:17:09 +00:00
|
|
|
waste_mode = WASTE_MODE.AUTO,
|
|
|
|
status_text = { "Unknown", "Awaiting Connection..." },
|
2022-11-26 21:18:31 +00:00
|
|
|
-- logic for alarms
|
|
|
|
had_reactor = false,
|
2022-12-05 21:17:09 +00:00
|
|
|
start_ms = 0,
|
2022-11-26 21:18:31 +00:00
|
|
|
plc_cache = {
|
2022-12-07 04:39:35 +00:00
|
|
|
active = false,
|
2022-11-26 21:18:31 +00:00
|
|
|
ok = false,
|
|
|
|
rps_trip = false,
|
|
|
|
rps_status = {}, ---@type rps_status
|
|
|
|
damage = 0,
|
|
|
|
temp = 0,
|
|
|
|
waste = 0
|
|
|
|
},
|
|
|
|
---@class alarm_monitors
|
|
|
|
alarms = {
|
|
|
|
-- reactor lost under the condition of meltdown imminent
|
|
|
|
ContainmentBreach = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.ContainmentBreach, tier = PRIO.CRITICAL },
|
|
|
|
-- radiation monitor alarm for this unit
|
|
|
|
ContainmentRadiation = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.ContainmentRadiation, tier = PRIO.CRITICAL },
|
|
|
|
-- reactor offline after being online
|
|
|
|
ReactorLost = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.ReactorLost, tier = PRIO.URGENT },
|
|
|
|
-- damage >100%
|
|
|
|
CriticalDamage = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.CriticalDamage, tier = PRIO.CRITICAL },
|
|
|
|
-- reactor damage increasing
|
|
|
|
ReactorDamage = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.ReactorDamage, tier = PRIO.EMERGENCY },
|
|
|
|
-- reactor >1200K
|
|
|
|
ReactorOverTemp = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.ReactorOverTemp, tier = PRIO.URGENT },
|
|
|
|
-- reactor >1100K
|
|
|
|
ReactorHighTemp = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 2, id = ALARM.ReactorHighTemp, tier = PRIO.TIMELY },
|
|
|
|
-- waste = 100%
|
|
|
|
ReactorWasteLeak = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.ReactorWasteLeak, tier = PRIO.EMERGENCY },
|
|
|
|
-- waste >85%
|
|
|
|
ReactorHighWaste = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 2, id = ALARM.ReactorHighWaste, tier = PRIO.TIMELY },
|
|
|
|
-- RPS trip occured
|
|
|
|
RPSTransient = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.RPSTransient, tier = PRIO.URGENT },
|
|
|
|
-- BoilRateMismatch, CoolantFeedMismatch, SteamFeedMismatch, MaxWaterReturnFeed
|
|
|
|
RCSTransient = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 5, id = ALARM.RCSTransient, tier = PRIO.TIMELY },
|
2022-12-05 21:17:09 +00:00
|
|
|
-- "It's just a routine turbin' trip!" -Bill Gibson, "The China Syndrome"
|
2022-11-26 21:18:31 +00:00
|
|
|
TurbineTrip = { state = AISTATE.INACTIVE, trip_time = 0, hold_time = 0, id = ALARM.TurbineTrip, tier = PRIO.URGENT }
|
|
|
|
},
|
2022-12-01 04:31:14 +00:00
|
|
|
---@class unit_db
|
2022-05-09 13:35:39 +00:00
|
|
|
db = {
|
2022-05-11 16:31:19 +00:00
|
|
|
---@class annunciator
|
2022-05-09 13:35:39 +00:00
|
|
|
annunciator = {
|
|
|
|
-- reactor
|
|
|
|
PLCOnline = false,
|
2022-08-28 16:12:30 +00:00
|
|
|
PLCHeartbeat = false, -- alternate true/false to blink, each time there is a keep_alive
|
2022-09-08 14:25:00 +00:00
|
|
|
ReactorSCRAM = false,
|
|
|
|
ManualReactorSCRAM = false,
|
2022-11-11 21:15:44 +00:00
|
|
|
AutoReactorSCRAM = false,
|
2022-05-09 13:35:39 +00:00
|
|
|
RCPTrip = false,
|
|
|
|
RCSFlowLow = false,
|
2022-11-26 21:18:31 +00:00
|
|
|
CoolantLevelLow = false,
|
2022-05-09 13:35:39 +00:00
|
|
|
ReactorTempHigh = false,
|
|
|
|
ReactorHighDeltaT = false,
|
2022-05-21 16:24:43 +00:00
|
|
|
FuelInputRateLow = false,
|
|
|
|
WasteLineOcclusion = false,
|
2022-05-09 13:35:39 +00:00
|
|
|
HighStartupRate = false,
|
|
|
|
-- boiler
|
2022-08-28 16:12:30 +00:00
|
|
|
BoilerOnline = {},
|
2022-05-21 16:24:43 +00:00
|
|
|
HeatingRateLow = {},
|
2022-11-26 21:18:31 +00:00
|
|
|
WaterLevelLow = {},
|
2022-05-18 17:28:43 +00:00
|
|
|
BoilRateMismatch = false,
|
2022-05-09 13:35:39 +00:00
|
|
|
CoolantFeedMismatch = false,
|
|
|
|
-- turbine
|
2022-08-28 16:12:30 +00:00
|
|
|
TurbineOnline = {},
|
2022-05-09 13:35:39 +00:00
|
|
|
SteamFeedMismatch = false,
|
2022-05-21 16:24:43 +00:00
|
|
|
MaxWaterReturnFeed = false,
|
|
|
|
SteamDumpOpen = {},
|
|
|
|
TurbineOverSpeed = {},
|
|
|
|
TurbineTrip = {}
|
2022-11-26 21:18:31 +00:00
|
|
|
},
|
|
|
|
---@class alarms
|
|
|
|
alarm_states = {
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE,
|
|
|
|
ALARM_STATE.INACTIVE
|
2022-05-09 13:35:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-10 18:58:17 +00:00
|
|
|
-- init redstone RTU I/O controller
|
|
|
|
local rs_rtu_io_ctl = rsctl.new(self.redstone)
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
-- init boiler table fields
|
2022-08-28 16:12:30 +00:00
|
|
|
for _ = 1, num_boilers do
|
|
|
|
table.insert(self.db.annunciator.BoilerOnline, false)
|
2022-05-21 16:24:43 +00:00
|
|
|
table.insert(self.db.annunciator.HeatingRateLow, false)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- init turbine table fields
|
2022-08-28 16:12:30 +00:00
|
|
|
for _ = 1, num_turbines do
|
|
|
|
table.insert(self.db.annunciator.TurbineOnline, false)
|
2022-05-21 16:24:43 +00:00
|
|
|
table.insert(self.db.annunciator.SteamDumpOpen, TRI_FAIL.OK)
|
|
|
|
table.insert(self.db.annunciator.TurbineOverSpeed, false)
|
|
|
|
table.insert(self.db.annunciator.TurbineTrip, false)
|
|
|
|
end
|
|
|
|
|
2022-05-11 16:31:19 +00:00
|
|
|
-- PRIVATE FUNCTIONS --
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
--#region time derivative utility functions
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
-- compute a change with respect to time of the given value
|
|
|
|
---@param key string value key
|
|
|
|
---@param value number value
|
2022-10-07 15:43:18 +00:00
|
|
|
---@param time number timestamp for value
|
|
|
|
local function _compute_dt(key, value, time)
|
2022-05-21 16:24:43 +00:00
|
|
|
if self.deltas[key] then
|
|
|
|
local data = self.deltas[key]
|
|
|
|
|
2022-11-17 16:20:53 +00:00
|
|
|
if time > data.last_t then
|
2022-10-07 15:43:18 +00:00
|
|
|
data.dt = (value - data.last_v) / (time - data.last_t)
|
2022-05-21 16:24:43 +00:00
|
|
|
|
2022-10-07 15:43:18 +00:00
|
|
|
data.last_v = value
|
|
|
|
data.last_t = time
|
|
|
|
end
|
2022-05-21 16:24:43 +00:00
|
|
|
else
|
|
|
|
self.deltas[key] = {
|
2022-10-07 15:43:18 +00:00
|
|
|
last_t = time,
|
2022-05-21 16:24:43 +00:00
|
|
|
last_v = value,
|
|
|
|
dt = 0.0
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- clear a delta
|
|
|
|
---@param key string value key
|
2022-09-05 15:49:23 +00:00
|
|
|
local function _reset_dt(key) self.deltas[key] = nil end
|
2022-05-21 16:24:43 +00:00
|
|
|
|
|
|
|
-- get the delta t of a value
|
|
|
|
---@param key string value key
|
|
|
|
---@return number
|
2022-05-31 19:36:17 +00:00
|
|
|
local function _get_dt(key)
|
2022-12-01 04:31:14 +00:00
|
|
|
if self.deltas[key] then return self.deltas[key].dt else return 0.0 end
|
|
|
|
end
|
|
|
|
|
|
|
|
--#endregion
|
|
|
|
|
|
|
|
--#region redstone I/O
|
|
|
|
|
2022-12-10 18:58:17 +00:00
|
|
|
local __rs_w = rs_rtu_io_ctl.digital_write
|
|
|
|
local __rs_r = rs_rtu_io_ctl.digital_read
|
2022-12-01 04:31:14 +00:00
|
|
|
|
|
|
|
-- waste valves
|
2022-12-05 21:17:09 +00:00
|
|
|
local waste_pu = { open = function () __rs_w(IO.WASTE_PU, true) end, close = function () __rs_w(IO.WASTE_PU, false) end }
|
|
|
|
local waste_sna = { open = function () __rs_w(IO.WASTE_PO, true) end, close = function () __rs_w(IO.WASTE_PO, false) end }
|
2022-12-01 04:31:14 +00:00
|
|
|
local waste_po = { open = function () __rs_w(IO.WASTE_POPL, true) end, close = function () __rs_w(IO.WASTE_POPL, false) end }
|
2022-12-05 21:17:09 +00:00
|
|
|
local waste_sps = { open = function () __rs_w(IO.WASTE_AM, true) end, close = function () __rs_w(IO.WASTE_AM, false) end }
|
2022-12-01 04:31:14 +00:00
|
|
|
|
|
|
|
--#endregion
|
|
|
|
|
|
|
|
--#region task helpers
|
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
-- update an alarm state given conditions
|
|
|
|
---@param tripped boolean if the alarm condition is still active
|
|
|
|
---@param alarm alarm_def alarm table
|
|
|
|
local function _update_alarm_state(tripped, alarm)
|
|
|
|
local int_state = alarm.state
|
|
|
|
local ext_state = self.db.alarm_states[alarm.id]
|
|
|
|
|
|
|
|
-- alarm inactive
|
|
|
|
if int_state == AISTATE.INACTIVE then
|
|
|
|
if tripped then
|
|
|
|
alarm.trip_time = util.time_ms()
|
|
|
|
if alarm.hold_time > 0 then
|
|
|
|
alarm.state = AISTATE.TRIPPING
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.INACTIVE
|
|
|
|
else
|
|
|
|
alarm.state = AISTATE.TRIPPED
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.TRIPPED
|
|
|
|
log.info(util.c("UNIT ", self.r_id, " ALARM ", alarm.id, " (", types.alarm_string[alarm.id], "): TRIPPED [PRIORITY ",
|
|
|
|
types.alarm_prio_string[alarm.tier + 1],"]"))
|
|
|
|
end
|
|
|
|
else
|
|
|
|
alarm.trip_time = util.time_ms()
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.INACTIVE
|
|
|
|
end
|
|
|
|
-- alarm condition met, but not yet for required hold time
|
|
|
|
elseif (int_state == AISTATE.TRIPPING) or (int_state == AISTATE.RING_BACK_TRIPPING) then
|
|
|
|
if tripped then
|
|
|
|
local elapsed = util.time_ms() - alarm.trip_time
|
|
|
|
if elapsed > (alarm.hold_time * 1000) then
|
|
|
|
alarm.state = AISTATE.TRIPPED
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.TRIPPED
|
|
|
|
log.info(util.c("UNIT ", self.r_id, " ALARM ", alarm.id, " (", types.alarm_string[alarm.id], "): TRIPPED [PRIORITY ",
|
|
|
|
types.alarm_prio_string[alarm.tier + 1],"]"))
|
|
|
|
end
|
|
|
|
elseif int_state == AISTATE.RING_BACK_TRIPPING then
|
|
|
|
alarm.trip_time = 0
|
|
|
|
alarm.state = AISTATE.RING_BACK
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.RING_BACK
|
|
|
|
else
|
|
|
|
alarm.trip_time = 0
|
|
|
|
alarm.state = AISTATE.INACTIVE
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.INACTIVE
|
|
|
|
end
|
|
|
|
-- alarm tripped and alarming
|
|
|
|
elseif int_state == AISTATE.TRIPPED then
|
|
|
|
if tripped then
|
|
|
|
if ext_state == ALARM_STATE.ACKED then
|
|
|
|
-- was acked by coordinator
|
|
|
|
alarm.state = AISTATE.ACKED
|
|
|
|
end
|
|
|
|
else
|
|
|
|
alarm.state = AISTATE.RING_BACK
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.RING_BACK
|
|
|
|
end
|
|
|
|
-- alarm acknowledged but still tripped
|
|
|
|
elseif int_state == AISTATE.ACKED then
|
|
|
|
if not tripped then
|
|
|
|
alarm.state = AISTATE.RING_BACK
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.RING_BACK
|
|
|
|
end
|
|
|
|
-- alarm no longer tripped, operator must reset to clear
|
|
|
|
elseif int_state == AISTATE.RING_BACK then
|
|
|
|
if tripped then
|
|
|
|
alarm.trip_time = util.time_ms()
|
|
|
|
if alarm.hold_time > 0 then
|
|
|
|
alarm.state = AISTATE.RING_BACK_TRIPPING
|
|
|
|
else
|
|
|
|
alarm.state = AISTATE.TRIPPED
|
|
|
|
self.db.alarm_states[alarm.id] = ALARM_STATE.TRIPPED
|
|
|
|
end
|
|
|
|
elseif ext_state == ALARM_STATE.INACTIVE then
|
|
|
|
-- was reset by coordinator
|
|
|
|
alarm.state = AISTATE.INACTIVE
|
|
|
|
alarm.trip_time = 0
|
|
|
|
end
|
|
|
|
else
|
|
|
|
log.error(util.c("invalid alarm state for unit ", self.r_id, " alarm ", alarm.id), true)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- check for state change
|
|
|
|
if alarm.state ~= int_state then
|
|
|
|
local change_str = util.c(aistate_string[int_state + 1], " -> ", aistate_string[alarm.state + 1])
|
|
|
|
log.debug(util.c("UNIT ", self.r_id, " ALARM ", alarm.id, " (", types.alarm_string[alarm.id], "): ", change_str))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
-- update all delta computations
|
2022-05-31 19:36:17 +00:00
|
|
|
local function _dt__compute_all()
|
2022-05-21 16:24:43 +00:00
|
|
|
if self.plc_s ~= nil then
|
2022-09-05 15:49:23 +00:00
|
|
|
local plc_db = self.plc_i.get_db()
|
2022-05-21 16:24:43 +00:00
|
|
|
|
2022-10-07 15:43:18 +00:00
|
|
|
local last_update_s = plc_db.last_status_update / 1000.0
|
|
|
|
|
|
|
|
_compute_dt(DT_KEYS.ReactorTemp, plc_db.mek_status.temp, last_update_s)
|
|
|
|
_compute_dt(DT_KEYS.ReactorFuel, plc_db.mek_status.fuel, last_update_s)
|
|
|
|
_compute_dt(DT_KEYS.ReactorWaste, plc_db.mek_status.waste, last_update_s)
|
|
|
|
_compute_dt(DT_KEYS.ReactorCCool, plc_db.mek_status.ccool_amnt, last_update_s)
|
|
|
|
_compute_dt(DT_KEYS.ReactorHCool, plc_db.mek_status.hcool_amnt, last_update_s)
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
for i = 1, #self.boilers do
|
|
|
|
local boiler = self.boilers[i] ---@type unit_session
|
2022-09-19 02:25:59 +00:00
|
|
|
local db = boiler.get_db() ---@type boilerv_session_db
|
2022-05-21 16:24:43 +00:00
|
|
|
|
2022-10-07 15:43:18 +00:00
|
|
|
local last_update_s = db.tanks.last_update / 1000.0
|
|
|
|
|
|
|
|
_compute_dt(DT_KEYS.BoilerWater .. boiler.get_device_idx(), db.tanks.water.amount, last_update_s)
|
|
|
|
_compute_dt(DT_KEYS.BoilerSteam .. boiler.get_device_idx(), db.tanks.steam.amount, last_update_s)
|
|
|
|
_compute_dt(DT_KEYS.BoilerCCool .. boiler.get_device_idx(), db.tanks.ccool.amount, last_update_s)
|
|
|
|
_compute_dt(DT_KEYS.BoilerHCool .. boiler.get_device_idx(), db.tanks.hcool.amount, last_update_s)
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
for i = 1, #self.turbines do
|
|
|
|
local turbine = self.turbines[i] ---@type unit_session
|
2022-09-19 02:25:59 +00:00
|
|
|
local db = turbine.get_db() ---@type turbinev_session_db
|
2022-05-21 16:24:43 +00:00
|
|
|
|
2022-10-07 15:43:18 +00:00
|
|
|
local last_update_s = db.tanks.last_update / 1000.0
|
|
|
|
|
|
|
|
_compute_dt(DT_KEYS.TurbineSteam .. turbine.get_device_idx(), db.tanks.steam.amount, last_update_s)
|
2022-09-19 02:25:59 +00:00
|
|
|
---@todo unused currently?
|
2022-10-07 15:43:18 +00:00
|
|
|
_compute_dt(DT_KEYS.TurbinePower .. turbine.get_device_idx(), db.tanks.energy, last_update_s)
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
--#endregion
|
|
|
|
|
|
|
|
--#region alarms and annunciator
|
|
|
|
|
2022-05-11 16:31:19 +00:00
|
|
|
-- update the annunciator
|
2022-05-31 19:36:17 +00:00
|
|
|
local function _update_annunciator()
|
2022-05-21 16:24:43 +00:00
|
|
|
-- update deltas
|
|
|
|
_dt__compute_all()
|
|
|
|
|
2022-11-17 16:20:53 +00:00
|
|
|
-- variables for boiler, or reactor if no boilers used
|
|
|
|
local total_boil_rate = 0.0
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
-------------
|
|
|
|
-- REACTOR --
|
|
|
|
-------------
|
|
|
|
|
2022-05-18 17:28:43 +00:00
|
|
|
-- check PLC status
|
2022-05-11 16:31:19 +00:00
|
|
|
self.db.annunciator.PLCOnline = (self.plc_s ~= nil) and (self.plc_s.open)
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-12-05 21:17:09 +00:00
|
|
|
if self.plc_i ~= nil then
|
2022-09-05 15:49:23 +00:00
|
|
|
local plc_db = self.plc_i.get_db()
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
-- record reactor start time (some alarms are delayed during reactor heatup)
|
2022-12-05 21:17:09 +00:00
|
|
|
if self.start_ms == 0 and plc_db.mek_status.status then
|
|
|
|
self.start_ms = util.time_ms()
|
2022-11-26 21:18:31 +00:00
|
|
|
elseif not plc_db.mek_status.status then
|
2022-12-05 21:17:09 +00:00
|
|
|
self.start_ms = 0
|
2022-11-26 21:18:31 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- record reactor stats
|
2022-12-07 04:39:35 +00:00
|
|
|
self.plc_cache.active = plc_db.mek_status.status
|
2022-11-26 21:18:31 +00:00
|
|
|
self.plc_cache.ok = not (plc_db.rps_status.fault or plc_db.rps_status.sys_fail or plc_db.rps_status.force_dis)
|
|
|
|
self.plc_cache.rps_trip = plc_db.rps_tripped
|
|
|
|
self.plc_cache.rps_status = plc_db.rps_status
|
|
|
|
self.plc_cache.damage = plc_db.mek_status.damage
|
|
|
|
self.plc_cache.temp = plc_db.mek_status.temp
|
|
|
|
self.plc_cache.waste = plc_db.mek_status.waste_fill
|
|
|
|
|
2022-12-05 21:17:09 +00:00
|
|
|
-- track damage
|
2022-12-07 04:39:35 +00:00
|
|
|
if plc_db.mek_status.damage > 0 then
|
|
|
|
if self.damage_start == 0 then
|
|
|
|
self.damage_start = util.time_s()
|
|
|
|
self.damage_initial = plc_db.mek_status.damage
|
|
|
|
end
|
2022-12-05 21:17:09 +00:00
|
|
|
else
|
|
|
|
self.damage_start = 0
|
2022-12-07 04:39:35 +00:00
|
|
|
self.damage_initial = 0
|
|
|
|
self.damage_last = 0
|
|
|
|
self.damage_est_last = 0
|
2022-12-05 21:17:09 +00:00
|
|
|
end
|
|
|
|
|
2022-09-08 14:25:00 +00:00
|
|
|
-- heartbeat blink about every second
|
|
|
|
if self.last_heartbeat + 1000 < plc_db.last_status_update then
|
|
|
|
self.db.annunciator.PLCHeartbeat = not self.db.annunciator.PLCHeartbeat
|
|
|
|
self.last_heartbeat = plc_db.last_status_update
|
|
|
|
end
|
|
|
|
|
|
|
|
-- update other annunciator fields
|
2022-09-08 18:49:01 +00:00
|
|
|
self.db.annunciator.ReactorSCRAM = plc_db.rps_tripped
|
2022-09-08 14:25:00 +00:00
|
|
|
self.db.annunciator.ManualReactorSCRAM = plc_db.rps_trip_cause == types.rps_status_t.manual
|
2022-11-11 21:15:44 +00:00
|
|
|
self.db.annunciator.AutoReactorSCRAM = plc_db.rps_trip_cause == types.rps_status_t.automatic
|
2022-05-18 17:28:43 +00:00
|
|
|
self.db.annunciator.RCPTrip = plc_db.rps_tripped and (plc_db.rps_status.ex_hcool or plc_db.rps_status.no_cool)
|
|
|
|
self.db.annunciator.RCSFlowLow = plc_db.mek_status.ccool_fill < 0.75 or plc_db.mek_status.hcool_fill > 0.25
|
|
|
|
self.db.annunciator.ReactorTempHigh = plc_db.mek_status.temp > 1000
|
2022-05-21 16:24:43 +00:00
|
|
|
self.db.annunciator.ReactorHighDeltaT = _get_dt(DT_KEYS.ReactorTemp) > 100
|
2022-11-17 16:20:53 +00:00
|
|
|
self.db.annunciator.FuelInputRateLow = _get_dt(DT_KEYS.ReactorFuel) < -1.0 or plc_db.mek_status.fuel_fill <= 0.01
|
|
|
|
self.db.annunciator.WasteLineOcclusion = _get_dt(DT_KEYS.ReactorWaste) > 1.0 or plc_db.mek_status.waste_fill >= 0.85
|
2022-09-08 18:49:01 +00:00
|
|
|
---@todo this is dependent on setup, i.e. how much coolant is buffered and the turbine setup
|
2022-10-07 15:43:18 +00:00
|
|
|
self.db.annunciator.HighStartupRate = not plc_db.mek_status.status and plc_db.mek_status.burn_rate > 40
|
2022-11-17 16:20:53 +00:00
|
|
|
|
|
|
|
-- if no boilers, use reactor heating rate to check for boil rate mismatch
|
2022-11-26 21:18:31 +00:00
|
|
|
if num_boilers == 0 then
|
2022-11-17 16:20:53 +00:00
|
|
|
total_boil_rate = plc_db.mek_status.heating_rate
|
|
|
|
end
|
2022-11-26 21:18:31 +00:00
|
|
|
else
|
|
|
|
self.plc_cache.ok = false
|
2022-05-18 17:28:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-------------
|
|
|
|
-- BOILERS --
|
|
|
|
-------------
|
|
|
|
|
2022-08-28 16:12:30 +00:00
|
|
|
-- clear boiler online flags
|
2022-11-26 21:18:31 +00:00
|
|
|
for i = 1, num_boilers do self.db.annunciator.BoilerOnline[i] = false end
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-08-28 16:12:30 +00:00
|
|
|
-- aggregated statistics
|
2022-05-21 16:24:43 +00:00
|
|
|
local boiler_steam_dt_sum = 0.0
|
|
|
|
local boiler_water_dt_sum = 0.0
|
2022-08-28 16:12:30 +00:00
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
if num_boilers > 0 then
|
2022-11-17 17:04:30 +00:00
|
|
|
-- go through boilers for stats and online
|
|
|
|
for i = 1, #self.boilers do
|
|
|
|
local session = self.boilers[i] ---@type unit_session
|
|
|
|
local boiler = session.get_db() ---@type boilerv_session_db
|
2022-08-28 16:12:30 +00:00
|
|
|
|
2022-11-17 17:04:30 +00:00
|
|
|
total_boil_rate = total_boil_rate + boiler.state.boil_rate
|
|
|
|
boiler_steam_dt_sum = _get_dt(DT_KEYS.BoilerSteam .. self.boilers[i].get_device_idx())
|
|
|
|
boiler_water_dt_sum = _get_dt(DT_KEYS.BoilerWater .. self.boilers[i].get_device_idx())
|
2022-08-28 16:12:30 +00:00
|
|
|
|
2022-11-17 17:04:30 +00:00
|
|
|
self.db.annunciator.BoilerOnline[session.get_device_idx()] = true
|
|
|
|
end
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-11-17 17:04:30 +00:00
|
|
|
-- check heating rate low
|
2022-11-17 16:20:53 +00:00
|
|
|
if self.plc_s ~= nil and #self.boilers > 0 then
|
2022-11-17 17:04:30 +00:00
|
|
|
local r_db = self.plc_i.get_db()
|
|
|
|
|
|
|
|
-- check for inactive boilers while reactor is active
|
|
|
|
for i = 1, #self.boilers do
|
|
|
|
local boiler = self.boilers[i] ---@type unit_session
|
|
|
|
local idx = boiler.get_device_idx()
|
|
|
|
local db = boiler.get_db() ---@type boilerv_session_db
|
|
|
|
|
|
|
|
if r_db.mek_status.status then
|
|
|
|
self.db.annunciator.HeatingRateLow[idx] = db.state.boil_rate == 0
|
|
|
|
else
|
|
|
|
self.db.annunciator.HeatingRateLow[idx] = false
|
|
|
|
end
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
end
|
2022-11-17 16:20:53 +00:00
|
|
|
else
|
|
|
|
boiler_steam_dt_sum = _get_dt(DT_KEYS.ReactorHCool)
|
|
|
|
boiler_water_dt_sum = _get_dt(DT_KEYS.ReactorCCool)
|
|
|
|
end
|
|
|
|
|
|
|
|
---------------------------
|
|
|
|
-- COOLANT FEED MISMATCH --
|
|
|
|
---------------------------
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-11-17 16:20:53 +00:00
|
|
|
-- check coolant feed mismatch if using boilers, otherwise calculate with reactor
|
2022-05-21 16:24:43 +00:00
|
|
|
local cfmismatch = false
|
2022-11-17 16:20:53 +00:00
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
if num_boilers > 0 then
|
2022-11-17 17:04:30 +00:00
|
|
|
for i = 1, #self.boilers do
|
2022-11-17 16:20:53 +00:00
|
|
|
local boiler = self.boilers[i] ---@type unit_session
|
2022-11-17 17:04:30 +00:00
|
|
|
local idx = boiler.get_device_idx()
|
2022-11-17 16:20:53 +00:00
|
|
|
local db = boiler.get_db() ---@type boilerv_session_db
|
2022-05-21 16:24:43 +00:00
|
|
|
|
2022-11-17 16:20:53 +00:00
|
|
|
local gaining_hc = _get_dt(DT_KEYS.BoilerHCool .. idx) > 10.0 or db.tanks.hcool_fill == 1
|
2022-09-19 02:25:59 +00:00
|
|
|
|
2022-11-17 17:04:30 +00:00
|
|
|
-- gaining heated coolant
|
|
|
|
cfmismatch = cfmismatch or gaining_hc
|
|
|
|
-- losing cooled coolant
|
2022-11-17 16:20:53 +00:00
|
|
|
cfmismatch = cfmismatch or _get_dt(DT_KEYS.BoilerCCool .. idx) < -10.0 or (gaining_hc and db.tanks.ccool_fill == 0)
|
|
|
|
end
|
|
|
|
elseif self.plc_s ~= nil then
|
|
|
|
local r_db = self.plc_i.get_db()
|
|
|
|
|
|
|
|
local gaining_hc = _get_dt(DT_KEYS.ReactorHCool) > 10.0 or r_db.mek_status.hcool_fill == 1
|
|
|
|
|
|
|
|
-- gaining heated coolant (steam)
|
|
|
|
cfmismatch = cfmismatch or gaining_hc
|
|
|
|
-- losing cooled coolant (water)
|
|
|
|
cfmismatch = cfmismatch or _get_dt(DT_KEYS.ReactorCCool) < -10.0 or (gaining_hc and r_db.mek_status.ccool_fill == 0)
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
self.db.annunciator.CoolantFeedMismatch = cfmismatch
|
|
|
|
|
2022-05-18 17:28:43 +00:00
|
|
|
--------------
|
|
|
|
-- TURBINES --
|
|
|
|
--------------
|
|
|
|
|
2022-08-28 16:12:30 +00:00
|
|
|
-- clear turbine online flags
|
2022-11-26 21:18:31 +00:00
|
|
|
for i = 1, num_turbines do self.db.annunciator.TurbineOnline[i] = false end
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-08-28 16:12:30 +00:00
|
|
|
-- aggregated statistics
|
2022-05-21 16:24:43 +00:00
|
|
|
local total_flow_rate = 0
|
|
|
|
local total_input_rate = 0
|
|
|
|
local max_water_return_rate = 0
|
2022-08-28 16:12:30 +00:00
|
|
|
|
|
|
|
-- go through turbines for stats and online
|
2022-05-21 16:24:43 +00:00
|
|
|
for i = 1, #self.turbines do
|
2022-09-19 02:25:59 +00:00
|
|
|
local session = self.turbines[i] ---@type unit_session
|
2022-09-21 19:53:51 +00:00
|
|
|
local turbine = session.get_db() ---@type turbinev_session_db
|
2022-08-28 16:12:30 +00:00
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
total_flow_rate = total_flow_rate + turbine.state.flow_rate
|
|
|
|
total_input_rate = total_input_rate + turbine.state.steam_input_rate
|
|
|
|
max_water_return_rate = max_water_return_rate + turbine.build.max_water_output
|
2022-08-28 16:12:30 +00:00
|
|
|
|
|
|
|
self.db.annunciator.TurbineOnline[session.get_device_idx()] = true
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
2022-11-17 16:20:53 +00:00
|
|
|
-- check for boil rate mismatch (either between reactor and turbine or boiler and turbine)
|
|
|
|
self.db.annunciator.BoilRateMismatch = math.abs(total_boil_rate - total_input_rate) > 4
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
-- check for steam feed mismatch and max return rate
|
|
|
|
local sfmismatch = math.abs(total_flow_rate - total_input_rate) > 10
|
2022-11-17 16:20:53 +00:00
|
|
|
sfmismatch = sfmismatch or boiler_steam_dt_sum > 2.0 or boiler_water_dt_sum < -2.0
|
2022-05-21 16:24:43 +00:00
|
|
|
self.db.annunciator.SteamFeedMismatch = sfmismatch
|
2022-09-08 14:25:00 +00:00
|
|
|
self.db.annunciator.MaxWaterReturnFeed = max_water_return_rate == total_flow_rate and total_flow_rate ~= 0
|
2022-05-21 16:24:43 +00:00
|
|
|
|
|
|
|
-- check if steam dumps are open
|
|
|
|
for i = 1, #self.turbines do
|
|
|
|
local turbine = self.turbines[i] ---@type unit_session
|
2022-09-21 19:53:51 +00:00
|
|
|
local db = turbine.get_db() ---@type turbinev_session_db
|
2022-05-21 16:24:43 +00:00
|
|
|
local idx = turbine.get_device_idx()
|
|
|
|
|
|
|
|
if db.state.dumping_mode == DUMPING_MODE.IDLE then
|
|
|
|
self.db.annunciator.SteamDumpOpen[idx] = TRI_FAIL.OK
|
|
|
|
elseif db.state.dumping_mode == DUMPING_MODE.DUMPING_EXCESS then
|
|
|
|
self.db.annunciator.SteamDumpOpen[idx] = TRI_FAIL.PARTIAL
|
|
|
|
else
|
|
|
|
self.db.annunciator.SteamDumpOpen[idx] = TRI_FAIL.FULL
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- check if turbines are at max speed but not keeping up
|
|
|
|
for i = 1, #self.turbines do
|
|
|
|
local turbine = self.turbines[i] ---@type unit_session
|
2022-09-21 19:53:51 +00:00
|
|
|
local db = turbine.get_db() ---@type turbinev_session_db
|
2022-05-21 16:24:43 +00:00
|
|
|
local idx = turbine.get_device_idx()
|
|
|
|
|
2022-11-17 16:20:53 +00:00
|
|
|
self.db.annunciator.TurbineOverSpeed[idx] = (db.state.flow_rate == db.build.max_flow_rate) and (_get_dt(DT_KEYS.TurbineSteam .. idx) > 0.0)
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
2022-05-18 17:28:43 +00:00
|
|
|
|
|
|
|
--[[
|
|
|
|
Turbine Trip
|
2022-05-21 16:24:43 +00:00
|
|
|
a turbine trip is when the turbine stops, which means we are no longer receiving water and lose the ability to cool.
|
2022-05-18 17:28:43 +00:00
|
|
|
this can be identified by these conditions:
|
|
|
|
- the current flow rate is 0 mB/t and it should not be
|
|
|
|
- can initially catch this by detecting a 0 flow rate with a non-zero input rate, but eventually the steam will fill up
|
|
|
|
- can later identified by presence of steam in tank with a 0 flow rate
|
|
|
|
]]--
|
2022-05-21 16:24:43 +00:00
|
|
|
for i = 1, #self.turbines do
|
|
|
|
local turbine = self.turbines[i] ---@type unit_session
|
2022-09-21 19:53:51 +00:00
|
|
|
local db = turbine.get_db() ---@type turbinev_session_db
|
2022-05-21 16:24:43 +00:00
|
|
|
|
|
|
|
local has_steam = db.state.steam_input_rate > 0 or db.tanks.steam_fill > 0.01
|
|
|
|
self.db.annunciator.TurbineTrip[turbine.get_device_idx()] = has_steam and db.state.flow_rate == 0
|
|
|
|
end
|
2022-05-18 17:28:43 +00:00
|
|
|
end
|
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
-- evaluate alarm conditions
|
|
|
|
local function _update_alarms()
|
|
|
|
local annunc = self.db.annunciator
|
|
|
|
local plc_cache = self.plc_cache
|
|
|
|
|
|
|
|
-- Containment Breach
|
|
|
|
-- lost plc with critical damage (rip plc, you will be missed)
|
|
|
|
_update_alarm_state((not plc_cache.ok) and (plc_cache.damage > 99), self.alarms.ContainmentBreach)
|
|
|
|
|
|
|
|
-- Containment Radiation
|
|
|
|
---@todo containment radiation alarm
|
|
|
|
_update_alarm_state(false, self.alarms.ContainmentRadiation)
|
|
|
|
|
|
|
|
-- Reactor Lost
|
|
|
|
_update_alarm_state(self.had_reactor and self.plc_s == nil, self.alarms.ReactorLost)
|
|
|
|
|
|
|
|
-- Critical Damage
|
|
|
|
_update_alarm_state(plc_cache.damage >= 100, self.alarms.CriticalDamage)
|
|
|
|
|
|
|
|
-- Reactor Damage
|
|
|
|
_update_alarm_state(plc_cache.damage > 0, self.alarms.ReactorDamage)
|
|
|
|
|
|
|
|
-- Over-Temperature
|
|
|
|
_update_alarm_state(plc_cache.temp >= 1200, self.alarms.ReactorOverTemp)
|
|
|
|
|
|
|
|
-- High Temperature
|
|
|
|
_update_alarm_state(plc_cache.temp > 1150, self.alarms.ReactorHighTemp)
|
|
|
|
|
|
|
|
-- Waste Leak
|
|
|
|
_update_alarm_state(plc_cache.waste >= 0.99, self.alarms.ReactorWasteLeak)
|
|
|
|
|
|
|
|
-- High Waste
|
|
|
|
_update_alarm_state(plc_cache.waste > 0.50, self.alarms.ReactorHighWaste)
|
|
|
|
|
|
|
|
-- RPS Transient (excludes timeouts and manual trips)
|
|
|
|
local rps_alarm = false
|
|
|
|
if plc_cache.rps_status.manual ~= nil then
|
|
|
|
if plc_cache.rps_trip then
|
|
|
|
for key, val in pairs(plc_cache.rps_status) do
|
2022-12-05 21:17:09 +00:00
|
|
|
if key ~= "manual" and key ~= "timeout" then rps_alarm = rps_alarm or val end
|
2022-11-26 21:18:31 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
_update_alarm_state(rps_alarm, self.alarms.RPSTransient)
|
|
|
|
|
|
|
|
-- RCS Transient
|
2022-12-07 04:39:35 +00:00
|
|
|
local any_low = annunc.CoolantLevelLow
|
2022-11-26 21:18:31 +00:00
|
|
|
local any_over = false
|
|
|
|
for i = 1, #annunc.WaterLevelLow do any_low = any_low or annunc.WaterLevelLow[i] end
|
|
|
|
for i = 1, #annunc.TurbineOverSpeed do any_over = any_over or annunc.TurbineOverSpeed[i] end
|
|
|
|
|
|
|
|
local rcs_trans = any_low or any_over or annunc.RCPTrip or annunc.RCSFlowLow or annunc.MaxWaterReturnFeed
|
|
|
|
|
2022-12-07 04:39:35 +00:00
|
|
|
-- annunciator indicators for these states may not indicate a real issue when:
|
|
|
|
-- > flow is ramping up right after reactor start
|
|
|
|
-- > flow is ramping down after reactor shutdown
|
|
|
|
if (util.time_ms() - self.start_ms > FLOW_STABILITY_DELAY_MS) and plc_cache.active then
|
2022-11-26 21:18:31 +00:00
|
|
|
rcs_trans = rcs_trans or annunc.BoilRateMismatch or annunc.CoolantFeedMismatch or annunc.SteamFeedMismatch
|
|
|
|
end
|
|
|
|
|
|
|
|
_update_alarm_state(rcs_trans, self.alarms.RCSTransient)
|
|
|
|
|
|
|
|
-- Turbine Trip
|
|
|
|
local any_trip = false
|
|
|
|
for i = 1, #annunc.TurbineTrip do any_trip = any_trip or annunc.TurbineTrip[i] end
|
|
|
|
_update_alarm_state(any_trip, self.alarms.TurbineTrip)
|
|
|
|
end
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
--#endregion
|
|
|
|
|
2022-05-18 17:28:43 +00:00
|
|
|
-- unlink disconnected units
|
|
|
|
---@param sessions table
|
2022-05-31 19:36:17 +00:00
|
|
|
local function _unlink_disconnected_units(sessions)
|
2022-05-18 17:28:43 +00:00
|
|
|
util.filter_table(sessions, function (u) return u.is_connected() end)
|
2022-05-11 16:31:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- PUBLIC FUNCTIONS --
|
|
|
|
|
2022-12-10 18:58:17 +00:00
|
|
|
---@class reactor_unit
|
|
|
|
local public = {}
|
|
|
|
|
2022-09-19 02:25:59 +00:00
|
|
|
-- ADD/LINK DEVICES --
|
|
|
|
|
2022-05-11 16:31:19 +00:00
|
|
|
-- link the PLC
|
|
|
|
---@param plc_session plc_session_struct
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.link_plc_session(plc_session)
|
2022-11-26 21:18:31 +00:00
|
|
|
self.had_reactor = true
|
2022-05-09 13:35:39 +00:00
|
|
|
self.plc_s = plc_session
|
2022-09-05 15:49:23 +00:00
|
|
|
self.plc_i = plc_session.instance
|
2022-05-21 16:24:43 +00:00
|
|
|
|
|
|
|
-- reset deltas
|
|
|
|
_reset_dt(DT_KEYS.ReactorTemp)
|
|
|
|
_reset_dt(DT_KEYS.ReactorFuel)
|
|
|
|
_reset_dt(DT_KEYS.ReactorWaste)
|
|
|
|
_reset_dt(DT_KEYS.ReactorCCool)
|
|
|
|
_reset_dt(DT_KEYS.ReactorHCool)
|
2022-05-09 13:35:39 +00:00
|
|
|
end
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
-- link a redstone RTU session
|
|
|
|
---@param rs_unit unit_session
|
|
|
|
function public.add_redstone(rs_unit)
|
|
|
|
table.insert(self.redstone, rs_unit)
|
|
|
|
end
|
|
|
|
|
2022-05-18 17:28:43 +00:00
|
|
|
-- link a turbine RTU session
|
|
|
|
---@param turbine unit_session
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.add_turbine(turbine)
|
2022-08-28 16:12:30 +00:00
|
|
|
if #self.turbines < num_turbines and turbine.get_device_idx() <= num_turbines then
|
2022-05-21 16:24:43 +00:00
|
|
|
table.insert(self.turbines, turbine)
|
|
|
|
|
|
|
|
-- reset deltas
|
|
|
|
_reset_dt(DT_KEYS.TurbineSteam .. turbine.get_device_idx())
|
|
|
|
_reset_dt(DT_KEYS.TurbinePower .. turbine.get_device_idx())
|
|
|
|
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
2022-05-09 13:35:39 +00:00
|
|
|
end
|
|
|
|
|
2022-05-18 17:28:43 +00:00
|
|
|
-- link a boiler RTU session
|
|
|
|
---@param boiler unit_session
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.add_boiler(boiler)
|
2022-08-28 16:12:30 +00:00
|
|
|
if #self.boilers < num_boilers and boiler.get_device_idx() <= num_boilers then
|
2022-05-21 16:24:43 +00:00
|
|
|
table.insert(self.boilers, boiler)
|
|
|
|
|
|
|
|
-- reset deltas
|
|
|
|
_reset_dt(DT_KEYS.BoilerWater .. boiler.get_device_idx())
|
|
|
|
_reset_dt(DT_KEYS.BoilerSteam .. boiler.get_device_idx())
|
|
|
|
_reset_dt(DT_KEYS.BoilerCCool .. boiler.get_device_idx())
|
|
|
|
_reset_dt(DT_KEYS.BoilerHCool .. boiler.get_device_idx())
|
|
|
|
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
2022-05-09 13:35:39 +00:00
|
|
|
end
|
|
|
|
|
2022-11-12 06:35:31 +00:00
|
|
|
-- purge devices associated with the given RTU session ID
|
|
|
|
---@param session integer RTU session ID
|
|
|
|
function public.purge_rtu_devices(session)
|
|
|
|
util.filter_table(self.turbines, function (s) return s.get_session_id() ~= session end)
|
|
|
|
util.filter_table(self.boilers, function (s) return s.get_session_id() ~= session end)
|
|
|
|
util.filter_table(self.redstone, function (s) return s.get_session_id() ~= session end)
|
|
|
|
end
|
|
|
|
|
2022-09-19 02:25:59 +00:00
|
|
|
-- UPDATE SESSION --
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
-- update (iterate) this unit
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.update()
|
2022-05-09 13:35:39 +00:00
|
|
|
-- unlink PLC if session was closed
|
2022-08-28 16:12:30 +00:00
|
|
|
if self.plc_s ~= nil and not self.plc_s.open then
|
2022-05-09 13:35:39 +00:00
|
|
|
self.plc_s = nil
|
2022-11-26 21:18:31 +00:00
|
|
|
self.plc_i = nil
|
2022-05-09 13:35:39 +00:00
|
|
|
end
|
|
|
|
|
2022-05-18 17:28:43 +00:00
|
|
|
-- unlink RTU unit sessions if they are closed
|
|
|
|
_unlink_disconnected_units(self.boilers)
|
|
|
|
_unlink_disconnected_units(self.turbines)
|
2022-12-10 18:58:17 +00:00
|
|
|
_unlink_disconnected_units(self.redstone)
|
2022-05-18 17:28:43 +00:00
|
|
|
|
2022-05-09 13:35:39 +00:00
|
|
|
-- update annunciator logic
|
|
|
|
_update_annunciator()
|
2022-11-26 21:18:31 +00:00
|
|
|
|
|
|
|
-- update alarm status
|
|
|
|
_update_alarms()
|
2022-12-05 21:17:09 +00:00
|
|
|
|
|
|
|
-- update status text (what the reactor doin?)
|
|
|
|
if is_active(self.alarms.ContainmentBreach) then
|
|
|
|
-- boom? or was boom disabled
|
|
|
|
if self.plc_i ~= nil and self.plc_i.get_rps().force_dis then
|
|
|
|
self.status_text = { "REACTOR FORCE DISABLED", "meltdown would have occured" }
|
|
|
|
else
|
|
|
|
self.status_text = { "CORE MELTDOWN", "reactor destroyed" }
|
|
|
|
end
|
|
|
|
elseif is_active(self.alarms.CriticalDamage) then
|
|
|
|
-- so much for it being a "routine turbin' trip"...
|
|
|
|
self.status_text = { "MELTDOWN IMMINENT", "evacuate facility immediately" }
|
|
|
|
elseif is_active(self.alarms.ReactorDamage) then
|
|
|
|
-- attempt to determine when a chance of a meltdown will occur
|
2022-12-07 04:39:35 +00:00
|
|
|
self.status_text[1] = "CONTAINMENT TAKING DAMAGE"
|
2022-12-05 21:17:09 +00:00
|
|
|
if self.plc_cache.damage >= 100 then
|
|
|
|
self.status_text[2] = "damage critical"
|
|
|
|
elseif (self.plc_cache.damage - self.damage_initial) > 0 then
|
2022-12-07 04:39:35 +00:00
|
|
|
if self.plc_cache.damage > self.damage_last then
|
|
|
|
self.damage_last = self.plc_cache.damage
|
|
|
|
local rate = (self.plc_cache.damage - self.damage_initial) / (util.time_s() - self.damage_start)
|
|
|
|
self.damage_est_last = (100 - self.plc_cache.damage) / rate
|
|
|
|
end
|
2022-12-05 21:17:09 +00:00
|
|
|
|
2022-12-07 04:39:35 +00:00
|
|
|
self.status_text[2] = util.c("damage critical in ", util.sprintf("%.1f", self.damage_est_last), "s")
|
2022-12-05 21:17:09 +00:00
|
|
|
else
|
|
|
|
self.status_text[2] = "estimating time to critical..."
|
|
|
|
end
|
2022-12-07 04:39:35 +00:00
|
|
|
elseif is_active(self.alarms.ContainmentRadiation) then
|
|
|
|
self.status_text = { "RADIATION DETECTED", "radiation levels above normal" }
|
|
|
|
-- elseif is_active(self.alarms.RPSTransient) then
|
|
|
|
-- RPS status handled when checking reactor status
|
|
|
|
elseif is_active(self.alarms.RCSTransient) then
|
|
|
|
self.status_text = { "RCS TRANSIENT", "check coolant system" }
|
|
|
|
elseif is_active(self.alarms.ReactorOverTemp) then
|
|
|
|
self.status_text = { "CORE OVER TEMP", "reactor core temperature >=1200K" }
|
|
|
|
elseif is_active(self.alarms.ReactorWasteLeak) then
|
|
|
|
self.status_text = { "WASTE LEAK", "radioactive waste leak detected" }
|
|
|
|
elseif is_active(self.alarms.ReactorHighTemp) then
|
|
|
|
self.status_text = { "CORE TEMP HIGH", "reactor core temperature >1150K" }
|
|
|
|
elseif is_active(self.alarms.ReactorHighWaste) then
|
|
|
|
self.status_text = { "WASTE LEVEL HIGH", "waste accumulating in reactor" }
|
|
|
|
elseif is_active(self.alarms.TurbineTrip) then
|
|
|
|
self.status_text = { "TURBINE TRIP", "turbine stall occured" }
|
2022-12-05 21:17:09 +00:00
|
|
|
-- connection dependent states
|
|
|
|
elseif self.plc_i ~= nil then
|
|
|
|
local plc_db = self.plc_i.get_db()
|
|
|
|
if plc_db.mek_status.status then
|
2022-12-07 04:39:35 +00:00
|
|
|
self.status_text[1] = "ACTIVE"
|
|
|
|
|
|
|
|
if self.db.annunciator.ReactorHighDeltaT then
|
|
|
|
self.status_text[2] = "core temperature rising"
|
|
|
|
elseif self.db.annunciator.ReactorTempHigh then
|
|
|
|
self.status_text[2] = "core temp high, system nominal"
|
|
|
|
elseif self.db.annunciator.FuelInputRateLow then
|
|
|
|
self.status_text[2] = "insufficient fuel input rate"
|
|
|
|
elseif self.db.annunciator.WasteLineOcclusion then
|
|
|
|
self.status_text[2] = "insufficient waste output rate"
|
|
|
|
elseif (util.time_ms() - self.start_ms) <= FLOW_STABILITY_DELAY_MS then
|
|
|
|
if num_turbines > 1 then
|
|
|
|
self.status_text[2] = "turbines spinning up"
|
|
|
|
else
|
|
|
|
self.status_text[2] = "turbine spinning up"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
self.status_text[2] = "system nominal"
|
|
|
|
end
|
|
|
|
elseif plc_db.rps_tripped then
|
|
|
|
local cause = "unknown"
|
|
|
|
|
|
|
|
if plc_db.rps_trip_cause == "ok" then
|
|
|
|
-- hmm...
|
|
|
|
elseif plc_db.rps_trip_cause == "dmg_crit" then
|
|
|
|
cause = "core damage critical"
|
|
|
|
elseif plc_db.rps_trip_cause == "high_temp" then
|
|
|
|
cause = "core temperature high"
|
|
|
|
elseif plc_db.rps_trip_cause == "no_coolant" then
|
|
|
|
cause = "insufficient coolant"
|
|
|
|
elseif plc_db.rps_trip_cause == "full_waste" then
|
|
|
|
cause = "excess waste"
|
|
|
|
elseif plc_db.rps_trip_cause == "heated_coolant_backup" then
|
|
|
|
cause = "excess heated coolant"
|
|
|
|
elseif plc_db.rps_trip_cause == "no_fuel" then
|
|
|
|
cause = "insufficient fuel"
|
|
|
|
elseif plc_db.rps_trip_cause == "fault" then
|
|
|
|
cause = "hardware fault"
|
|
|
|
elseif plc_db.rps_trip_cause == "timeout" then
|
|
|
|
cause = "connection timed out"
|
|
|
|
elseif plc_db.rps_trip_cause == "manual" then
|
|
|
|
cause = "manual operator SCRAM"
|
|
|
|
elseif plc_db.rps_trip_cause == "automatic" then
|
|
|
|
cause = "automated system SCRAM"
|
|
|
|
elseif plc_db.rps_trip_cause == "sys_fail" then
|
|
|
|
cause = "PLC system failure"
|
|
|
|
elseif plc_db.rps_trip_cause == "force_disabled" then
|
|
|
|
cause = "reactor force disabled"
|
|
|
|
end
|
|
|
|
|
|
|
|
self.status_text = { "RPS SCRAM", cause }
|
2022-12-05 21:17:09 +00:00
|
|
|
else
|
2022-12-07 04:39:35 +00:00
|
|
|
self.status_text[1] = "IDLE"
|
|
|
|
|
|
|
|
local temp = plc_db.mek_status.temp
|
|
|
|
if temp < 350 then
|
|
|
|
self.status_text[2] = "core cold"
|
|
|
|
elseif temp < 600 then
|
|
|
|
self.status_text[2] = "core warm"
|
|
|
|
else
|
|
|
|
self.status_text[2] = "core hot"
|
|
|
|
end
|
2022-12-05 21:17:09 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
self.status_text = { "Reactor Off-line", "awaiting connection..." }
|
|
|
|
end
|
2022-11-26 21:18:31 +00:00
|
|
|
end
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
-- OPERATIONS --
|
2022-11-26 21:18:31 +00:00
|
|
|
|
|
|
|
-- acknowledge all alarms (if possible)
|
|
|
|
function public.ack_all()
|
|
|
|
for i = 1, #self.db.alarm_states do
|
|
|
|
if self.db.alarm_states[i] == ALARM_STATE.TRIPPED then
|
|
|
|
self.db.alarm_states[i] = ALARM_STATE.ACKED
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- acknowledge an alarm (if possible)
|
|
|
|
---@param id ALARM alarm ID
|
|
|
|
function public.ack_alarm(id)
|
|
|
|
if (type(id) == "number") and (self.db.alarm_states[id] == ALARM_STATE.TRIPPED) then
|
|
|
|
self.db.alarm_states[id] = ALARM_STATE.ACKED
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- reset an alarm (if possible)
|
|
|
|
---@param id ALARM alarm ID
|
|
|
|
function public.reset_alarm(id)
|
|
|
|
if (type(id) == "number") and (self.db.alarm_states[id] == ALARM_STATE.RING_BACK) then
|
|
|
|
self.db.alarm_states[id] = ALARM_STATE.INACTIVE
|
|
|
|
end
|
2022-09-19 02:25:59 +00:00
|
|
|
end
|
|
|
|
|
2022-12-01 04:31:14 +00:00
|
|
|
-- route reactor waste
|
|
|
|
---@param mode WASTE_MODE waste handling mode
|
|
|
|
function public.set_waste(mode)
|
|
|
|
if mode == WASTE_MODE.AUTO then
|
|
|
|
---@todo automatic waste routing
|
2022-12-05 21:17:09 +00:00
|
|
|
self.waste_mode = mode
|
2022-12-01 04:31:14 +00:00
|
|
|
elseif mode == WASTE_MODE.PLUTONIUM then
|
|
|
|
-- route through plutonium generation
|
2022-12-05 21:17:09 +00:00
|
|
|
self.waste_mode = mode
|
2022-12-01 04:31:14 +00:00
|
|
|
waste_pu.open()
|
|
|
|
waste_sna.close()
|
|
|
|
waste_po.close()
|
|
|
|
waste_sps.close()
|
|
|
|
elseif mode == WASTE_MODE.POLONIUM then
|
|
|
|
-- route through polonium generation into pellets
|
2022-12-05 21:17:09 +00:00
|
|
|
self.waste_mode = mode
|
2022-12-01 04:31:14 +00:00
|
|
|
waste_pu.close()
|
|
|
|
waste_sna.open()
|
|
|
|
waste_po.open()
|
|
|
|
waste_sps.close()
|
|
|
|
elseif mode == WASTE_MODE.ANTI_MATTER then
|
|
|
|
-- route through polonium generation into SPS
|
2022-12-05 21:17:09 +00:00
|
|
|
self.waste_mode = mode
|
2022-12-01 04:31:14 +00:00
|
|
|
waste_pu.close()
|
|
|
|
waste_sna.open()
|
|
|
|
waste_po.close()
|
|
|
|
waste_sps.open()
|
2022-12-05 21:17:09 +00:00
|
|
|
else
|
|
|
|
log.debug(util.c("invalid waste mode setting ", mode))
|
2022-12-01 04:31:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-09-19 02:25:59 +00:00
|
|
|
-- READ STATES/PROPERTIES --
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
-- get build properties of all machines
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.get_build()
|
2022-05-21 16:24:43 +00:00
|
|
|
local build = {}
|
|
|
|
|
|
|
|
if self.plc_s ~= nil then
|
2022-09-05 15:49:23 +00:00
|
|
|
build.reactor = self.plc_i.get_struct()
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
build.boilers = {}
|
|
|
|
for i = 1, #self.boilers do
|
2022-08-28 16:12:30 +00:00
|
|
|
local boiler = self.boilers[i] ---@type unit_session
|
2022-11-11 19:59:53 +00:00
|
|
|
build.boilers[boiler.get_device_idx()] = { boiler.get_db().formed, boiler.get_db().build }
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
build.turbines = {}
|
|
|
|
for i = 1, #self.turbines do
|
2022-08-28 16:12:30 +00:00
|
|
|
local turbine = self.turbines[i] ---@type unit_session
|
2022-11-11 19:59:53 +00:00
|
|
|
build.turbines[turbine.get_device_idx()] = { turbine.get_db().formed, turbine.get_db().build }
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return build
|
|
|
|
end
|
|
|
|
|
|
|
|
-- get reactor status
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.get_reactor_status()
|
2022-05-21 16:24:43 +00:00
|
|
|
local status = {}
|
|
|
|
|
|
|
|
if self.plc_s ~= nil then
|
2022-09-05 15:49:23 +00:00
|
|
|
local reactor = self.plc_i
|
2022-09-03 14:50:14 +00:00
|
|
|
status = { reactor.get_status(), reactor.get_rps(), reactor.get_general_status() }
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return status
|
|
|
|
end
|
|
|
|
|
|
|
|
-- get RTU statuses
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.get_rtu_statuses()
|
2022-05-21 16:24:43 +00:00
|
|
|
local status = {}
|
|
|
|
|
|
|
|
-- status of boilers (including tanks)
|
|
|
|
status.boilers = {}
|
|
|
|
for i = 1, #self.boilers do
|
2022-08-28 16:12:30 +00:00
|
|
|
local boiler = self.boilers[i] ---@type unit_session
|
2022-11-11 19:59:53 +00:00
|
|
|
status.boilers[boiler.get_device_idx()] = {
|
|
|
|
boiler.is_faulted(),
|
|
|
|
boiler.get_db().formed,
|
|
|
|
boiler.get_db().state,
|
|
|
|
boiler.get_db().tanks
|
|
|
|
}
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- status of turbines (including tanks)
|
|
|
|
status.turbines = {}
|
|
|
|
for i = 1, #self.turbines do
|
2022-08-28 16:12:30 +00:00
|
|
|
local turbine = self.turbines[i] ---@type unit_session
|
2022-11-11 19:59:53 +00:00
|
|
|
status.turbines[turbine.get_device_idx()] = {
|
|
|
|
turbine.is_faulted(),
|
|
|
|
turbine.get_db().formed,
|
|
|
|
turbine.get_db().state,
|
|
|
|
turbine.get_db().tanks
|
|
|
|
}
|
2022-05-21 16:24:43 +00:00
|
|
|
end
|
|
|
|
|
2022-09-03 14:50:14 +00:00
|
|
|
---@todo other RTU statuses
|
|
|
|
|
2022-05-21 16:24:43 +00:00
|
|
|
return status
|
|
|
|
end
|
|
|
|
|
2022-05-11 16:31:19 +00:00
|
|
|
-- get the annunciator status
|
2022-05-31 19:36:17 +00:00
|
|
|
function public.get_annunciator() return self.db.annunciator end
|
2022-05-09 13:35:39 +00:00
|
|
|
|
2022-11-26 21:18:31 +00:00
|
|
|
-- get the alarm states
|
|
|
|
function public.get_alarms() return self.db.alarm_states end
|
|
|
|
|
2022-12-05 21:17:09 +00:00
|
|
|
-- get unit state (currently only waste mode)
|
|
|
|
function public.get_state()
|
|
|
|
return { self.status_text[1], self.status_text[2], self.waste_mode }
|
|
|
|
end
|
|
|
|
|
2022-08-28 16:57:36 +00:00
|
|
|
-- get the reactor ID
|
|
|
|
function public.get_id() return self.r_id end
|
|
|
|
|
2022-05-09 13:35:39 +00:00
|
|
|
return public
|
|
|
|
end
|
|
|
|
|
|
|
|
return unit
|