SRDRunRecipeRoutine.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  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 Aitex.Core.Util;
  6. using CyberX8_Core;
  7. using CyberX8_RT.Devices.AXIS;
  8. using CyberX8_RT.Devices.Facilities;
  9. using CyberX8_RT.Devices.SRD;
  10. using MECF.Framework.Common.Beckhoff.AxisProvider;
  11. using MECF.Framework.Common.RecipeCenter;
  12. using MECF.Framework.Common.Routine;
  13. using MECF.Framework.Common.Utilities;
  14. using System;
  15. namespace CyberX8_RT.Modules.SRD
  16. {
  17. public class SRDRunRecipeRoutine : RoutineBase, IRoutine
  18. {
  19. private enum SRDRunRecipeStep
  20. {
  21. RunRecipe_CloseDoor,
  22. RunRecipe_CheckOtherSRD,
  23. RunRecipe_CheckWaterPressure,
  24. RunRecipe_WaterOn,
  25. RunRecipe_CheckWaterFlow,
  26. RunRecipe_StartRotation,
  27. RunRecipe_MonitorWaterFlow,
  28. RunRecipe_WashingFinished,
  29. RunRecipe_ChangeDrySpeed,
  30. RunRecipe_Drying,
  31. RunRecipe_StopRotation,
  32. RunRecipe_CheckRotationStopped,
  33. RunRecipe_CheckRotationHomed,
  34. End
  35. }
  36. #region 常量
  37. /// <summary>
  38. /// 旋转增加时长
  39. /// </summary>
  40. private const int ROTATION_PLUS_TIME = 10;
  41. /// <summary>
  42. /// ROTATION电机转速比例
  43. /// </summary>
  44. private const int SPEED_RATIO = 1;
  45. #endregion
  46. #region 内部变量
  47. /// <summary>
  48. /// Rotation Axis
  49. /// </summary>
  50. private JetAxisBase _rotationAxis;
  51. /// <summary>
  52. /// SRD Common
  53. /// </summary>
  54. private SrdCommonDevice _srdCommon;
  55. /// <summary>
  56. /// Total SRD
  57. /// </summary>
  58. private TotalSRDDevice _totalSRDDevice;
  59. /// <summary>
  60. /// 另外SRD实例
  61. /// </summary>
  62. private SRDEntity _otherSrdEntity;
  63. /// <summary>
  64. /// Loader Common
  65. /// </summary>
  66. private SystemFacilities _systemFacilities;
  67. /// <summary>
  68. /// 是否正在用水
  69. /// </summary>
  70. private bool _isUsingWater;
  71. /// <summary>
  72. /// Recipe
  73. /// </summary>
  74. private SrdRecipe _srdRecipe;
  75. /// <summary>
  76. /// SRD rotation Provider对象
  77. /// </summary>
  78. private BeckhoffProviderAxis _rotationProviderAxis;
  79. /// <summary>
  80. /// enterTime
  81. /// </summary>
  82. private int _enterTime;
  83. /// <summary>
  84. /// 转换增加的时间
  85. /// </summary>
  86. private int _rotationPlusSecond = ROTATION_PLUS_TIME;
  87. /// <summary>
  88. /// Dry速度
  89. /// </summary>
  90. private int _drySpeed;
  91. #endregion
  92. #region 属性
  93. /// <summary>
  94. /// 是否正在用水
  95. /// </summary>
  96. public bool IsUsingWater { get { return _isUsingWater; } }
  97. #endregion
  98. /// <summary>
  99. /// 构造函数
  100. /// </summary>
  101. /// <param name="module"></param>
  102. public SRDRunRecipeRoutine(string module) : base(module)
  103. {
  104. }
  105. /// <summary>
  106. /// 中止
  107. /// </summary>
  108. public void Abort()
  109. {
  110. Runner.Stop("SRD Run Recipe Abort");
  111. }
  112. /// <summary>
  113. /// 监控
  114. /// </summary>
  115. /// <returns></returns>
  116. public RState Monitor()
  117. {
  118. Runner.Run(SRDRunRecipeStep.RunRecipe_CloseDoor, CloseDoor, CheckDoorClosedEndStatus, CheckDoorClosedStopStatus)
  119. .Wait(SRDRunRecipeStep.RunRecipe_CheckOtherSRD, CheckOtherSRD, _delay_60s)
  120. .Run(SRDRunRecipeStep.RunRecipe_CheckWaterPressure, CheckWaterPressure, _delay_1ms)
  121. .Run(SRDRunRecipeStep.RunRecipe_WaterOn, WaterOn, _delay_1ms)
  122. .WaitWithStopCondition(SRDRunRecipeStep.RunRecipe_CheckWaterFlow, CheckFlowEndStatus, CheckFlowStopStatus)
  123. .Run(SRDRunRecipeStep.RunRecipe_StartRotation, StartRotation, _delay_1ms)
  124. .WaitWithStopCondition(SRDRunRecipeStep.RunRecipe_MonitorWaterFlow, MonitorWaterFlowEndStatus, MonitorWaterFlowStopStatus)
  125. .Run(SRDRunRecipeStep.RunRecipe_WashingFinished, WashingFinished, _delay_1ms)
  126. .Run(SRDRunRecipeStep.RunRecipe_ChangeDrySpeed, ChangeSpeed, _delay_1ms)
  127. .Delay(SRDRunRecipeStep.RunRecipe_Drying, _srdRecipe.DryTime * 1000)
  128. .Run(SRDRunRecipeStep.RunRecipe_StopRotation, StopRotation, _delay_1ms)
  129. .Wait(SRDRunRecipeStep.RunRecipe_CheckRotationStopped, CheckRotationStopEndStatus, _delay_10s)
  130. .WaitWithStopCondition(SRDRunRecipeStep.RunRecipe_CheckRotationHomed, CheckRotationHomeEndStatus, CheckRotationHomedStopStatus)
  131. .End(SRDRunRecipeStep.End, NullFun, _delay_1ms);
  132. return Runner.Status;
  133. }
  134. /// <summary>
  135. /// 启动
  136. /// </summary>
  137. /// <param name="objs"></param>
  138. /// <returns></returns>
  139. public RState Start(params object[] objs)
  140. {
  141. _srdRecipe = (SrdRecipe)objs[0];
  142. if (_srdRecipe == null)
  143. {
  144. NotifyError(eEvent.ERR_SRD, "srd recipe is null", 0);
  145. return RState.Failed;
  146. }
  147. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  148. _srdCommon = DEVICE.GetDevice<SrdCommonDevice>($"{Module}.Common");
  149. _totalSRDDevice = DEVICE.GetDevice<TotalSRDDevice>("SRD");
  150. _systemFacilities = DEVICE.GetDevice<SystemFacilities>("System.Facilities");
  151. string otherSRD = Module == "SRD1" ? "SRD2" : "SRD1";
  152. _otherSrdEntity = Singleton<RouteManager>.Instance.GetModule<SRDEntity>(otherSRD);
  153. SRDEntity srdEntity = Singleton<RouteManager>.Instance.GetModule<SRDEntity>(Module);
  154. if (srdEntity.IsManual && !srdEntity.IsLoaded)
  155. {
  156. NotifyError(eEvent.ERR_SRD, $"{Module} is not Loaded, can't run recipe", 0);
  157. return RState.Failed;
  158. }
  159. _rotationProviderAxis = BeckhoffAxisProviderManager.Instance.GetAxisProvider($"{Module}.Rotation");
  160. if (_rotationProviderAxis == null)
  161. {
  162. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation Provider is not exist", 0);
  163. return RState.Failed;
  164. }
  165. if (!CheckPreCondition())
  166. {
  167. return RState.Failed;
  168. }
  169. return Runner.Start(Module, "SRD Run Recipe Start");
  170. }
  171. /// <summary>
  172. /// Check Pre Condition
  173. /// </summary>
  174. /// <returns></returns>
  175. private bool CheckPreCondition()
  176. {
  177. //Check Rotation Home
  178. if (!_rotationAxis.IsHomed)
  179. {
  180. NotifyError(eEvent.ERR_SRD, "Rotation is not homed", 0);
  181. return false;
  182. }
  183. //Check LiftUp
  184. if (_srdCommon.CommonData.LiftUp)
  185. {
  186. NotifyError(eEvent.ERR_SRD, "LiftUp is on", 0);
  187. return false;
  188. }
  189. //Check LiftUp Status
  190. if (_srdCommon.CommonData.LiftUpStatus)
  191. {
  192. NotifyError(eEvent.ERR_SRD, "LiftUp sensor is on", 0);
  193. return false;
  194. }
  195. //Check Wafer Present
  196. if (!_srdCommon.CommonData.WaferPresent)
  197. {
  198. NotifyError(eEvent.ERR_SRD, "WaferPresent sensor is off", 0);
  199. return false;
  200. }
  201. //Check LoaderDI
  202. if (!_systemFacilities.LoaderDiEnable)
  203. {
  204. NotifyError(eEvent.ERR_SRD, "Load DI Is Disable", 0);
  205. return false;
  206. }
  207. //Check Vacuum
  208. int vacuumOnLimit = SC.GetValue<int>("SRD.ChuckVacuumOnLimit");
  209. if (!_srdCommon.CommonData.ChuckVacuum)
  210. {
  211. if (_srdCommon.CommonData.VacuumValue >= vacuumOnLimit)
  212. {
  213. LOG.WriteLog(eEvent.ERR_SRD, Module, $"VacuumValue:{_srdCommon.CommonData.VacuumValue}, VacuumOn Limit:{vacuumOnLimit}");
  214. return false;
  215. }
  216. }
  217. else
  218. {
  219. LOG.WriteLog(eEvent.ERR_SRD, Module, $"Chuck Vacuum is off");
  220. return false;
  221. }
  222. //Check Flippers
  223. if (_srdCommon.CommonData.FlippersIn150 || _srdCommon.CommonData.FlippersIn200) //|| _srdCommon.CommonData.FlippersIn100
  224. {
  225. NotifyError(eEvent.ERR_SRD, "FlippersIn is on", 0);
  226. return false;
  227. }
  228. if (!_srdCommon.CommonData.Flipper1Out150Status || !_srdCommon.CommonData.Flipper2Out150Status || !_srdCommon.CommonData.Flipper3Out150Status
  229. || !_srdCommon.CommonData.Flipper1Out200Status || !_srdCommon.CommonData.Flipper2Out200Status || !_srdCommon.CommonData.Flipper3Out200Status)
  230. //|| !_srdCommon.CommonData.Flipper1Out100Status || !_srdCommon.CommonData.Flipper2Out100Status || !_srdCommon.CommonData.Flipper3Out100Status
  231. {
  232. NotifyError(eEvent.ERR_SRD, "Flippers are at In position", 0);
  233. return false;
  234. }
  235. return true;
  236. }
  237. /// <summary>
  238. /// Close Door
  239. /// </summary>
  240. /// <param name="param"></param>
  241. /// <returns></returns>
  242. private bool CloseDoor()
  243. {
  244. if (_srdCommon.CommonData.DoorOpened)
  245. {
  246. bool result = _srdCommon.DoorCloseAction("", null);
  247. if (!result)
  248. {
  249. NotifyError(eEvent.ERR_SRD, "Door Close Action is failed", 0);
  250. return result;
  251. }
  252. }
  253. return true;
  254. }
  255. /// <summary>
  256. /// 检验DoorClosed结束状态
  257. /// </summary>
  258. /// <param name="param"></param>
  259. /// <returns></returns>
  260. private bool CheckDoorClosedEndStatus()
  261. {
  262. return _srdCommon.Status == RState.End && _srdCommon.CommonData.DoorClosed;
  263. }
  264. /// <summary>
  265. /// 检验DoorClosed结束状态
  266. /// </summary>
  267. /// <param name="param"></param>
  268. /// <returns></returns>
  269. private bool CheckDoorClosedStopStatus()
  270. {
  271. if (_srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout)
  272. {
  273. NotifyError(eEvent.ERR_SRD, "Check Door Closed is failed", 0);
  274. return true;
  275. }
  276. return false;
  277. }
  278. /// <summary>
  279. /// 检验另外一个SRD是否在用水
  280. /// </summary>
  281. /// <param name="param"></param>
  282. /// <returns></returns>
  283. private bool CheckOtherSRD()
  284. {
  285. return (_otherSrdEntity == null || !_otherSrdEntity.IsUsingWater);
  286. }
  287. /// <summary>
  288. /// CheckWaterPressure
  289. /// </summary>
  290. /// <returns></returns>
  291. private bool CheckWaterPressure()
  292. {
  293. if (_srdRecipe.MinWaterPressure == 0 && _srdRecipe.MaxWaterPressure == 0) return true;
  294. if (_srdCommon.CommonData.WaterPressure < _srdRecipe.MinWaterPressure)
  295. {
  296. NotifyError(eEvent.ERR_SRD, $"Water Pressure {_srdCommon.CommonData.WaterPressure} is less than recipe's MinWaterPressure {_srdRecipe.MinWaterPressure}", 0);
  297. return false;
  298. }
  299. else if(_srdCommon.CommonData.WaterPressure > _srdRecipe.MaxWaterPressure)
  300. {
  301. NotifyError(eEvent.ERR_SRD, $"Water Pressure {_srdCommon.CommonData.WaterPressure} is over recipe's MaxWaterPressure {_srdRecipe.MaxWaterPressure}", 0);
  302. return false;
  303. }
  304. return true;
  305. }
  306. /// <summary>
  307. /// Water On
  308. /// </summary>
  309. /// <param name="param"></param>
  310. /// <returns></returns>
  311. private bool WaterOn()
  312. {
  313. if (_srdRecipe.RinseTime > 0)
  314. {
  315. if (!_srdCommon.CommonData.WaterOn)
  316. {
  317. bool result = _srdCommon.WaterOn();
  318. if (result)
  319. {
  320. LOG.WriteLog(eEvent.INFO_SRD, Module, "Water On");
  321. _isUsingWater = true;
  322. _enterTime = Environment.TickCount;
  323. }
  324. else
  325. {
  326. NotifyError(eEvent.ERR_SRD, "Water On is failed", 0);
  327. }
  328. return result;
  329. }
  330. return true;
  331. }
  332. return true;
  333. }
  334. /// <summary>
  335. /// Check Flow End
  336. /// </summary>
  337. /// <returns></returns>
  338. private bool CheckFlowEndStatus()
  339. {
  340. if (_srdRecipe.FlowCheckDelay == 0)
  341. {
  342. return true;
  343. }
  344. int ticks = Environment.TickCount - _enterTime;
  345. if (ticks >= _srdRecipe.FlowCheckDelay * 1000)
  346. {
  347. if (WaterFlowCheck()) return true;
  348. }
  349. return false;
  350. }
  351. /// <summary>
  352. /// Check Flow Stop
  353. /// </summary>
  354. /// <param name="param"></param>
  355. /// <returns></returns>
  356. private bool CheckFlowStopStatus()
  357. {
  358. int ticks = Environment.TickCount - _enterTime;
  359. if (ticks >= _srdRecipe.FlowCheckDelay * 1000)
  360. {
  361. if (!WaterFlowCheck()) return true;
  362. }
  363. return false;
  364. }
  365. /// <summary>
  366. /// WaterFlow检测
  367. /// </summary>
  368. /// <returns></returns>
  369. private bool WaterFlowCheck()
  370. {
  371. if (_srdRecipe.MaxSRDWaterFlow == 0 && _srdRecipe.MinSRDWaterFlow == 0) return true;
  372. if (_srdCommon.CommonData.WaterFlow > _srdRecipe.MaxSRDWaterFlow)
  373. {
  374. NotifyError(eEvent.ERR_SRD, $"{Module} Water Flow:{_srdCommon.CommonData.WaterFlow} is over recipe's MaxSRDWaterFlow:{_srdRecipe.MaxSRDWaterFlow}", 0);
  375. return false;
  376. }
  377. else if (_srdCommon.CommonData.WaterFlow < _srdRecipe.MinSRDWaterFlow)
  378. {
  379. NotifyError(eEvent.ERR_SRD, $"{Module} Water Flow:{_srdCommon.CommonData.WaterFlow} is less than recipe's MinSRDWaterFlow:{_srdRecipe.MinSRDWaterFlow}", 0);
  380. return false;
  381. }
  382. return true;
  383. }
  384. /// <summary>
  385. /// 开始旋转
  386. /// </summary>
  387. /// <param name="param"></param>
  388. /// <returns></returns>
  389. private bool StartRotation()
  390. {
  391. if (!_srdCommon.RotationInterLock())
  392. {
  393. return false;
  394. }
  395. double _scale = _rotationProviderAxis.ScaleFactor;
  396. //rinse 目标位置
  397. double rinsePosition = _srdRecipe.RinseTime * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.RinseSpeed);
  398. //dry目标位置
  399. double dryPosition = BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed) * _srdRecipe.DryTime;
  400. //为了让 rotation 不停止,增加了旋转时间(覆盖Arm运动时间)
  401. double plusPosition = BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed) * _rotationPlusSecond;
  402. int targetPosition = (int)Math.Round((rinsePosition + dryPosition + plusPosition) * _scale, 0);
  403. int rotationSpeed = (int)Math.Round(_scale * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.RinseSpeed), 0);
  404. _drySpeed = (int)Math.Round(_scale * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed * SPEED_RATIO), 0);
  405. bool result = _rotationAxis.ProfilePosition(targetPosition, rotationSpeed * SPEED_RATIO, 0, 0);
  406. if (!result)
  407. {
  408. NotifyError(eEvent.ERR_SRD, "Start Rotation is failed", 0);
  409. return false;
  410. }
  411. LOG.WriteLog(eEvent.INFO_SRD, Module, "Start Rotation");
  412. //Rinse开始时间
  413. _enterTime = Environment.TickCount;
  414. return true;
  415. }
  416. /// <summary>
  417. /// WaterFlow End Monitor
  418. /// </summary>
  419. /// <returns></returns>
  420. private bool MonitorWaterFlowEndStatus()
  421. {
  422. int ticks = Environment.TickCount - _enterTime;
  423. if (ticks >= _srdRecipe.RinseTime * 1000)
  424. {
  425. return true;
  426. }
  427. return false;
  428. }
  429. /// <summary>
  430. /// WaterFlow Stop Monitor
  431. /// </summary>
  432. /// <returns></returns>
  433. private bool MonitorWaterFlowStopStatus()
  434. {
  435. int ticks = Environment.TickCount - _enterTime;
  436. if (ticks < _srdRecipe.RinseTime * 1000)
  437. {
  438. if (!WaterFlowCheck()) return true;
  439. }
  440. return false;
  441. }
  442. /// <summary>
  443. /// Washing Finished
  444. /// </summary>
  445. /// <returns></returns>
  446. private bool WashingFinished()
  447. {
  448. if (_srdCommon.CommonData.WaterOn)
  449. {
  450. if (!_srdCommon.WaterOff())
  451. {
  452. NotifyError(eEvent.ERR_SRD, "Water Off is failed", 0);
  453. return false;
  454. }
  455. }
  456. _isUsingWater = false;
  457. return true;
  458. }
  459. /// <summary>
  460. /// change Dry speed
  461. /// </summary>
  462. /// <returns></returns>
  463. private bool ChangeSpeed()
  464. {
  465. //调整速度为 drySpeed
  466. bool result = _rotationAxis.WriteSpeed(_drySpeed);
  467. if (!result)
  468. {
  469. NotifyError(eEvent.ERR_SRD, "Change Speed to Dry Speed is failed", 0);
  470. return false;
  471. }
  472. return true;
  473. }
  474. /// <summary>
  475. /// 停止旋转
  476. /// </summary>
  477. /// <returns></returns>
  478. private bool StopRotation()
  479. {
  480. bool result = _rotationAxis.StopPositionOperation();
  481. LOG.WriteLog(eEvent.INFO_SRD, Module, "Stop Rotation is done");
  482. return result;
  483. }
  484. /// <summary>
  485. /// 检验Rotation是否停止
  486. /// </summary>
  487. /// <returns></returns>
  488. private bool CheckRotationStopEndStatus()
  489. {
  490. if (!_rotationAxis.IsRun && _rotationAxis.Status == RState.End)
  491. {
  492. bool homeResult = _rotationAxis.Home();
  493. if (!homeResult)
  494. {
  495. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation home action is failed", 0);
  496. return false;
  497. }
  498. return true;
  499. }
  500. return false;
  501. }
  502. /// <summary>
  503. /// 检验RotationHome是否完成
  504. /// </summary>
  505. /// <returns></returns>
  506. private bool CheckRotationHomeEndStatus()
  507. {
  508. if (_rotationAxis.IsHomed && _rotationAxis.Status == RState.End)
  509. {
  510. return true;
  511. }
  512. return false;
  513. }
  514. /// <summary>
  515. /// 检验Rotation Home 停止状态
  516. /// </summary>
  517. /// <returns></returns>
  518. private bool CheckRotationHomedStopStatus()
  519. {
  520. if(_rotationAxis.Status == RState.Failed || _rotationAxis.Status == RState.Timeout)
  521. {
  522. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation home is failed", 0);
  523. return true;
  524. }
  525. return false;
  526. }
  527. }
  528. }