StandardHotReservoirInitializeRoutine.cs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using Aitex.Core.RT.SCCore;
  5. using MECF.Framework.Common.Persistent.Reservoirs;
  6. using MECF.Framework.Common.RecipeCenter;
  7. using MECF.Framework.Common.Routine;
  8. using System;
  9. using System.Collections.Generic;
  10. using MECF.Framework.Common.Alarm;
  11. using CyberX8_Core;
  12. using CyberX8_RT.Devices.Facilities;
  13. using CyberX8_RT.Devices.Metal;
  14. using CyberX8_RT.Devices.PowerSupplier;
  15. using CyberX8_RT.Devices.Reservoir;
  16. using CyberX8_RT.Devices.Temperature;
  17. using MECF.Framework.Common.ToolLayout;
  18. namespace CyberX8_RT.Modules.Reservoir
  19. {
  20. public class StandardHotReservoirInitializeRoutine : RoutineBase, IRoutine
  21. {
  22. private enum InitializeStep
  23. {
  24. AutoDiReplen,
  25. CellPump,
  26. WaitCellPump,
  27. WaitRegulatePumpOn,
  28. CheckCellFlow,
  29. ManualCellByPass,
  30. AutoCellManual,
  31. AutoEnableCMM,
  32. AutoEnableCMMWait,
  33. AutoCMMFlowDelay,
  34. AutoCMMFlowCheck,
  35. AutoPHDetect,
  36. AutoCellAutoFlow,
  37. AutoCellAutoFlowDelay,
  38. AutoCellAutoFlowCheck,
  39. AutoCellAutoEnableHED,
  40. AutoCellAutoEnableHEDDelay,
  41. AutoCellAutoEnableHEDCheck,
  42. AutoCellAutoCheckPowerSupplier,
  43. AutoCellAutoLinmotReset,
  44. AutoCellAutoLinmotResetCheck,
  45. CellWSUnclamp,
  46. End
  47. }
  48. #region 常量
  49. private const string AUTO = "Auto";
  50. private const string MANUAL = "Manual";
  51. private const int ENABLE = 5;
  52. #endregion
  53. #region 内部变量
  54. List<StandardHotMetalDevice> _metalDevices = new List<StandardHotMetalDevice>();
  55. private double _cellFlowLowLimit;
  56. private StandardHotReservoirDevice _reservoirDevice;
  57. private ResRecipe _recipe;
  58. private CellPowerSupplier _cellPowerSupplier;
  59. private TemperatureController _temperatureController;
  60. private int _autoHedDelay = 0;
  61. private bool _isRegulatePump;
  62. private int _cellFlowFaultHoldOffTime = 5000;
  63. /// <summary>
  64. /// CMM Check Flow延时
  65. /// </summary>
  66. private int _cmmFlowCheckDelay = 6;
  67. /// <summary>
  68. /// CMM Flow High Fault
  69. /// </summary>
  70. private double _cmmFlowHighFault;
  71. /// <summary>
  72. /// CMM Flow High Warning
  73. /// </summary>
  74. private double _cmmFlowHighWarning;
  75. /// <summary>
  76. /// CMM Flow High Warning
  77. /// </summary>
  78. private double _cmmFlowLowFault;
  79. /// <summary>
  80. /// CMM Flow High Warning
  81. /// </summary>
  82. private double _cmmFlowLowWarning;
  83. /// <summary>
  84. /// Reservoir Persistent
  85. /// </summary>
  86. private ReservoirsPersistentValue _persistentValue;
  87. #endregion
  88. /// <summary>
  89. /// 构造函数
  90. /// </summary>
  91. /// <param name="module"></param>
  92. public StandardHotReservoirInitializeRoutine(string module) : base(module)
  93. {
  94. }
  95. /// <summary>
  96. /// 中止
  97. /// </summary>
  98. public void Abort()
  99. {
  100. Runner.Stop("Manual Abort");
  101. }
  102. /// <summary>
  103. /// 监控
  104. /// </summary>
  105. /// <returns></returns>
  106. public RState Monitor()
  107. {
  108. //Cell Pump
  109. Runner.RunIf(InitializeStep.AutoDiReplen, _recipe.DIReplenEnable, CheckFacilitiesDiReplenStatus, _delay_1ms)
  110. .RunIf(InitializeStep.CellPump, !_isRegulatePump,CellsPumpOn, _delay_1ms)
  111. .WaitWithStopConditionIf(InitializeStep.WaitCellPump, !_isRegulatePump, CheckPumpOnEndStatus, CheckPumpOnStopStatus)
  112. .RunIf(InitializeStep.CellPump, _isRegulatePump, ReservoirPumpOn, _delay_1ms)
  113. .WaitIf(InitializeStep.WaitCellPump, _isRegulatePump, CheckRegulatePumpOn,_delay_3m)
  114. .DelayIf(InitializeStep.WaitRegulatePumpOn,_isRegulatePump, _cellFlowFaultHoldOffTime)
  115. .Run(InitializeStep.CheckCellFlow, CheckCellFlow, _delay_1ms)
  116. //Manual cell Bypass同时disable HED
  117. .RunIf(InitializeStep.ManualCellByPass, _reservoirDevice.OperationMode == MANUAL, CellsByPassEnableHed, _delay_1ms)
  118. //Auto 所有metal 处于Manual, cell Bypass,Enable HED,设置温度
  119. .RunIf(InitializeStep.AutoCellManual, CheckAutoAndAllMetalManual(), AutoCellManualByPassEnableHed, CheckCellManualByPassAndTemperature, _delay_2s)
  120. //Auto 同时recipe enable cmm,并检测CMM Flow
  121. .RunIf(InitializeStep.AutoEnableCMM, CheckAutoEnableCMM(), AutoEnableCMM, _delay_1ms)
  122. .WaitWithStopConditionIf(InitializeStep.AutoEnableCMMWait, CheckAutoEnableCMM(), () => { return _cellPowerSupplier.Status == RState.End; }
  123. , () => { return _cellPowerSupplier.Status == RState.Failed; }, _delay_5s)
  124. .DelayIf(InitializeStep.AutoCMMFlowDelay, CheckAutoEnableCMM(), _cmmFlowCheckDelay * 1000)
  125. .RunIf(InitializeStep.AutoCMMFlowCheck, CheckAutoEnableCMM(), CheckCMMTargetFlow, _delay_1ms)
  126. //Auto 启动PH检测
  127. .RunIf(InitializeStep.AutoPHDetect, _reservoirDevice.OperationMode == AUTO && ReservoirItemManager.Instance.GetReservoirItem(Module.ToString()).PHProbeType == "Standard", StartAutoPHDetect, _delay_1ms)
  128. //Auto Cell Flow
  129. .Run(InitializeStep.AutoCellAutoFlow, AllMetalSwitchFlow, _delay_1ms)
  130. .Delay(InitializeStep.AutoCellAutoFlowDelay, 500)
  131. .Run(InitializeStep.AutoCellAutoFlowCheck, AllMetalCheckFlow, _delay_1ms)
  132. //Auto HED
  133. .Run(InitializeStep.AutoCellAutoEnableHED, AutoHedOn, _delay_1ms)
  134. .Delay(InitializeStep.AutoCellAutoEnableHEDDelay, _autoHedDelay)
  135. .Run(InitializeStep.AutoCellAutoEnableHEDCheck, AutoHedSuccess, _delay_1ms)
  136. //检验PowerSupplier通信
  137. .Run(InitializeStep.AutoCellAutoCheckPowerSupplier, AutoMetalsPowerSupplierCommuncationStatus, _delay_1ms)
  138. //Cell Linmot Reset
  139. .RunIf(InitializeStep.AutoCellAutoLinmotReset, _reservoirDevice.OperationMode == AUTO, AutoMetalResetLinmot, _delay_1ms)
  140. .WaitWithStopCondition(InitializeStep.AutoCellAutoLinmotResetCheck, CheckAutoMetalResetStatus, CheckAutoMetalResetStopStatus)
  141. //Cell Unclamp
  142. .Run(InitializeStep.CellWSUnclamp, MetalsWHUnclampOn, _delay_1ms)
  143. .End(InitializeStep.End, ClearAlarmDataError, _delay_1ms);
  144. return Runner.Status;
  145. }
  146. /// <summary>
  147. /// 检验总Di有没有开
  148. /// </summary>
  149. /// <returns></returns>
  150. private bool CheckFacilitiesDiReplenStatus()
  151. {
  152. SystemFacilities systemFacilities = DEVICE.GetDevice<SystemFacilities>("System.Facilities");
  153. if (systemFacilities != null)
  154. {
  155. bool result = systemFacilities.DIReplenEnable;
  156. if (!result)
  157. {
  158. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "Facilities DiReplen is disable");
  159. }
  160. return result;
  161. }
  162. return false;
  163. }
  164. /// <summary>
  165. /// Metals Pump On
  166. /// </summary>
  167. /// <returns></returns>
  168. private bool CellsPumpOn()
  169. {
  170. for (int i = 0; i < _metalDevices.Count; i++)
  171. {
  172. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  173. hotMetalDevice.OpenPump("", null);
  174. }
  175. return true;
  176. }
  177. /// <summary>
  178. /// Reservoir Pump On
  179. /// </summary>
  180. /// <returns></returns>
  181. private bool ReservoirPumpOn()
  182. {
  183. return _reservoirDevice.RegulatePumpOn("",null);
  184. }
  185. /// <summary>
  186. /// Cell ByPass
  187. /// </summary>
  188. /// <returns></returns>
  189. private bool CellsByPassEnableHed()
  190. {
  191. for (int i = 0; i < _metalDevices.Count; i++)
  192. {
  193. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  194. hotMetalDevice.SwitchToBypass("", null);
  195. }
  196. _temperatureController.EnableOperation("", null);
  197. return true;
  198. }
  199. /// <summary>
  200. /// 检验metal Pump
  201. /// </summary>
  202. /// <returns></returns>
  203. private bool CheckPumpOnEndStatus()
  204. {
  205. int totalCount = 0;
  206. for (int i = 0; i < _metalDevices.Count; i++)
  207. {
  208. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  209. if (hotMetalDevice.Status == RState.End)
  210. {
  211. totalCount++;
  212. }
  213. }
  214. if (totalCount >= _metalDevices.Count)
  215. {
  216. return true;
  217. }
  218. else
  219. {
  220. return false;
  221. }
  222. }
  223. private bool CheckRegulatePumpOn()
  224. {
  225. bool result = _reservoirDevice.ReservoirData.RegulatePumpSignalIn;
  226. return result;
  227. }
  228. /// <summary>
  229. /// 检验metal Pump停止状态
  230. /// </summary>
  231. /// <returns></returns>
  232. private bool CheckPumpOnStopStatus()
  233. {
  234. for (int i = 0; i < _metalDevices.Count; i++)
  235. {
  236. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  237. if (hotMetalDevice.Status == RState.Failed)
  238. {
  239. PumpOffMetals();
  240. return true;
  241. }
  242. }
  243. return false;
  244. }
  245. /// <summary>
  246. /// Pump Off All Metals
  247. /// </summary>
  248. private void PumpOffMetals()
  249. {
  250. for (int i = 0; i < _metalDevices.Count; i++)
  251. {
  252. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  253. hotMetalDevice.ClosePump("",null);
  254. }
  255. }
  256. /// <summary>
  257. /// 检验Cell Flow
  258. /// </summary>
  259. /// <returns></returns>
  260. private bool CheckCellFlow()
  261. {
  262. double toatalCellFlow = 0;
  263. for (int i = 0; i < _metalDevices.Count; i++)
  264. {
  265. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  266. if (hotMetalDevice!=null && hotMetalDevice.MetalDeviceData!=null)
  267. {
  268. toatalCellFlow += hotMetalDevice.MetalDeviceData.CellFlow;
  269. }
  270. }
  271. if (toatalCellFlow < _cellFlowLowLimit)
  272. {
  273. LOG.WriteLog(eEvent.WARN_RESERVOIR, Module, $"{Module} Cell flow:{toatalCellFlow} is less than config item CellFlowLowLimit:{_cellFlowLowLimit}");
  274. return false;
  275. }
  276. return true;
  277. }
  278. /// <summary>
  279. /// 检验所有Metal处于Manual
  280. /// </summary>
  281. /// <returns></returns>
  282. private bool CheckAutoAndAllMetalManual()
  283. {
  284. if (_reservoirDevice.OperationMode != AUTO)
  285. {
  286. return false;
  287. }
  288. for (int i = 0; i < _metalDevices.Count; i++)
  289. {
  290. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  291. if (hotMetalDevice.OperationMode != MANUAL)
  292. {
  293. return false;
  294. }
  295. }
  296. return true;
  297. }
  298. /// <summary>
  299. /// Auto 同时Metal均为Manual,Bypass metal,enable HED,设置温度
  300. /// </summary>
  301. /// <returns></returns>
  302. private bool AutoCellManualByPassEnableHed()
  303. {
  304. for (int i = 0; i < _metalDevices.Count; i++)
  305. {
  306. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  307. hotMetalDevice.SwitchToBypass("", null);
  308. }
  309. _temperatureController.EnableOperation("", null);
  310. _temperatureController.SetTargetTemperatureOperation("", new object[] { _recipe.TemperatureSetPoint });
  311. return true;
  312. }
  313. /// <summary>
  314. /// 检验cell By Pass和温度
  315. /// </summary>
  316. /// <returns></returns>
  317. private bool CheckCellManualByPassAndTemperature()
  318. {
  319. for (int i = 0; i < _metalDevices.Count; i++)
  320. {
  321. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  322. if (hotMetalDevice.MetalDeviceData.Circulation)
  323. {
  324. return false;
  325. }
  326. }
  327. if (_temperatureController.TemperatureData.ControlOperationModel == 0)
  328. {
  329. return false;
  330. }
  331. if (Math.Abs(_recipe.TemperatureSetPoint - _temperatureController.TemperatureData.TargetTemperature) >= 0.1 * _recipe.TemperatureSetPoint)
  332. {
  333. return false;
  334. }
  335. return true;
  336. }
  337. /// <summary>
  338. /// 检验 Auto ,同时Enable CMM
  339. /// </summary>
  340. /// <returns></returns>
  341. private bool CheckAutoEnableCMM()
  342. {
  343. if (_reservoirDevice.OperationMode != AUTO || ReservoirItemManager.Instance.GetReservoirItem(Module.ToString()).CMMType != "Standard")
  344. {
  345. return false;
  346. }
  347. return _recipe.CMMEnable;
  348. }
  349. /// <summary>
  350. /// 自动Enable CMM
  351. /// </summary>
  352. /// <returns></returns>
  353. private bool AutoEnableCMM()
  354. {
  355. return _cellPowerSupplier.SetCurrentAndOutput(_recipe.CMMCurrentSetPoint);
  356. }
  357. /// <summary>
  358. /// 检验目标Flow是否到达设定值
  359. /// </summary>
  360. /// <returns></returns>
  361. private bool CheckCMMTargetFlow()
  362. {
  363. double flow = _reservoirDevice.ReservoirData.Flow;
  364. if (flow < _cmmFlowLowFault)
  365. {
  366. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, $"{Module} CMM flow:{flow} is less than config item CMMFlowLowFault:{_cmmFlowLowFault}");
  367. if (_cellPowerSupplier.PowerSupplierData.Enabled) _cellPowerSupplier.DisableOperation("", null);
  368. return false;
  369. }
  370. else if (flow < _cmmFlowLowWarning)
  371. {
  372. LOG.WriteLog(eEvent.WARN_RESERVOIR, Module, $"{Module} CMM flow:{flow} is less than config item CMMFlowLowWarning:{_cmmFlowLowWarning}");
  373. }
  374. else if (flow > _cmmFlowHighFault)
  375. {
  376. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, $"{Module} CMM flow:{flow} is over config item CMMFlowHighFault:{_cmmFlowLowFault}");
  377. if (_cellPowerSupplier.PowerSupplierData.Enabled) _cellPowerSupplier.DisableOperation("", null);
  378. return false;
  379. }
  380. else if (flow > _cmmFlowHighWarning)
  381. {
  382. LOG.WriteLog(eEvent.WARN_RESERVOIR, Module, $"{Module} CMM flow:{flow} is over config item CMMFlowHighWarning:{_cmmFlowLowWarning}");
  383. }
  384. return true;
  385. }
  386. /// <summary>
  387. /// 启动自动检测
  388. /// </summary>
  389. /// <returns></returns>
  390. private bool StartAutoPHDetect()
  391. {
  392. return _reservoirDevice.StartDetectPHValve();
  393. }
  394. /// <summary>
  395. /// 检验所有Metal处于Manual
  396. /// </summary>
  397. /// <returns></returns>
  398. private bool CheckAutoAndAllMetalAuto()
  399. {
  400. if (_reservoirDevice.OperationMode != AUTO)
  401. {
  402. return false;
  403. }
  404. for (int i = 0; i < _metalDevices.Count; i++)
  405. {
  406. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  407. if (hotMetalDevice.OperationMode != AUTO)
  408. {
  409. return false;
  410. }
  411. }
  412. return true;
  413. }
  414. /// <summary>
  415. /// 所有Metal切换Flow
  416. /// </summary>
  417. /// <returns></returns>
  418. private bool AllMetalSwitchFlow()
  419. {
  420. for (int i = 0; i < _metalDevices.Count; i++)
  421. {
  422. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  423. if (hotMetalDevice != null && !hotMetalDevice.IsDisable && hotMetalDevice.IsAuto)
  424. {
  425. bool result = hotMetalDevice.SwitchToFlow("", null);
  426. if (!result)
  427. {
  428. return false;
  429. }
  430. }
  431. }
  432. return true;
  433. }
  434. /// <summary>
  435. /// 检验所有Metal Flow检验
  436. /// </summary>
  437. /// <returns></returns>
  438. private bool AllMetalCheckFlow()
  439. {
  440. for (int i = 0; i < _metalDevices.Count; i++)
  441. {
  442. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  443. if (hotMetalDevice != null && !hotMetalDevice.IsDisable && hotMetalDevice.IsAuto)
  444. {
  445. double cellFlow = hotMetalDevice.MetalDeviceData.CellFlow;
  446. if (cellFlow <= _recipe.CAFlowRateErrorLow)
  447. {
  448. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, $"cell {hotMetalDevice.Name} flow {cellFlow} is less than {_recipe.CAFlowRateErrorLow}");
  449. return false;
  450. }
  451. else if (cellFlow <= _recipe.CAFlowRateWarningLow)
  452. {
  453. LOG.WriteLog(eEvent.WARN_METAL, Module, $"cell {hotMetalDevice.Name} flow {cellFlow} is less than {_recipe.CAFlowRateWarningLow}");
  454. }
  455. }
  456. }
  457. return true;
  458. }
  459. /// <summary>
  460. /// 自动HED On
  461. /// </summary>
  462. /// <returns></returns>
  463. private bool AutoHedOn()
  464. {
  465. //double hedFlow = _reservoirDevice.ReservoirData.HedFlow;
  466. //bool result = hedFlow > _hedFlowLowLimit;
  467. //if (!result)
  468. //{
  469. // LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, $"HED Flow {hedFlow} is less than {_hedFlowLowLimit}");
  470. // return false;
  471. //}
  472. _autoHedDelay = _delay_2s;
  473. _temperatureController.EnableOperation("", null);
  474. _temperatureController.SetTargetTemperatureOperation("", new object[] { _recipe.TemperatureSetPoint });
  475. return true;
  476. }
  477. /// <summary>
  478. /// 检验Hed是否成功
  479. /// </summary>
  480. /// <returns></returns>
  481. private bool AutoHedSuccess()
  482. {
  483. if (_temperatureController.TemperatureData.ControlOperationModel == 0)
  484. {
  485. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "Temperature control is disable");
  486. return false;
  487. }
  488. if (Math.Abs(_recipe.TemperatureSetPoint - _temperatureController.TemperatureData.TargetTemperature) >= 0.1 * _recipe.TemperatureSetPoint)
  489. {
  490. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, $"recipe temperature {_recipe.TemperatureSetPoint} is not match temperature target point {_temperatureController.TemperatureData.TargetTemperature}");
  491. return false;
  492. }
  493. return true;
  494. }
  495. /// <summary>
  496. /// 检验Metal A/B PowerSupplier通信状态
  497. /// </summary>
  498. /// <returns></returns>
  499. private bool AutoMetalsPowerSupplierCommuncationStatus()
  500. {
  501. for (int i = 0; i < _metalDevices.Count; i++)
  502. {
  503. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  504. if (!hotMetalDevice.IsDisable && hotMetalDevice.IsAuto)
  505. {
  506. if (hotMetalDevice.SideAPowerSupplier == null)
  507. {
  508. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "Side A PowerSupplier is null");
  509. return false;
  510. }
  511. if (hotMetalDevice.SideBPowerSupplier == null)
  512. {
  513. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "Side B PowerSupplier is null");
  514. return false;
  515. }
  516. if (!hotMetalDevice.SideAPowerSupplier.IsConnected)
  517. {
  518. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, $"Side A PowerSupplier {hotMetalDevice.SideAPowerSupplier.Name} is not connected");
  519. return false;
  520. }
  521. if (!hotMetalDevice.SideBPowerSupplier.IsConnected)
  522. {
  523. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, $"Side B PowerSupplier {hotMetalDevice.SideBPowerSupplier.Name} is not connected");
  524. return false;
  525. }
  526. }
  527. }
  528. return true;
  529. }
  530. /// <summary>
  531. /// Auto Metal reset linmot
  532. /// </summary>
  533. /// <returns></returns>
  534. private bool AutoMetalResetLinmot()
  535. {
  536. for (int i = 0; i < _metalDevices.Count; i++)
  537. {
  538. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  539. if (hotMetalDevice.OperationMode == AUTO)
  540. {
  541. bool result = hotMetalDevice.ResetLinmot();
  542. if (!result)
  543. {
  544. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "Reset linmot error");
  545. return false;
  546. }
  547. }
  548. }
  549. return true;
  550. }
  551. /// <summary>
  552. /// Auto Metal reset linmot
  553. /// </summary>
  554. /// <returns></returns>
  555. private bool CheckAutoMetalResetStatus()
  556. {
  557. if (_reservoirDevice.OperationMode == MANUAL)
  558. {
  559. return true;
  560. }
  561. for (int i = 0; i < _metalDevices.Count; i++)
  562. {
  563. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  564. if (hotMetalDevice.OperationMode == AUTO)
  565. {
  566. bool result = hotMetalDevice.CheckLinmotRoutineEnd();
  567. if (!result)
  568. {
  569. return false;
  570. }
  571. }
  572. }
  573. return true;
  574. }
  575. /// <summary>
  576. /// Auto Metal reset linmot
  577. /// </summary>
  578. /// <returns></returns>
  579. private bool CheckAutoMetalResetStopStatus()
  580. {
  581. if (_reservoirDevice.OperationMode == MANUAL)
  582. {
  583. return false;
  584. }
  585. for (int i = 0; i < _metalDevices.Count; i++)
  586. {
  587. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  588. if (hotMetalDevice.OperationMode == AUTO)
  589. {
  590. bool result = hotMetalDevice.CheckLinmotRoutineError();
  591. if (result)
  592. {
  593. return true;
  594. }
  595. }
  596. }
  597. return false;
  598. }
  599. /// Metal WS Unclamp
  600. /// </summary>
  601. /// <returns></returns>
  602. private bool MetalsWHUnclampOn()
  603. {
  604. for (int i = 0; i < _metalDevices.Count; i++)
  605. {
  606. StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
  607. bool result = hotMetalDevice.WaferHolderClampOff("", null);
  608. if (!result)
  609. {
  610. return false;
  611. }
  612. }
  613. return true;
  614. }
  615. /// <summary>
  616. /// 清除alarm界面相关的dataerror
  617. /// </summary>
  618. private bool ClearAlarmDataError()
  619. {
  620. AlarmListManager.Instance.RemoveDataError(Module);
  621. _reservoirDevice.ClearErrorLogSet(Module); //清除device里面的ErrorLogSet
  622. return true;
  623. }
  624. /// <summary>
  625. /// 启动
  626. /// </summary>
  627. /// <param name="objs"></param>
  628. /// <returns></returns>
  629. public RState Start(params object[] objs)
  630. {
  631. List<MetalCellDevice> lstDevice = (List<MetalCellDevice>)objs[0];
  632. _metalDevices.Clear();
  633. for (int i = 0; i < lstDevice.Count; i++)
  634. {
  635. _metalDevices.Add((StandardHotMetalDevice)lstDevice[i]);
  636. }
  637. if (ReservoirItemManager.Instance.GetReservoirItem(Module.ToString()).PumpType == "Regulate")
  638. {
  639. _isRegulatePump = true;
  640. }
  641. _reservoirDevice = DEVICE.GetDevice<StandardHotReservoirDevice>(Module.ToString());
  642. _recipe = _reservoirDevice.Recipe;
  643. if (!(objs[1] is null))
  644. {
  645. _cellPowerSupplier = (CellPowerSupplier)objs[1];
  646. }
  647. _temperatureController = (TemperatureController)objs[2];
  648. _cellFlowLowLimit = SC.GetValue<double>($"Reservoir.{Module}.CellFlowLowLimit");
  649. if (!CheckPreCondition())
  650. {
  651. return RState.Failed;
  652. }
  653. if (ReservoirItemManager.Instance.GetReservoirItem(Module.ToString()).CMMType == "Standard")
  654. {
  655. _cmmFlowHighFault = SC.GetValue<double>($"Reservoir.{Module}.CMMFlowHighFault");
  656. _cmmFlowHighWarning = SC.GetValue<double>($"Reservoir.{Module}.CMMFlowHighWarning");
  657. _cmmFlowLowFault = SC.GetValue<double>($"Reservoir.{Module}.CMMFlowLowFault");
  658. _cmmFlowLowWarning = SC.GetValue<double>($"Reservoir.{Module}.CMMFlowLowWarning");
  659. _cmmFlowCheckDelay = SC.GetValue<int>($"Reservoir.{Module}.CMMFlowCheckDelaySeconds");
  660. }
  661. if (_recipe.CMMEnable)
  662. {
  663. _persistentValue = ReservoirsPersistentManager.Instance.GetReservoirsPersistentValue(Module);
  664. }
  665. _cellFlowFaultHoldOffTime = SC.GetValue<int>("Metal.CellFlowFaultHoldOffTime");
  666. return Runner.Start(Module, "Start Initialize");
  667. }
  668. /// <summary>
  669. /// 检验前置条件
  670. /// </summary>
  671. /// <returns></returns>
  672. private bool CheckPreCondition()
  673. {
  674. if (_recipe == null)
  675. {
  676. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "recipe is null");
  677. return false;
  678. }
  679. if (_recipe.CMMEnable && _cellPowerSupplier != null && !_cellPowerSupplier.IsConnected)
  680. {
  681. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "PowerSupplier is not connected");
  682. return false;
  683. }
  684. if (!_temperatureController.IsConnected)
  685. {
  686. LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "Temperature is not connected");
  687. return false;
  688. }
  689. return true;
  690. }
  691. }
  692. }