RGVStationProps.cs
2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
namespace HHECS.DAQShared.Common.Enums
{
public enum RGVStationProps
{
/// <summary>
/// 站台监控-RGV位置
/// </summary>
StationRGVPosition,
/// <summary>
/// 站台监控-RGV位置最小值
/// </summary>
StationRGVSmall,
/// <summary>
/// 站台监控-RGV位置最大值
/// </summary>
StationRGVMax,
/// <summary>
/// 停止
/// </summary>
Stop,
/// <summary>
/// 自动模式
/// </summary>
AutoMode,
/// <summary>
/// 设备维修
/// </summary>
Maintain,
/// <summary>
/// 手动模式
/// </summary>
Manual,
/// <summary>
/// 设备机载模式
/// </summary>
Airborne,
/// <summary>
/// 设备运行模式
/// </summary>
Running,
/// <summary>
/// 设备故障
/// </summary>
Fault,
/// <summary>
/// 外部急停报警
/// </summary>
CC_EStop,
/// <summary>
/// 车载急停报警
/// </summary>
Car_EStop,
/// <summary>
/// 安全门打开报警
/// </summary>
CC_SafetyDoor,
/// <summary>
/// 车载电控柜门打开报警
/// </summary>
Car_CabinetDoor,
/// <summary>
/// 测距传感器故障
/// </summary>
RangeSensorFault,
/// <summary>
/// 光通讯故障
/// </summary>
CommunicationFault,
/// <summary>
/// 变频器故障
/// </summary>
VSD_Fault,
/// <summary>
/// 主接触器未吸合故障
/// </summary>
MaintFault,
/// <summary>
/// 运行超时故障
/// </summary>
RunOvertime,
/// <summary>
/// 定位传感器故障
/// </summary>
PositionPEFault,
/// <summary>
/// 穿梭车超出定位窗口故障
/// </summary>
NotInPositon,
/// <summary>
/// 穿梭车超出位置极限故障
/// </summary>
LimitFault,
/// <summary>
/// 外部停止
/// </summary>
ExternalStop,
/// <summary>
/// 超出软限位故障
/// </summary>
SoftwareLimit,
/// <summary>
/// 设置位置值超限
/// </summary>
SetPositionLimit,
/// <summary>
/// 穿梭车编号错误
/// </summary>
NotShuttle,
/// <summary>
/// 站台监控-RGV目标位置
/// </summary>
StationRGVDestination,
/// <summary>
/// 站台监控-RGV实际位置
/// </summary>
StationRGVActualPositionID
}
}