cc-mek-scada/reactor-plc/threads.lua

506 lines
19 KiB
Lua
Raw Normal View History

local log = require("scada-common.log")
local mqueue = require("scada-common.mqueue")
local ppm = require("scada-common.ppm")
local util = require("scada-common.util")
local threads = {}
2022-04-25 15:40:53 +00:00
local print = util.print
local println = util.println
local print_ts = util.print_ts
local println_ts = util.println_ts
2022-04-27 19:56:55 +00:00
local psleep = util.psleep
2022-04-30 02:27:54 +00:00
local MAIN_CLOCK = 1 -- (1Hz, 20 ticks)
local RPS_SLEEP = 250 -- (250ms, 5 ticks)
2022-04-30 02:27:54 +00:00
local COMMS_SLEEP = 150 -- (150ms, 3 ticks)
local SP_CTRL_SLEEP = 250 -- (250ms, 5 ticks)
local BURN_RATE_RAMP_mB_s = 5.0
2022-04-25 15:40:53 +00:00
2022-05-05 15:55:04 +00:00
local MQ__RPS_CMD = {
2022-04-25 15:40:53 +00:00
SCRAM = 1,
DEGRADED_SCRAM = 2,
TRIP_TIMEOUT = 3
}
2022-04-27 16:21:10 +00:00
local MQ__COMM_CMD = {
SEND_STATUS = 1
}
2022-04-25 15:40:53 +00:00
-- main thread
threads.thread__main = function (smem, init)
2022-04-25 15:40:53 +00:00
-- execute thread
local exec = function ()
log.debug("main thread init, clock inactive")
2022-04-27 19:52:34 +00:00
2022-04-25 15:40:53 +00:00
-- send status updates at 2Hz (every 10 server ticks) (every loop tick)
-- send link requests at 0.5Hz (every 40 server ticks) (every 4 loop ticks)
local LINK_TICKS = 4
local ticks_to_update = 0
2022-05-10 17:06:13 +00:00
local loop_clock = util.new_clock(MAIN_CLOCK)
2022-04-25 15:40:53 +00:00
-- load in from shared memory
2022-04-27 16:21:10 +00:00
local networked = smem.networked
local plc_state = smem.plc_state
local plc_dev = smem.plc_dev
2022-05-05 15:55:04 +00:00
local rps = smem.plc_sys.rps
2022-04-27 16:21:10 +00:00
local plc_comms = smem.plc_sys.plc_comms
2022-05-10 17:06:13 +00:00
local conn_watchdog = smem.plc_sys.conn_watchdog ---@type watchdog
2022-04-25 15:40:53 +00:00
-- event loop
while true do
2022-05-10 16:01:56 +00:00
---@diagnostic disable-next-line: undefined-field
2022-04-25 15:40:53 +00:00
local event, param1, param2, param3, param4, param5 = os.pullEventRaw()
-- handle event
2022-05-10 17:06:13 +00:00
if event == "timer" and loop_clock.is_clock(param1) then
2022-04-25 15:40:53 +00:00
-- core clock tick
if networked then
-- start next clock timer
2022-05-10 17:06:13 +00:00
loop_clock.start()
2022-04-25 15:40:53 +00:00
-- send updated data
if not plc_state.no_modem then
if plc_comms.is_linked() then
smem.q.mq_comms_tx.push_command(MQ__COMM_CMD.SEND_STATUS)
2022-04-25 15:40:53 +00:00
else
if ticks_to_update == 0 then
2022-04-25 15:40:53 +00:00
plc_comms.send_link_req()
ticks_to_update = LINK_TICKS
else
ticks_to_update = ticks_to_update - 1
2022-04-25 15:40:53 +00:00
end
end
end
end
elseif event == "modem_message" and networked and not plc_state.no_modem then
-- got a packet
2022-04-27 16:21:10 +00:00
local packet = plc_comms.parse_packet(param1, param2, param3, param4, param5)
if packet ~= nil then
-- pass the packet onto the comms message queue
smem.q.mq_comms_rx.push_packet(packet)
2022-04-27 16:21:10 +00:00
end
2022-05-10 17:06:13 +00:00
elseif event == "timer" and networked and conn_watchdog.is_timer(param1) then
2022-04-25 15:40:53 +00:00
-- haven't heard from server recently? shutdown reactor
plc_comms.unlink()
2022-05-05 15:55:04 +00:00
smem.q.mq_rps.push_command(MQ__RPS_CMD.TRIP_TIMEOUT)
2022-04-25 15:40:53 +00:00
elseif event == "peripheral_detach" then
-- peripheral disconnect
local type, device = ppm.handle_unmount(param1)
2022-04-25 15:40:53 +00:00
if type ~= nil and device ~= nil then
if type == "fissionReactor" then
println_ts("reactor disconnected!")
log.error("reactor disconnected!")
plc_state.no_reactor = true
2022-04-25 15:40:53 +00:00
plc_state.degraded = true
elseif networked and type == "modem" then
-- we only care if this is our wireless modem
if device == plc_dev.modem then
println_ts("wireless modem disconnected!")
log.error("comms modem disconnected!")
plc_state.no_modem = true
if plc_state.init_ok then
-- try to scram reactor if it is still connected
smem.q.mq_rps.push_command(MQ__RPS_CMD.DEGRADED_SCRAM)
end
plc_state.degraded = true
else
log.warning("non-comms modem disconnected")
end
2022-04-25 15:40:53 +00:00
end
end
elseif event == "peripheral" then
-- peripheral connect
local type, device = ppm.mount(param1)
if type ~= nil and device ~= nil then
if type == "fissionReactor" then
-- reconnected reactor
plc_dev.reactor = device
2022-04-25 15:40:53 +00:00
smem.q.mq_rps.push_command(MQ__RPS_CMD.SCRAM)
2022-04-25 15:40:53 +00:00
println_ts("reactor reconnected.")
log.info("reactor reconnected.")
plc_state.no_reactor = false
2022-04-25 15:40:53 +00:00
if plc_state.init_ok then
rps.reconnect_reactor(plc_dev.reactor)
if networked then
plc_comms.reconnect_reactor(plc_dev.reactor)
end
2022-04-25 15:40:53 +00:00
end
-- determine if we are still in a degraded state
if not networked or ppm.get_device("modem") ~= nil then
2022-04-25 15:40:53 +00:00
plc_state.degraded = false
end
elseif networked and type == "modem" then
if device.isWireless() then
-- reconnected modem
plc_dev.modem = device
if plc_state.init_ok then
plc_comms.reconnect_modem(plc_dev.modem)
end
println_ts("wireless modem reconnected.")
log.info("comms modem reconnected.")
plc_state.no_modem = false
-- determine if we are still in a degraded state
if ppm.get_device("fissionReactor") ~= nil then
plc_state.degraded = false
end
else
log.info("wired modem reconnected.")
end
2022-04-25 15:40:53 +00:00
end
end
if not plc_state.init_ok and not plc_state.degraded then
plc_state.init_ok = true
init()
end
elseif event == "clock_start" then
-- start loop clock
2022-05-10 17:06:13 +00:00
loop_clock.start()
log.debug("main thread clock started")
2022-04-25 15:40:53 +00:00
end
-- check for termination request
if event == "terminate" or ppm.should_terminate() then
log.info("terminate requested, main thread exiting")
2022-05-05 15:55:04 +00:00
-- rps handles reactor shutdown
2022-04-27 16:21:10 +00:00
plc_state.shutdown = true
2022-04-25 15:40:53 +00:00
break
end
end
end
return { exec = exec }
end
2022-05-05 15:55:04 +00:00
-- RPS operation thread
threads.thread__rps = function (smem)
2022-04-25 15:40:53 +00:00
-- execute thread
local exec = function ()
2022-05-05 15:55:04 +00:00
log.debug("rps thread start")
2022-04-27 19:52:34 +00:00
2022-04-25 15:40:53 +00:00
-- load in from shared memory
2022-04-27 16:21:10 +00:00
local networked = smem.networked
local plc_state = smem.plc_state
local plc_dev = smem.plc_dev
2022-05-05 15:55:04 +00:00
local rps = smem.plc_sys.rps
2022-04-27 16:21:10 +00:00
local plc_comms = smem.plc_sys.plc_comms
2022-04-25 15:40:53 +00:00
2022-05-05 15:55:04 +00:00
local rps_queue = smem.q.mq_rps
2022-04-25 15:40:53 +00:00
local was_linked = false
2022-04-27 16:21:10 +00:00
local last_update = util.time()
2022-04-25 15:40:53 +00:00
2022-04-27 16:21:10 +00:00
-- thread loop
2022-04-25 15:40:53 +00:00
while true do
2022-04-30 02:27:54 +00:00
local reactor = plc_dev.reactor
2022-05-05 15:55:04 +00:00
-- RPS checks
2022-04-27 16:21:10 +00:00
if plc_state.init_ok then
2022-05-02 16:06:04 +00:00
-- SCRAM if no open connection
if networked and not plc_comms.is_linked() then
rps.scram()
if was_linked then
was_linked = false
2022-05-05 15:55:04 +00:00
rps.trip_timeout()
2022-05-02 16:06:04 +00:00
end
else
-- would do elseif not networked but there is no reason to do that extra operation
was_linked = true
2022-05-02 16:06:04 +00:00
end
2022-04-27 16:21:10 +00:00
-- if we tried to SCRAM but failed, keep trying
-- in that case, SCRAM won't be called until it reconnects (this is the expected use of this check)
if not plc_state.no_reactor and rps.is_tripped() and reactor.getStatus() then
rps.scram()
2022-04-27 16:21:10 +00:00
end
2022-04-25 15:40:53 +00:00
2022-05-05 15:55:04 +00:00
-- if we are in standalone mode, continuously reset RPS
-- RPS will trip again if there are faults, but if it isn't cleared, the user can't re-enable
if not networked then rps.reset() end
2022-04-25 15:40:53 +00:00
2022-04-27 16:21:10 +00:00
-- check safety (SCRAM occurs if tripped)
2022-05-02 16:06:04 +00:00
if not plc_state.no_reactor then
2022-05-05 15:55:04 +00:00
local rps_tripped, rps_status_string, rps_first = rps.check()
2022-04-27 16:21:10 +00:00
2022-05-05 15:55:04 +00:00
if rps_first then
println_ts("[RPS] SCRAM! safety trip: " .. rps_status_string)
2022-05-02 16:06:04 +00:00
if networked and not plc_state.no_modem then
2022-05-05 15:55:04 +00:00
plc_comms.send_rps_alarm(rps_status_string)
2022-04-25 15:40:53 +00:00
end
2022-04-27 16:21:10 +00:00
end
2022-04-25 15:40:53 +00:00
end
2022-04-27 16:21:10 +00:00
end
2022-04-27 16:21:10 +00:00
-- check for messages in the message queue
2022-05-05 15:55:04 +00:00
while rps_queue.ready() and not plc_state.shutdown do
local msg = rps_queue.pop()
2022-04-27 16:21:10 +00:00
if msg.qtype == mqueue.TYPE.COMMAND then
-- received a command
if plc_state.init_ok then
if msg.message == MQ__RPS_CMD.SCRAM then
-- SCRAM
rps.scram()
elseif msg.message == MQ__RPS_CMD.DEGRADED_SCRAM then
-- lost peripheral(s)
rps.trip_degraded()
elseif msg.message == MQ__RPS_CMD.TRIP_TIMEOUT then
-- watchdog tripped
rps.trip_timeout()
println_ts("server timeout")
log.warning("server timeout")
2022-04-25 15:40:53 +00:00
end
2022-04-27 16:21:10 +00:00
end
elseif msg.qtype == mqueue.TYPE.DATA then
-- received data
elseif msg.qtype == mqueue.TYPE.PACKET then
-- received a packet
2022-04-25 15:40:53 +00:00
end
2022-04-27 16:21:10 +00:00
2022-04-27 21:59:25 +00:00
-- quick yield
util.nop()
2022-04-25 15:40:53 +00:00
end
-- check for termination request
2022-04-27 16:21:10 +00:00
if plc_state.shutdown then
2022-04-25 15:40:53 +00:00
-- safe exit
2022-05-05 15:55:04 +00:00
log.info("rps thread shutdown initiated")
2022-04-25 15:40:53 +00:00
if plc_state.init_ok then
if rps.scram() then
2022-04-25 15:40:53 +00:00
println_ts("reactor disabled")
2022-05-05 15:55:04 +00:00
log.info("rps thread reactor SCRAM OK")
2022-04-25 15:40:53 +00:00
else
println_ts("exiting, reactor failed to disable")
2022-05-05 15:55:04 +00:00
log.error("rps thread failed to SCRAM reactor on exit")
2022-04-25 15:40:53 +00:00
end
end
2022-05-05 15:55:04 +00:00
log.info("rps thread exiting")
break
2022-04-27 16:21:10 +00:00
end
-- delay before next check
2022-05-05 15:55:04 +00:00
last_update = util.adaptive_delay(RPS_SLEEP, last_update)
2022-04-25 15:40:53 +00:00
end
end
return { exec = exec }
end
2022-04-27 16:21:10 +00:00
2022-04-30 02:27:54 +00:00
-- communications sender thread
threads.thread__comms_tx = function (smem)
2022-04-27 16:21:10 +00:00
-- execute thread
local exec = function ()
log.debug("comms tx thread start")
2022-04-27 19:52:34 +00:00
2022-04-27 16:21:10 +00:00
-- load in from shared memory
local plc_state = smem.plc_state
local plc_comms = smem.plc_sys.plc_comms
local comms_queue = smem.q.mq_comms_tx
2022-04-27 16:21:10 +00:00
local last_update = util.time()
2022-04-27 16:21:10 +00:00
-- thread loop
while true do
-- check for messages in the message queue
while comms_queue.ready() and not plc_state.shutdown do
2022-04-27 16:21:10 +00:00
local msg = comms_queue.pop()
if msg.qtype == mqueue.TYPE.COMMAND then
-- received a command
if msg.message == MQ__COMM_CMD.SEND_STATUS then
2022-05-05 15:55:04 +00:00
-- send PLC/RPS status
2022-04-27 16:21:10 +00:00
plc_comms.send_status(plc_state.degraded)
2022-05-05 15:55:04 +00:00
plc_comms.send_rps_status()
2022-04-27 16:21:10 +00:00
end
elseif msg.qtype == mqueue.TYPE.DATA then
-- received data
elseif msg.qtype == mqueue.TYPE.PACKET then
-- received a packet
end
-- quick yield
util.nop()
end
-- check for termination request
if plc_state.shutdown then
log.info("comms tx thread exiting")
break
end
-- delay before next check
last_update = util.adaptive_delay(COMMS_SLEEP, last_update)
end
end
return { exec = exec }
end
2022-04-30 02:27:54 +00:00
-- communications handler thread
threads.thread__comms_rx = function (smem)
-- execute thread
local exec = function ()
log.debug("comms rx thread start")
-- load in from shared memory
local plc_state = smem.plc_state
2022-04-30 02:27:54 +00:00
local setpoints = smem.setpoints
local plc_dev = smem.plc_dev
local rps = smem.plc_sys.rps
local plc_comms = smem.plc_sys.plc_comms
local conn_watchdog = smem.plc_sys.conn_watchdog
local comms_queue = smem.q.mq_comms_rx
local last_update = util.time()
-- thread loop
while true do
-- check for messages in the message queue
while comms_queue.ready() and not plc_state.shutdown do
local msg = comms_queue.pop()
if msg.qtype == mqueue.TYPE.COMMAND then
-- received a command
elseif msg.qtype == mqueue.TYPE.DATA then
-- received data
2022-04-27 16:21:10 +00:00
elseif msg.qtype == mqueue.TYPE.PACKET then
-- received a packet
2022-04-30 02:27:54 +00:00
-- handle the packet (setpoints passed to update burn rate setpoint)
-- (plc_state passed to check if degraded)
2022-04-30 02:27:54 +00:00
-- (conn_watchdog passed to allow feeding the watchdog)
plc_comms.handle_packet(msg.message, setpoints, plc_state, conn_watchdog)
2022-04-27 16:21:10 +00:00
end
2022-04-27 21:59:25 +00:00
-- quick yield
util.nop()
2022-04-27 16:21:10 +00:00
end
-- check for termination request
if plc_state.shutdown then
log.info("comms rx thread exiting")
break
2022-04-27 16:21:10 +00:00
end
-- delay before next check
last_update = util.adaptive_delay(COMMS_SLEEP, last_update)
2022-04-27 16:21:10 +00:00
end
end
2022-04-27 19:52:34 +00:00
return { exec = exec }
2022-04-27 16:21:10 +00:00
end
2022-04-30 02:27:54 +00:00
-- apply setpoints
threads.thread__setpoint_control = function (smem)
2022-04-30 02:27:54 +00:00
-- execute thread
local exec = function ()
log.debug("setpoint control thread start")
2022-04-30 02:27:54 +00:00
-- load in from shared memory
local plc_state = smem.plc_state
local setpoints = smem.setpoints
local plc_dev = smem.plc_dev
local rps = smem.plc_sys.rps
2022-04-30 02:27:54 +00:00
local last_update = util.time()
local running = false
local last_sp_burn = 0
-- thread loop
while true do
local reactor = plc_dev.reactor
-- check if we should start ramping
2022-05-05 20:00:49 +00:00
if setpoints.burn_rate_en and setpoints.burn_rate ~= last_sp_burn then
if rps.is_active() then
if math.abs(setpoints.burn_rate - last_sp_burn) <= 5 then
-- update without ramp if <= 5 mB/t change
log.debug("setting burn rate directly to " .. setpoints.burn_rate .. "mB/t")
reactor.setBurnRate(setpoints.burn_rate)
else
log.debug("starting burn rate ramp from " .. last_sp_burn .. "mB/t to " .. setpoints.burn_rate .. "mB/t")
running = true
end
last_sp_burn = setpoints.burn_rate
else
last_sp_burn = 0
end
2022-04-30 02:27:54 +00:00
end
-- only check I/O if active to save on processing time
if running then
-- do not use the actual elapsed time, it could spike
-- we do not want to have big jumps as that is what we are trying to avoid in the first place
2022-05-10 16:01:56 +00:00
local min_elapsed_s = SP_CTRL_SLEEP / 1000.0
2022-04-30 02:27:54 +00:00
-- clear so we can later evaluate if we should keep running
running = false
-- adjust burn rate (setpoints.burn_rate)
2022-05-05 20:00:49 +00:00
if setpoints.burn_rate_en then
if rps.is_active() then
local current_burn_rate = reactor.getBurnRate()
-- we yielded, check enable again
if setpoints.burn_rate_en and (current_burn_rate ~= ppm.ACCESS_FAULT) and (current_burn_rate ~= setpoints.burn_rate) then
-- calculate new burn rate
local new_burn_rate = current_burn_rate
if setpoints.burn_rate > current_burn_rate then
-- need to ramp up
local new_burn_rate = current_burn_rate + (BURN_RATE_RAMP_mB_s * min_elapsed_s)
if new_burn_rate > setpoints.burn_rate then
new_burn_rate = setpoints.burn_rate
end
else
-- need to ramp down
local new_burn_rate = current_burn_rate - (BURN_RATE_RAMP_mB_s * min_elapsed_s)
if new_burn_rate < setpoints.burn_rate then
new_burn_rate = setpoints.burn_rate
end
2022-04-30 02:27:54 +00:00
end
2022-05-05 20:00:49 +00:00
-- set the burn rate
reactor.setBurnRate(new_burn_rate)
2022-04-30 02:27:54 +00:00
2022-05-05 20:00:49 +00:00
running = running or (new_burn_rate ~= setpoints.burn_rate)
end
else
last_sp_burn = 0
2022-04-30 02:27:54 +00:00
end
end
end
-- check for termination request
if plc_state.shutdown then
log.info("setpoint control thread exiting")
2022-04-30 02:27:54 +00:00
break
end
-- delay before next check
2022-04-30 17:44:28 +00:00
last_update = util.adaptive_delay(SP_CTRL_SLEEP, last_update)
2022-04-30 02:27:54 +00:00
end
end
return { exec = exec }
end
return threads