SRDRunRecipeRoutine.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  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_5s)
  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 (_srdCommon.CommonData.WaterPressure < _srdRecipe.MinWaterPressure)
  294. {
  295. NotifyError(eEvent.ERR_SRD, $"Water Pressure {_srdCommon.CommonData.WaterPressure} is less than recipe's MinWaterPressure {_srdRecipe.MinWaterPressure}", 0);
  296. return false;
  297. }
  298. else if(_srdCommon.CommonData.WaterPressure > _srdRecipe.MaxWaterPressure)
  299. {
  300. NotifyError(eEvent.ERR_SRD, $"Water Pressure {_srdCommon.CommonData.WaterPressure} is over recipe's MaxWaterPressure {_srdRecipe.MaxWaterPressure}", 0);
  301. return false;
  302. }
  303. return true;
  304. }
  305. /// <summary>
  306. /// Water On
  307. /// </summary>
  308. /// <param name="param"></param>
  309. /// <returns></returns>
  310. private bool WaterOn()
  311. {
  312. if (_srdRecipe.RinseTime > 0)
  313. {
  314. if (!_srdCommon.CommonData.WaterOn)
  315. {
  316. bool result = _srdCommon.WaterOn();
  317. if (result)
  318. {
  319. LOG.WriteLog(eEvent.INFO_SRD, Module, "Water On");
  320. _isUsingWater = true;
  321. _enterTime = Environment.TickCount;
  322. }
  323. else
  324. {
  325. NotifyError(eEvent.ERR_SRD, "Water On is failed", 0);
  326. }
  327. return result;
  328. }
  329. return true;
  330. }
  331. return true;
  332. }
  333. /// <summary>
  334. /// Check Flow End
  335. /// </summary>
  336. /// <returns></returns>
  337. private bool CheckFlowEndStatus()
  338. {
  339. if (_srdRecipe.FlowCheckDelay == 0)
  340. {
  341. return true;
  342. }
  343. int ticks = Environment.TickCount - _enterTime;
  344. if (ticks >= _srdRecipe.FlowCheckDelay * 1000)
  345. {
  346. if (WaterFlowCheck()) return true;
  347. }
  348. return false;
  349. }
  350. /// <summary>
  351. /// Check Flow Stop
  352. /// </summary>
  353. /// <param name="param"></param>
  354. /// <returns></returns>
  355. private bool CheckFlowStopStatus()
  356. {
  357. int ticks = Environment.TickCount - _enterTime;
  358. if (ticks >= _srdRecipe.FlowCheckDelay * 1000)
  359. {
  360. if (!WaterFlowCheck()) return true;
  361. }
  362. return false;
  363. }
  364. /// <summary>
  365. /// WaterFlow检测
  366. /// </summary>
  367. /// <returns></returns>
  368. private bool WaterFlowCheck()
  369. {
  370. if (_srdCommon.CommonData.WaterFlow > _srdRecipe.MaxSRDWaterFlow)
  371. {
  372. NotifyError(eEvent.ERR_SRD, $"{Module} Water Flow:{_srdCommon.CommonData.WaterFlow} is over recipe's MaxSRDWaterFlow:{_srdRecipe.MaxSRDWaterFlow}", 0);
  373. return false;
  374. }
  375. else if (_srdCommon.CommonData.WaterFlow < _srdRecipe.MinSRDWaterFlow)
  376. {
  377. NotifyError(eEvent.ERR_SRD, $"{Module} Water Flow:{_srdCommon.CommonData.WaterFlow} is less than recipe's MinSRDWaterFlow:{_srdRecipe.MinSRDWaterFlow}", 0);
  378. return false;
  379. }
  380. return true;
  381. }
  382. /// <summary>
  383. /// 开始旋转
  384. /// </summary>
  385. /// <param name="param"></param>
  386. /// <returns></returns>
  387. private bool StartRotation()
  388. {
  389. if (!_srdCommon.RotationInterLock())
  390. {
  391. return false;
  392. }
  393. double _scale = _rotationProviderAxis.ScaleFactor;
  394. //rinse 目标位置
  395. double rinsePosition = _srdRecipe.RinseTime * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.RinseSpeed);
  396. //dry目标位置
  397. double dryPosition = BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed) * _srdRecipe.DryTime;
  398. //为了让 rotation 不停止,增加了旋转时间(覆盖Arm运动时间)
  399. double plusPosition = BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed) * _rotationPlusSecond;
  400. int targetPosition = (int)Math.Round((rinsePosition + dryPosition + plusPosition) * _scale, 0);
  401. int rotationSpeed = (int)Math.Round(_scale * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.RinseSpeed), 0);
  402. _drySpeed = (int)Math.Round(_scale * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed * SPEED_RATIO), 0);
  403. bool result = _rotationAxis.ProfilePosition(targetPosition, rotationSpeed * SPEED_RATIO, 0, 0);
  404. if (!result)
  405. {
  406. NotifyError(eEvent.ERR_SRD, "Start Rotation is failed", 0);
  407. return false;
  408. }
  409. LOG.WriteLog(eEvent.INFO_SRD, Module, "Start Rotation");
  410. //Rinse开始时间
  411. _enterTime = Environment.TickCount;
  412. return true;
  413. }
  414. /// <summary>
  415. /// WaterFlow End Monitor
  416. /// </summary>
  417. /// <returns></returns>
  418. private bool MonitorWaterFlowEndStatus()
  419. {
  420. int ticks = Environment.TickCount - _enterTime;
  421. if (ticks >= _srdRecipe.RinseTime * 1000)
  422. {
  423. return true;
  424. }
  425. return false;
  426. }
  427. /// <summary>
  428. /// WaterFlow Stop Monitor
  429. /// </summary>
  430. /// <returns></returns>
  431. private bool MonitorWaterFlowStopStatus()
  432. {
  433. int ticks = Environment.TickCount - _enterTime;
  434. if (ticks < _srdRecipe.RinseTime * 1000)
  435. {
  436. if (!WaterFlowCheck()) return true;
  437. }
  438. return false;
  439. }
  440. /// <summary>
  441. /// Washing Finished
  442. /// </summary>
  443. /// <returns></returns>
  444. private bool WashingFinished()
  445. {
  446. if (_srdCommon.CommonData.WaterOn)
  447. {
  448. if (!_srdCommon.WaterOff())
  449. {
  450. NotifyError(eEvent.ERR_SRD, "Water Off is failed", 0);
  451. return false;
  452. }
  453. }
  454. _isUsingWater = false;
  455. return true;
  456. }
  457. /// <summary>
  458. /// change Dry speed
  459. /// </summary>
  460. /// <returns></returns>
  461. private bool ChangeSpeed()
  462. {
  463. //调整速度为 drySpeed
  464. bool result = _rotationAxis.WriteSpeed(_drySpeed);
  465. if (!result)
  466. {
  467. NotifyError(eEvent.ERR_SRD, "Change Speed to Dry Speed is failed", 0);
  468. return false;
  469. }
  470. return true;
  471. }
  472. /// <summary>
  473. /// 停止旋转
  474. /// </summary>
  475. /// <returns></returns>
  476. private bool StopRotation()
  477. {
  478. bool result = _rotationAxis.StopPositionOperation();
  479. LOG.WriteLog(eEvent.INFO_SRD, Module, "Stop Rotation is done");
  480. return result;
  481. }
  482. /// <summary>
  483. /// 检验Rotation是否停止
  484. /// </summary>
  485. /// <returns></returns>
  486. private bool CheckRotationStopEndStatus()
  487. {
  488. if (!_rotationAxis.IsRun && _rotationAxis.Status == RState.End)
  489. {
  490. bool homeResult = _rotationAxis.Home(false);
  491. if (!homeResult)
  492. {
  493. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation home action is failed", 0);
  494. return false;
  495. }
  496. return true;
  497. }
  498. return false;
  499. }
  500. /// <summary>
  501. /// 检验RotationHome是否完成
  502. /// </summary>
  503. /// <returns></returns>
  504. private bool CheckRotationHomeEndStatus()
  505. {
  506. if (_rotationAxis.IsHomed && _rotationAxis.Status == RState.End)
  507. {
  508. return true;
  509. }
  510. return false;
  511. }
  512. /// <summary>
  513. /// 检验Rotation Home 停止状态
  514. /// </summary>
  515. /// <returns></returns>
  516. private bool CheckRotationHomedStopStatus()
  517. {
  518. if(_rotationAxis.Status == RState.Failed || _rotationAxis.Status == RState.Timeout)
  519. {
  520. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation home is failed", 0);
  521. return true;
  522. }
  523. return false;
  524. }
  525. }
  526. }