PendulumValve.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  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 float 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 float _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. private JetChamber m_JetChamber;
  155. private PressureType m_PressureType;
  156. public AITPendulumValveData DeviceData
  157. {
  158. get
  159. {
  160. AITPendulumValveData deviceData = new AITPendulumValveData
  161. {
  162. DeviceName = Name,
  163. Module = Module,
  164. Pressure = Pressure,
  165. IsOpen = IsOpen || Position > 0,
  166. Position = IsOpen ? Position : 0,
  167. };
  168. return deviceData;
  169. }
  170. }
  171. public PendulumValve(ModuleName mod)
  172. {
  173. Name = VenusDevice.PendulumValve.ToString();
  174. Module = mod.ToString();
  175. var _PortNum = SC.GetStringValue($"{mod}.PendulumValve.Port");
  176. _serial = new AsyncSerialPort(_PortNum, 9600, 8, System.IO.Ports.Parity.None, System.IO.Ports.StopBits.One, EOF);
  177. _pressure_ful_range = SC.GetValue<int>($"{mod}.PendulumValve.PressureFullRange");
  178. _foreLinePressureLimit = SC.GetValue<int>($"{mod}.PendulumValve.ForelinePressureLimit");
  179. _chamberPressureLimit = SC.GetValue<int>($"{mod}.PendulumValve.ChamberPressureLimit");
  180. _turboPumpSpeedLimit = SC.GetValue<int>($"{mod}.PendulumValve.TurboPumpSpeedLimit");
  181. IsOpen = false;
  182. Task.Run(() =>
  183. {
  184. foreach (var data in blockingCollection.GetConsumingEnumerable())
  185. {
  186. _serial?.Write(data);
  187. System.Threading.Thread.Sleep(100);
  188. }
  189. });
  190. //m_PressureType = (PressureType)SC.GetValue<int>("System.PressureUnitType");
  191. m_JetChamber = (JetChamber)SC.GetValue<int>($"{mod}.ChamberType");
  192. if (m_JetChamber == JetChamber.Kepler2200A || m_JetChamber == JetChamber.Kepler2200B)
  193. {
  194. m_PressureType = PressureType.Pa;
  195. }
  196. }
  197. public bool Initialize()
  198. {
  199. DATA.Subscribe($"{Module}.{Name}.DeviceData", () => DeviceData);
  200. if (!_serial.Open())
  201. {
  202. _noRepeatAlarm("Pendulum Valve 串口无法打开");
  203. return false;
  204. }
  205. _serial.OnDataChanged += OnPortDataChanged;
  206. _serial.OnErrorHappened += OnErrorOccurred;
  207. _queryWatch.Restart();
  208. return true;
  209. }
  210. public void Monitor()
  211. {
  212. if (_queryWatch.ElapsedMilliseconds > _readInterval)
  213. {
  214. SendCommand(_querys[_queryFlag++ % 4]);
  215. _queryWatch.Restart();
  216. }
  217. }
  218. public void Reset()
  219. {
  220. }
  221. public void Terminate()
  222. {
  223. if (IsOpen)
  224. {
  225. TurnValve(false);
  226. }
  227. _serial?.Close();
  228. }
  229. private void OnErrorOccurred(string obj)
  230. {
  231. _noRepeatAlarm($"[{Module}] VAT Pendulum Valve error: [{obj}]");
  232. }
  233. private void OnPortDataChanged(string obj)
  234. {
  235. if (string.IsNullOrEmpty(obj))
  236. {
  237. _noRepeatAlarm("VAT Pendulum Valve receive empty message");
  238. return;
  239. }
  240. try
  241. {
  242. var data = obj.TrimEnd().Split(':');
  243. switch (data[0])
  244. {
  245. case "P":
  246. {
  247. int pressure;
  248. if (int.TryParse(data[1], out pressure))
  249. {
  250. if ((m_JetChamber == JetChamber.Kepler2200A || m_JetChamber == JetChamber.Kepler2200B))
  251. {
  252. Pressure =Convert.ToSingle( ConvertPressureUnit.ConvertPaTomtorr( pressure * _pressure_ful_range / 1000000));
  253. }
  254. else
  255. {
  256. Pressure = pressure * _pressure_ful_range / 1000000;
  257. }
  258. }
  259. }
  260. break;
  261. case "A":
  262. {
  263. int position;
  264. if (int.TryParse(data[1], out position))
  265. Position = position / _position_unit;
  266. }
  267. break;
  268. case "i":
  269. {
  270. _tryParseInqueryData(obj);
  271. }
  272. break;
  273. case "C":
  274. IsOpen = false;
  275. break;
  276. case "O":
  277. IsOpen = true;
  278. break;
  279. case "H":
  280. case "R":
  281. case "S":
  282. break;
  283. case "E":
  284. {
  285. _noRepeatAlarm($"[{Module}] VAT Pendulum Valve device error: {_deviceError[data[1]]}");
  286. }
  287. break;
  288. default:
  289. {
  290. _noRepeatAlarm($"VAT Pendulum Valve: unrecognized received data: {obj}");
  291. break;
  292. }
  293. }
  294. }
  295. catch (Exception ex)
  296. {
  297. _noRepeatAlarm($"[{Module}] VAT Pendulum Valve error: [{ex.Message}], Data: {obj}");
  298. }
  299. }
  300. private bool SendCommand(Operation op)
  301. {
  302. if (_noneParaCommandOp.ContainsKey(op))
  303. {
  304. blockingCollection.Add(_noneParaCommandOp[op] + EOF);
  305. return true;
  306. //return _serial.Write(_noneParaCommandOp[op] + EOF);
  307. }
  308. else
  309. {
  310. return false;
  311. }
  312. }
  313. private bool SendCommand(Operation op, int data)
  314. {
  315. if (_singleParaCommandOp.ContainsKey(op))
  316. {
  317. var cmd = string.Format(_singleParaCommandOp[op], data) + EOF;
  318. return _sendCmd(cmd);
  319. }
  320. else
  321. {
  322. _noRepeatAlarm("This VAT Pendulum Valve command need 1 data");
  323. return false;
  324. }
  325. }
  326. private bool _sendCmd(string cmd)
  327. {
  328. blockingCollection.Add(cmd);
  329. return true;
  330. //return _serial.Write(cmd);
  331. }
  332. private void _noRepeatAlarm(string alarm)
  333. {
  334. if (_lastAlarmString != alarm)
  335. {
  336. _lastAlarmString = alarm;
  337. LOG.Write(eEvent.ERR_PENDULUM_VALVE, ModuleHelper.Converter(Module), alarm);
  338. EV.PostAlarmLog(Module, alarm);
  339. }
  340. }
  341. private bool _tryParseInqueryData(string data)
  342. {
  343. var cmdPrix = data.Substring(0, 4);
  344. Operation oper = Operation.Invalid;
  345. foreach (var item in _noneParaCommandOp)
  346. {
  347. if (item.Value == cmdPrix)
  348. {
  349. oper = item.Key;
  350. break;
  351. }
  352. }
  353. if (oper == Operation.Invalid)
  354. {
  355. return false;
  356. }
  357. switch (oper)
  358. {
  359. case Operation.GetDeviceStatus:
  360. {
  361. Status = data.Substring(4, 8);
  362. if (Status[1] == 'E')
  363. {
  364. // Fatal Error
  365. _noRepeatAlarm($"Device Status error:{Status}");
  366. }
  367. else if (Status[3] == '1')
  368. {
  369. // Warning Present
  370. _noRepeatAlarm($"Device Warning Present:{Status}");
  371. }
  372. else if (Status[1] == '3')
  373. {
  374. IsOpen = false;
  375. }
  376. else if (Status[1] == '4')
  377. {
  378. IsOpen = true;
  379. }
  380. }
  381. break;
  382. case Operation.GetPressureSP:
  383. case Operation.GetPositionSP:
  384. {
  385. string Pressure = data.Substring(4, 8);
  386. //LOG.Write(eEvent.EV_DEVICE_INFO, Module, $" PV Pressure SetPoint: {Pressure}");
  387. }
  388. break;
  389. default:
  390. break;
  391. }
  392. return true;
  393. }
  394. public bool SetPosition(int postion)
  395. {
  396. if (_CheckStatus())
  397. {
  398. return SendCommand(Operation.SetPosition, postion * _position_unit);
  399. }
  400. return false;
  401. }
  402. public bool SetPressure(float pressure)
  403. {
  404. if (_CheckStatus())
  405. {
  406. if ((m_JetChamber == JetChamber.Kepler2200A || m_JetChamber == JetChamber.Kepler2200B))
  407. {
  408. return SendCommand(Operation.SetPressure, Convert.ToInt32(pressure * 1000000 / ConvertPressureUnit.ConvertPaTomtorr(_pressure_ful_range)));
  409. }
  410. else
  411. {
  412. return SendCommand(Operation.SetPressure, Convert.ToInt32(pressure * 1000000 / _pressure_ful_range));
  413. }
  414. }
  415. return false;
  416. }
  417. public bool Hold()
  418. {
  419. return SendCommand(Operation.Hold);
  420. }
  421. public bool TurnValve(bool on)
  422. {
  423. if (on == false)
  424. {
  425. return SendCommand(on ? Operation.OpenValve : Operation.CloseValve);
  426. }
  427. else
  428. {
  429. if (_CheckStatus(on))
  430. {
  431. return SendCommand(on ? Operation.OpenValve : Operation.CloseValve);
  432. }
  433. }
  434. return false;
  435. }
  436. bool _CheckStatus(bool bTurnOn = false)
  437. {
  438. if (Status != null && Status[1] == 'E')
  439. {
  440. _noRepeatAlarm($"PendulumValve is error status, can do turn on/off operation.");
  441. return false;
  442. }
  443. var _chamber = DEVICE.GetDevice<JetPMBase>(Module);
  444. if (bTurnOn && !_chamber.IsTurboPumpAtSpeed)
  445. {
  446. _noRepeatAlarm($"Turbo Pump not at speed, can not turn on pendulum valve.");
  447. return false;
  448. }
  449. if (_chamber.ForelinePressure > _foreLinePressureLimit)
  450. {
  451. LOG.Write(eEvent.ERR_DEVICE_INFO, Module, $"Foreline Pressure:{_chamber.ForelinePressure} is higher than {_foreLinePressureLimit}{m_PressureType}, can not turn on pendulum valve.");
  452. return false;
  453. }
  454. if (_chamber.ChamberPressure > _chamberPressureLimit && _chamber.TurboPumpSpeed > _turboPumpSpeedLimit)
  455. {
  456. LOG.Write(eEvent.ERR_DEVICE_INFO, Module, $"Chamber Pressure:{_chamber.ChamberPressure} is higher than {_chamberPressureLimit}{m_PressureType} and Chamber.TurboPumpSpeed is higher than {_turboPumpSpeedLimit}, can not turn on pendulum valve.");
  457. return false;
  458. }
  459. return true;
  460. }
  461. }
  462. }