PendulumValve.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using Venus_RT.Modules;
  5. using MECF.Framework.Common.Communications;
  6. using MECF.Framework.Common.Equipment;
  7. using Venus_Core;
  8. using Aitex.Core.RT.SCCore;
  9. using Aitex.Core.RT.Event;
  10. using Aitex.Core.RT.Device;
  11. using Aitex.Core.RT.Log;
  12. using System.Threading.Tasks;
  13. using System.Collections.Concurrent;
  14. using Aitex.Core.Common.DeviceData;
  15. using MECF.Framework.Common.CommonData.DeviceData;
  16. using Aitex.Core.RT.DataCenter;
  17. using Venus_RT.Modules.PMs;
  18. namespace Venus_RT.Devices
  19. {
  20. class PendulumValve : IDevice
  21. {
  22. public enum Operation
  23. {
  24. SetPosition,
  25. GetPositionSP,
  26. Hold,
  27. OpenValve,
  28. CloseValve,
  29. SetPressure,
  30. GetPressureSP,
  31. GetAssembly,
  32. GetPosition,
  33. GetPressure,
  34. GetSensor1Data,
  35. GetSensor2Data,
  36. GetPressureCtrlStatus,
  37. GetDeviceStatus,
  38. GetWarnings,
  39. GetSensorOffset,
  40. GetSensor1Offset,
  41. GetSensor2Offset,
  42. GetLearnStatus,
  43. GetLearnPressureLimit,
  44. GetErrorStatus,
  45. GetFatalErrorStatus,
  46. GetThrottleCycleCounter,
  47. GetIsolationCycleCounter,
  48. GetPowerUpCounter,
  49. GetHardwareConfiguration,
  50. GetFirmwareConfiguration,
  51. GetIdentification,
  52. SetAccessMode,
  53. SetInterfaceConfiguration,
  54. SetValveConfiguration,
  55. SetSensorConfiguration,
  56. SetRangeConfiguration,
  57. SetZero,
  58. SetPressureAlignment,
  59. SetLearn,
  60. DownloadLearnData,
  61. UploadLearnData,
  62. SetPIDConfiguration,
  63. GetPIDConfiguration,
  64. SetValveSpeed,
  65. GetValveSpeed,
  66. Reset,
  67. Invalid,
  68. }
  69. private readonly Dictionary<Operation, string> _noneParaCommandOp = new Dictionary<Operation, string>
  70. {
  71. {Operation.GetPositionSP, "i:38" },
  72. {Operation.Hold, "H:" },
  73. {Operation.CloseValve, "C:" },
  74. {Operation.OpenValve, "O:" },
  75. {Operation.GetPressureSP, "i:38" },
  76. {Operation.GetAssembly, "i:76" },
  77. {Operation.GetPosition, "A:" },
  78. {Operation.GetPressure, "P:" },
  79. {Operation.GetSensor1Data, "i:64" },
  80. {Operation.GetSensor2Data, "i:65" },
  81. {Operation.GetPressureCtrlStatus, "i:36" },
  82. {Operation.GetDeviceStatus, "i:30" },
  83. {Operation.GetWarnings, "i:35" },
  84. {Operation.GetSensorOffset, "i:62" },
  85. {Operation.GetSensor1Offset, "i:60" },
  86. {Operation.GetSensor2Offset, "i:61" },
  87. {Operation.GetLearnStatus, "i:32" },
  88. {Operation.GetLearnPressureLimit, "i:34" },
  89. {Operation.GetErrorStatus, "i:52" },
  90. {Operation.GetFatalErrorStatus, "i:50" },
  91. {Operation.GetThrottleCycleCounter, "i:70" },
  92. {Operation.GetIsolationCycleCounter, "i:71" },
  93. {Operation.GetPowerUpCounter, "i:72" },
  94. {Operation.GetHardwareConfiguration, "i:80" },
  95. {Operation.GetFirmwareConfiguration, "i:82" },
  96. {Operation.GetIdentification, "i:83" },
  97. };
  98. private readonly Dictionary<Operation, string> _singleParaCommandOp = new Dictionary<Operation, string>
  99. {
  100. {Operation.SetPosition, "R:{0:D6}" },
  101. {Operation.SetPressure, "S:{0:D8}" },
  102. {Operation.SetAccessMode, "c:01{0:D2}" },
  103. {Operation.SetInterfaceConfiguration, "s:20{0:D8}" },
  104. {Operation.SetValveConfiguration, "s:04{0:D2}000000" },
  105. {Operation.SetSensorConfiguration, "s:01{0:D8}" },
  106. {Operation.SetRangeConfiguration, "s:21{0:D8}" },
  107. {Operation.SetPressureAlignment, "c:6002{0:D8}" },
  108. {Operation.SetLearn, "L:{0:D8}" },
  109. {Operation.UploadLearnData, "u:{0:D3}" },
  110. {Operation.SetPIDConfiguration, "s:02{0:D8}" },
  111. {Operation.SetValveSpeed, "V:00{0:D4}" }
  112. };
  113. private readonly Dictionary<Operation, string> _twoParaCommandOp = new Dictionary<Operation, string>
  114. {
  115. {Operation.DownloadLearnData, "d:{0:D3}{1:D8}" }
  116. };
  117. private readonly Dictionary<string, string> _deviceError = new Dictionary<string, string>
  118. {
  119. {"000001", "Parity error" },
  120. {"000002", "Input buffer overflow (to many characters) " },
  121. {"000003", "Framing error (data length, number of stop bits)" },
  122. {"000010", "<CR> or <LF> missing" },
  123. {"000011", ": missing" },
  124. {"000012", "Invalid number of characters (between : and [CR][LF])" },
  125. {"000020", "Unknown command" },
  126. {"000021", "Unknown command" },
  127. {"000022", "Invalid value" },
  128. {"000023", "Invalid value" },
  129. {"000030", "Value out of range" },
  130. {"000041", "Command not applicable for hardware configuration" },
  131. {"000060", "ZERO disabled" },
  132. {"000080", "Command not accepted due to local operation" },
  133. {"000082", "Command not accepted due to synchronization, CLOSED or OPEN by digital input, safety mode or fatal error" },
  134. };
  135. public string Module { get; set; }
  136. public string Name { get; set; }
  137. public int Pressure { get; private set; }
  138. public int Position { get; private set; }
  139. public string Status { get; private set; }
  140. public bool IsOpen { get; private set; }
  141. private readonly string EOF = "\r\n";
  142. private readonly int _readInterval = 1000;
  143. private readonly int _position_unit = 100;
  144. private readonly int _pressure_ful_range = 500;
  145. private readonly int _foreLinePressureLimit = 750;
  146. private readonly int _chamberPressureLimit = 600;
  147. private readonly int _turboPumpSpeedLimit = 100;
  148. private int _queryFlag = 0;
  149. private readonly AsyncSerialPort _serial;
  150. private Stopwatch _queryWatch = new Stopwatch();
  151. private string _lastAlarmString = string.Empty;
  152. private Operation[] _querys = new Operation[] { Operation.GetPressure, Operation.GetPosition, Operation.GetDeviceStatus, Operation.GetPressureSP };
  153. BlockingCollection<string> blockingCollection = new BlockingCollection<string>();
  154. public AITPendulumValveData DeviceData
  155. {
  156. get
  157. {
  158. AITPendulumValveData deviceData = new AITPendulumValveData
  159. {
  160. DeviceName = Name,
  161. Module = Module,
  162. Pressure = Pressure,
  163. IsOpen = IsOpen || Position > 0,
  164. Position = IsOpen ? Position : 0,
  165. };
  166. return deviceData;
  167. }
  168. }
  169. public PendulumValve(ModuleName mod)
  170. {
  171. Name = VenusDevice.PendulumValve.ToString();
  172. Module = mod.ToString();
  173. var _PortNum = SC.GetStringValue($"{mod}.PendulumValve.Port");
  174. _serial = new AsyncSerialPort(_PortNum, 9600, 8, System.IO.Ports.Parity.None, System.IO.Ports.StopBits.One, EOF);
  175. _pressure_ful_range = SC.GetValue<int>($"{mod}.PendulumValve.PressureFullRange");
  176. _foreLinePressureLimit = SC.GetValue<int>($"{mod}.PendulumValve.ForelinePressureLimit");
  177. _chamberPressureLimit = SC.GetValue<int>($"{mod}.PendulumValve.ChamberPressureLimit");
  178. _turboPumpSpeedLimit = SC.GetValue<int>($"{mod}.PendulumValve.TurboPumpSpeedLimit");
  179. IsOpen = false;
  180. Task.Run(() =>
  181. {
  182. foreach (var data in blockingCollection.GetConsumingEnumerable())
  183. {
  184. _serial?.Write(data);
  185. System.Threading.Thread.Sleep(100);
  186. }
  187. });
  188. }
  189. public bool Initialize()
  190. {
  191. DATA.Subscribe($"{Module}.{Name}.DeviceData", () => DeviceData);
  192. if (!_serial.Open())
  193. {
  194. _noRepeatAlarm("Pendulum Valve 串口无法打开");
  195. return false;
  196. }
  197. _serial.OnDataChanged += OnPortDataChanged;
  198. _serial.OnErrorHappened += OnErrorOccurred;
  199. _queryWatch.Restart();
  200. return true;
  201. }
  202. public void Monitor()
  203. {
  204. if (_queryWatch.ElapsedMilliseconds > _readInterval)
  205. {
  206. SendCommand(_querys[_queryFlag++ % 4]);
  207. _queryWatch.Restart();
  208. }
  209. }
  210. public void Reset()
  211. {
  212. }
  213. public void Terminate()
  214. {
  215. _serial?.Close();
  216. }
  217. private void OnErrorOccurred(string obj)
  218. {
  219. _noRepeatAlarm($"[{Module}] VAT Pendulum Valve error: [{obj}]");
  220. }
  221. private void OnPortDataChanged(string obj)
  222. {
  223. if (string.IsNullOrEmpty(obj))
  224. {
  225. _noRepeatAlarm("VAT Pendulum Valve receive empty message");
  226. return;
  227. }
  228. try
  229. {
  230. var data = obj.TrimEnd().Split(':');
  231. switch (data[0])
  232. {
  233. case "P":
  234. {
  235. int pressure;
  236. if (int.TryParse(data[1], out pressure))
  237. Pressure = pressure * _pressure_ful_range / 1000000;
  238. }
  239. break;
  240. case "A":
  241. {
  242. int position;
  243. if (int.TryParse(data[1], out position))
  244. Position = position / _position_unit;
  245. }
  246. break;
  247. case "i":
  248. {
  249. _tryParseInqueryData(obj);
  250. }
  251. break;
  252. case "C":
  253. IsOpen = false;
  254. break;
  255. case "O":
  256. IsOpen = true;
  257. break;
  258. case "H":
  259. case "R":
  260. case "S":
  261. break;
  262. case "E":
  263. {
  264. _noRepeatAlarm($"[{Module}] VAT Pendulum Valve device error: {_deviceError[data[1]]}");
  265. }
  266. break;
  267. default:
  268. {
  269. _noRepeatAlarm($"VAT Pendulum Valve: unrecognized received data: {obj}");
  270. break;
  271. }
  272. }
  273. }
  274. catch (Exception ex)
  275. {
  276. _noRepeatAlarm($"[{Module}] VAT Pendulum Valve error: [{ex.Message}], Data: {obj}");
  277. }
  278. }
  279. private bool SendCommand(Operation op)
  280. {
  281. if (_noneParaCommandOp.ContainsKey(op))
  282. {
  283. blockingCollection.Add(_noneParaCommandOp[op] + EOF);
  284. return true;
  285. //return _serial.Write(_noneParaCommandOp[op] + EOF);
  286. }
  287. else
  288. {
  289. return false;
  290. }
  291. }
  292. private bool SendCommand(Operation op, int data)
  293. {
  294. if (_singleParaCommandOp.ContainsKey(op))
  295. {
  296. var cmd = string.Format(_singleParaCommandOp[op], data) + EOF;
  297. return _sendCmd(cmd);
  298. }
  299. else
  300. {
  301. _noRepeatAlarm("This VAT Pendulum Valve command need 1 data");
  302. return false;
  303. }
  304. }
  305. private bool _sendCmd(string cmd)
  306. {
  307. blockingCollection.Add(cmd);
  308. return true;
  309. //return _serial.Write(cmd);
  310. }
  311. private void _noRepeatAlarm(string alarm)
  312. {
  313. if (_lastAlarmString != alarm)
  314. {
  315. _lastAlarmString = alarm;
  316. LOG.Write(eEvent.ERR_PENDULUM_VALVE, ModuleHelper.Converter(Module), alarm);
  317. EV.PostAlarmLog(Module, alarm);
  318. }
  319. }
  320. private bool _tryParseInqueryData(string data)
  321. {
  322. var cmdPrix = data.Substring(0, 4);
  323. Operation oper = Operation.Invalid;
  324. foreach (var item in _noneParaCommandOp)
  325. {
  326. if (item.Value == cmdPrix)
  327. {
  328. oper = item.Key;
  329. break;
  330. }
  331. }
  332. if (oper == Operation.Invalid)
  333. {
  334. return false;
  335. }
  336. switch (oper)
  337. {
  338. case Operation.GetDeviceStatus:
  339. {
  340. Status = data.Substring(4, 8);
  341. if (Status[1] == 'E')
  342. {
  343. // Fatal Error
  344. _noRepeatAlarm($"Device Status error:{Status}");
  345. }
  346. else if (Status[3] == '1')
  347. {
  348. // Warning Present
  349. _noRepeatAlarm($"Device Warning Present:{Status}");
  350. }
  351. else if (Status[1] == '3')
  352. {
  353. IsOpen = false;
  354. }
  355. else if (Status[1] == '4')
  356. {
  357. IsOpen = true;
  358. }
  359. }
  360. break;
  361. case Operation.GetPressureSP:
  362. case Operation.GetPositionSP:
  363. {
  364. string Pressure = data.Substring(4, 8);
  365. //LOG.Write(eEvent.EV_DEVICE_INFO, Module, $" PV Pressure SetPoint: {Pressure}");
  366. }
  367. break;
  368. default:
  369. break;
  370. }
  371. return true;
  372. }
  373. public bool SetPosition(int postion)
  374. {
  375. if (_CheckStatus())
  376. {
  377. return SendCommand(Operation.SetPosition, postion * _position_unit);
  378. }
  379. return false;
  380. }
  381. public bool SetPressure(int pressure)
  382. {
  383. if (_CheckStatus())
  384. {
  385. //IsOpen = true;
  386. return SendCommand(Operation.SetPressure, pressure * 1000000 / _pressure_ful_range);
  387. }
  388. return false;
  389. }
  390. public bool Hold()
  391. {
  392. return SendCommand(Operation.Hold);
  393. }
  394. public bool TurnValve(bool on)
  395. {
  396. if (on == false)
  397. {
  398. return SendCommand(on ? Operation.OpenValve : Operation.CloseValve);
  399. }
  400. else
  401. {
  402. if (_CheckStatus(on))
  403. {
  404. return SendCommand(on ? Operation.OpenValve : Operation.CloseValve);
  405. }
  406. }
  407. return false;
  408. }
  409. bool _CheckStatus(bool bTurnOn = false)
  410. {
  411. if (Status != null && Status[1] == 'E')
  412. {
  413. _noRepeatAlarm($"PendulumValve is error status, can do turn on/off operation.");
  414. return false;
  415. }
  416. var _chamber = DEVICE.GetDevice<JetPMBase>(Module);
  417. if (bTurnOn && !_chamber.IsTurboPumpAtSpeed)
  418. {
  419. _noRepeatAlarm($"Turbo Pump not at speed, can not turn on pendulum valve.");
  420. return false;
  421. }
  422. if (_chamber.ForelinePressure > _foreLinePressureLimit)
  423. {
  424. LOG.Write(eEvent.ERR_DEVICE_INFO, Module, $"Foreline Pressure:{_chamber.ForelinePressure} is higher than {_foreLinePressureLimit}mtorr, can not turn on pendulum valve.");
  425. return false;
  426. }
  427. if (_chamber.ChamberPressure > _chamberPressureLimit && _chamber.TurboPumpSpeed > _turboPumpSpeedLimit)
  428. {
  429. LOG.Write(eEvent.ERR_DEVICE_INFO, Module, $"Chamber Pressure:{_chamber.ChamberPressure} is higher than {_chamberPressureLimit}mtorr and Chamber.TurboPumpSpeed is higher than {_turboPumpSpeedLimit}, can not turn on pendulum valve.");
  430. return false;
  431. }
  432. return true;
  433. }
  434. }
  435. }