|
@@ -48,6 +48,9 @@ namespace FurnaceRT.Equipments.Systems
|
|
public AlarmEventItem RecipeThicknessAlarm { get; set; }
|
|
public AlarmEventItem RecipeThicknessAlarm { get; set; }
|
|
public AlarmEventItem RecipeThicknessWarning { get; set; }
|
|
public AlarmEventItem RecipeThicknessWarning { get; set; }
|
|
|
|
|
|
|
|
+ public AlarmEventItem BoatRecipeThicknessAlarm { get; set; }
|
|
|
|
+ public AlarmEventItem BoatRecipeThicknessWarning { get; set; }
|
|
|
|
+
|
|
public AlarmEventItem ReatorStepRunFreqWarning { get; set; }
|
|
public AlarmEventItem ReatorStepRunFreqWarning { get; set; }
|
|
public AlarmEventItem ReatorStepRunFreqAlarm { get; set; }
|
|
public AlarmEventItem ReatorStepRunFreqAlarm { get; set; }
|
|
public AlarmEventItem ReatorStepRunTimeWarning { get; set; }
|
|
public AlarmEventItem ReatorStepRunTimeWarning { get; set; }
|
|
@@ -320,7 +323,28 @@ namespace FurnaceRT.Equipments.Systems
|
|
Action = EventAction.Clear,
|
|
Action = EventAction.Clear,
|
|
Category = "SystemAlarm",
|
|
Category = "SystemAlarm",
|
|
}, () => { return true; });
|
|
}, () => { return true; });
|
|
-
|
|
|
|
|
|
+ BoatRecipeThicknessWarning = SubscribeAlarm(new AlarmEventItem()
|
|
|
|
+ {
|
|
|
|
+ EventEnum = $"{Name}.BoatRecipeThicknessWarning",
|
|
|
|
+ Description = $"",
|
|
|
|
+ Solution = "No information available. Press[Clear] to delete alarm message.",
|
|
|
|
+ Explaination = "No information available.",
|
|
|
|
+ AutoRecovery = false,
|
|
|
|
+ Level = EventLevel.Warning,
|
|
|
|
+ Action = EventAction.Clear,
|
|
|
|
+ Category = "SystemAlarm",
|
|
|
|
+ }, () => { return true; });
|
|
|
|
+ BoatRecipeThicknessAlarm = SubscribeAlarm(new AlarmEventItem()
|
|
|
|
+ {
|
|
|
|
+ EventEnum = $"{Name}.BoatRecipeThicknessAlarm",
|
|
|
|
+ Description = $"",
|
|
|
|
+ Solution = "No information available. Press[Clear] to delete alarm message.",
|
|
|
|
+ Explaination = "No information available.",
|
|
|
|
+ AutoRecovery = false,
|
|
|
|
+ Level = EventLevel.Alarm,
|
|
|
|
+ Action = EventAction.Clear,
|
|
|
|
+ Category = "SystemAlarm",
|
|
|
|
+ }, () => { return true; });
|
|
ReatorStepRunTimeWarning = SubscribeAlarm(new AlarmEventItem()
|
|
ReatorStepRunTimeWarning = SubscribeAlarm(new AlarmEventItem()
|
|
{
|
|
{
|
|
EventEnum = $"{Name}.ReatorStepRunTimeWarning",
|
|
EventEnum = $"{Name}.ReatorStepRunTimeWarning",
|