updated change thresholds

This commit is contained in:
2020-04-14 14:51:44 -05:00
parent 5cf715dbad
commit 5c54cd70da
20 changed files with 109 additions and 109 deletions

View File

@@ -2,37 +2,37 @@ from Channel import PLCChannel, ModbusChannel
from recycle_train import PLC_IP_ADDRESS
tags = [
PLCChannel(PLC_IP_ADDRESS, "clearwell_level","rLIT_201","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "clearwell_pressure","rPIT_201","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "clearwell_level","rLIT_201","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "clearwell_pressure","rPIT_201","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_disconnect","bDS041","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_running","bMA041","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_start","bMS041","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_faulted","bXA041","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_flow","rFIT_201","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_speed_demand_percent","rSC041","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_frequency","rST041","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_speed_percent","rST041pct","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_flow","rFIT_201","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_speed_demand_percent","rSC041","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_frequency","rST041","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_speed_percent","rST041pct","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_comm","Alarm_Comm_Fail_Remote_Pod_1_Loss","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_0","Remote_1_Data[0]","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_1","Remote_1_Data[1]","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_2","Remote_1_Data[2]","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_3","Remote_1_Data[3]","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_4","Remote_1_Data[4]","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_0","Remote_1_Data[0]","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_1","Remote_1_Data[1]","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_2","Remote_1_Data[2]","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_3","Remote_1_Data[3]","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_ast_4","Remote_1_Data[4]","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "remote_enabled","Remote_Pod_1_Enable","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "outlet_flow_eu_max","Outlet_Flow_Meter_EU_Max","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "outlet_flow_eu_min","Outlet_Flow_Meter_EU_Min","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_rate_bpd","Outlet_Flow_Meter_FR","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_rate_gpm","Outlet_Flow_Meter_FR_GPM","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_pressure","Outlet_Flow_Meter_PV","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_life_net_bpd","Outlet_Flow_Meter_TA","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_life_fwd_bpd","Outlet_Flow_Meter_TB","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_life_rvs_bpd","Outlet_Flow_Meter_TC","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "outlet_flow_eu_max","Outlet_Flow_Meter_EU_Max","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "outlet_flow_eu_min","Outlet_Flow_Meter_EU_Min","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_rate_bpd","Outlet_Flow_Meter_FR","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_rate_gpm","Outlet_Flow_Meter_FR_GPM","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_pressure","Outlet_Flow_Meter_PV","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_flow_life_net_bpd","Outlet_Flow_Meter_TA","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_life_fwd_bpd","Outlet_Flow_Meter_TB","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_life_rvs_bpd","Outlet_Flow_Meter_TC","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_ready","bEffluentReady","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_shutdown","bShutdownEffluentPump","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_faulted","bXA042","BOOL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_speed_demand_percent","rSC042","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_frequency","rST042","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_speed_percent","rST042pct","REAL", 1, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_speed_demand_percent","rSC042","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_frequency","rST042","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "effluent_speed_percent","rST042pct","REAL", 5, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_today_total","Influent_Totalizer.Today_TotalFlow","REAL", 100, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_yesterday_total","Influent_Totalizer.Yesterdays_TotalFlow","REAL", 100, 3600, plc_type="CLX"),
PLCChannel(PLC_IP_ADDRESS, "influent_month_total","Influent_Totalizer.Monthlys_TotalFlow","REAL", 100, 3600, plc_type="CLX"),