SRDRunRecipeRoutine.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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 = 10;
  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. _rotationProviderAxis = BeckhoffAxisProviderManager.Instance.GetAxisProvider($"{Module}.Rotation");
  154. if (_rotationProviderAxis == null)
  155. {
  156. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation Provider is not exist", 0);
  157. return RState.Failed;
  158. }
  159. if (!CheckPreCondition())
  160. {
  161. return RState.Failed;
  162. }
  163. return Runner.Start(Module, "SRD Run Recipe Start");
  164. }
  165. /// <summary>
  166. /// Check Pre Condition
  167. /// </summary>
  168. /// <returns></returns>
  169. private bool CheckPreCondition()
  170. {
  171. //Check Rotation Home
  172. //if (!_rotationAxis.IsHomed)
  173. //{
  174. // NotifyError(eEvent.ERR_SRD, "Rotation is not homed", 0);
  175. // return false;
  176. //}
  177. //Check LiftUp
  178. if (_srdCommon.CommonData.LiftUp)
  179. {
  180. NotifyError(eEvent.ERR_SRD, "LiftUp is on", 0);
  181. return false;
  182. }
  183. //Check LiftUp Status
  184. if (_srdCommon.CommonData.LiftUpStatus)
  185. {
  186. NotifyError(eEvent.ERR_SRD, "LiftUp sensor is on", 0);
  187. return false;
  188. }
  189. //Check Wafer Present
  190. if (!_srdCommon.CommonData.WaferPresent)
  191. {
  192. NotifyError(eEvent.ERR_SRD, "WaferPresent sensor is off", 0);
  193. return false;
  194. }
  195. //Check LoaderDI
  196. if (!_systemFacilities.LoaderDiEnable)
  197. {
  198. NotifyError(eEvent.ERR_SRD, "Load DI Is Disable", 0);
  199. return false;
  200. }
  201. //Check Vacuum
  202. int vacuumOnLimit = SC.GetValue<int>("SRD.ChuckVacuumOnLimit");
  203. if (!_srdCommon.CommonData.ChuckVacuum)
  204. {
  205. if (_srdCommon.CommonData.VacuumValue >= vacuumOnLimit)
  206. {
  207. LOG.WriteLog(eEvent.ERR_SRD, Module, $"VacuumValue:{_srdCommon.CommonData.VacuumValue}, VacuumOn Limit:{vacuumOnLimit}");
  208. return false;
  209. }
  210. }
  211. else
  212. {
  213. LOG.WriteLog(eEvent.ERR_SRD, Module, $"Chuck Vacuum is off");
  214. return false;
  215. }
  216. //Check Flippers
  217. if (_srdCommon.CommonData.FlippersIn150 || _srdCommon.CommonData.FlippersIn200) //|| _srdCommon.CommonData.FlippersIn100
  218. {
  219. NotifyError(eEvent.ERR_SRD, "FlippersIn is on", 0);
  220. return false;
  221. }
  222. if (!_srdCommon.CommonData.Flipper1Out150Status || !_srdCommon.CommonData.Flipper2Out150Status || !_srdCommon.CommonData.Flipper3Out150Status
  223. || !_srdCommon.CommonData.Flipper1Out200Status || !_srdCommon.CommonData.Flipper2Out200Status || !_srdCommon.CommonData.Flipper3Out200Status)
  224. //|| !_srdCommon.CommonData.Flipper1Out100Status || !_srdCommon.CommonData.Flipper2Out100Status || !_srdCommon.CommonData.Flipper3Out100Status
  225. {
  226. NotifyError(eEvent.ERR_SRD, "Flippers are at In position", 0);
  227. return false;
  228. }
  229. return true;
  230. }
  231. /// <summary>
  232. /// Close Door
  233. /// </summary>
  234. /// <param name="param"></param>
  235. /// <returns></returns>
  236. private bool CloseDoor()
  237. {
  238. if (_srdCommon.CommonData.DoorOpened)
  239. {
  240. bool result = _srdCommon.DoorCloseAction("", null);
  241. if (!result)
  242. {
  243. NotifyError(eEvent.ERR_SRD, "Door Close Action is failed", 0);
  244. return result;
  245. }
  246. }
  247. return true;
  248. }
  249. /// <summary>
  250. /// 检验DoorClosed结束状态
  251. /// </summary>
  252. /// <param name="param"></param>
  253. /// <returns></returns>
  254. private bool CheckDoorClosedEndStatus()
  255. {
  256. return _srdCommon.Status == RState.End && _srdCommon.CommonData.DoorClosed;
  257. }
  258. /// <summary>
  259. /// 检验DoorClosed结束状态
  260. /// </summary>
  261. /// <param name="param"></param>
  262. /// <returns></returns>
  263. private bool CheckDoorClosedStopStatus()
  264. {
  265. if (_srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout)
  266. {
  267. NotifyError(eEvent.ERR_SRD, "Check Door Closed is failed", 0);
  268. return true;
  269. }
  270. return false;
  271. }
  272. /// <summary>
  273. /// 检验另外一个SRD是否在用水
  274. /// </summary>
  275. /// <param name="param"></param>
  276. /// <returns></returns>
  277. private bool CheckOtherSRD()
  278. {
  279. return (_otherSrdEntity == null || !_otherSrdEntity.IsUsingWater);
  280. }
  281. /// <summary>
  282. /// CheckWaterPressure
  283. /// </summary>
  284. /// <returns></returns>
  285. private bool CheckWaterPressure()
  286. {
  287. if (_srdCommon.CommonData.WaterPressure < _srdRecipe.MinWaterPressure)
  288. {
  289. NotifyError(eEvent.ERR_SRD, $"Water Pressure {_srdCommon.CommonData.WaterPressure} is less than recipe's MinWaterPressure {_srdRecipe.MinWaterPressure}", 0);
  290. return false;
  291. }
  292. else if(_srdCommon.CommonData.WaterPressure > _srdRecipe.MaxWaterPressure)
  293. {
  294. NotifyError(eEvent.ERR_SRD, $"Water Pressure {_srdCommon.CommonData.WaterPressure} is over recipe's MaxWaterPressure {_srdRecipe.MaxWaterPressure}", 0);
  295. return false;
  296. }
  297. return true;
  298. }
  299. /// <summary>
  300. /// Water On
  301. /// </summary>
  302. /// <param name="param"></param>
  303. /// <returns></returns>
  304. private bool WaterOn()
  305. {
  306. if (_srdRecipe.RinseTime > 0)
  307. {
  308. if (!_srdCommon.CommonData.WaterOn)
  309. {
  310. bool result = _srdCommon.WaterOn();
  311. if (result)
  312. {
  313. LOG.WriteLog(eEvent.INFO_SRD, Module, "Water On");
  314. _isUsingWater = true;
  315. _enterTime = Environment.TickCount;
  316. }
  317. else
  318. {
  319. NotifyError(eEvent.ERR_SRD, "Water On is failed", 0);
  320. }
  321. return result;
  322. }
  323. return true;
  324. }
  325. return true;
  326. }
  327. /// <summary>
  328. /// Check Flow End
  329. /// </summary>
  330. /// <returns></returns>
  331. private bool CheckFlowEndStatus()
  332. {
  333. if (_srdRecipe.FlowCheckDelay == 0)
  334. {
  335. return true;
  336. }
  337. int ticks = Environment.TickCount - _enterTime;
  338. if (ticks >= _srdRecipe.FlowCheckDelay * 1000)
  339. {
  340. if (WaterFlowCheck()) return true;
  341. }
  342. return false;
  343. }
  344. /// <summary>
  345. /// Check Flow Stop
  346. /// </summary>
  347. /// <param name="param"></param>
  348. /// <returns></returns>
  349. private bool CheckFlowStopStatus()
  350. {
  351. int ticks = Environment.TickCount - _enterTime;
  352. if (ticks >= _srdRecipe.FlowCheckDelay * 1000)
  353. {
  354. if (!WaterFlowCheck()) return true;
  355. }
  356. return false;
  357. }
  358. /// <summary>
  359. /// WaterFlow检测
  360. /// </summary>
  361. /// <returns></returns>
  362. private bool WaterFlowCheck()
  363. {
  364. if (_srdCommon.CommonData.WaterFlow > _srdRecipe.MaxSRDWaterFlow)
  365. {
  366. NotifyError(eEvent.ERR_SRD, $"{Module} Water Flow:{_srdCommon.CommonData.WaterFlow} is over recipe's MaxSRDWaterFlow:{_srdRecipe.MaxSRDWaterFlow}", 0);
  367. return false;
  368. }
  369. else if (_srdCommon.CommonData.WaterFlow < _srdRecipe.MinSRDWaterFlow)
  370. {
  371. NotifyError(eEvent.ERR_SRD, $"{Module} Water Flow:{_srdCommon.CommonData.WaterFlow} is less than recipe's MinSRDWaterFlow:{_srdRecipe.MinSRDWaterFlow}", 0);
  372. return false;
  373. }
  374. return true;
  375. }
  376. /// <summary>
  377. /// 开始旋转
  378. /// </summary>
  379. /// <param name="param"></param>
  380. /// <returns></returns>
  381. private bool StartRotation()
  382. {
  383. if (_srdCommon.CommonData.DoorOpened)
  384. {
  385. NotifyError(eEvent.ERR_SRD, "Door is not closed. Can't do rotation", 0);
  386. return false;
  387. }
  388. double _scale = _rotationProviderAxis.ScaleFactor;
  389. //rinse 目标位置
  390. double rinsePosition = _srdRecipe.RinseTime * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.RinseSpeed);
  391. //dry目标位置
  392. double dryPosition = BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed) * _srdRecipe.DryTime;
  393. //为了让 rotation 不停止,增加了旋转时间(覆盖Arm运动时间)
  394. double plusPosition = BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed) * _rotationPlusSecond;
  395. int targetPosition = (int)Math.Round((rinsePosition + dryPosition + plusPosition) * _scale, 0);
  396. int rotationSpeed = (int)Math.Round(_scale * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.RinseSpeed), 0);
  397. _drySpeed = (int)Math.Round(_scale * BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_srdRecipe.DrySpeed * SPEED_RATIO), 0);
  398. bool result = _rotationAxis.ProfilePosition(targetPosition, rotationSpeed * SPEED_RATIO, 0, 0);
  399. if (!result)
  400. {
  401. NotifyError(eEvent.ERR_SRD, "Start Rotation is failed", 0);
  402. return false;
  403. }
  404. LOG.WriteLog(eEvent.INFO_SRD, Module, "Start Rotation");
  405. //Rinse开始时间
  406. _enterTime = Environment.TickCount;
  407. return true;
  408. }
  409. /// <summary>
  410. /// WaterFlow End Monitor
  411. /// </summary>
  412. /// <returns></returns>
  413. private bool MonitorWaterFlowEndStatus()
  414. {
  415. int ticks = Environment.TickCount - _enterTime;
  416. if (ticks >= _srdRecipe.RinseTime * 1000)
  417. {
  418. return true;
  419. }
  420. return false;
  421. }
  422. /// <summary>
  423. /// WaterFlow Stop Monitor
  424. /// </summary>
  425. /// <returns></returns>
  426. private bool MonitorWaterFlowStopStatus()
  427. {
  428. int ticks = Environment.TickCount - _enterTime;
  429. if (ticks < _srdRecipe.RinseTime * 1000)
  430. {
  431. if (!WaterFlowCheck()) return true;
  432. }
  433. return false;
  434. }
  435. /// <summary>
  436. /// Washing Finished
  437. /// </summary>
  438. /// <returns></returns>
  439. private bool WashingFinished()
  440. {
  441. if (_srdCommon.CommonData.WaterOn)
  442. {
  443. if (!_srdCommon.WaterOff())
  444. {
  445. NotifyError(eEvent.ERR_SRD, "Water Off is failed", 0);
  446. return false;
  447. }
  448. }
  449. _isUsingWater = false;
  450. return true;
  451. }
  452. /// <summary>
  453. /// change Dry speed
  454. /// </summary>
  455. /// <returns></returns>
  456. private bool ChangeSpeed()
  457. {
  458. //调整速度为 drySpeed
  459. bool result = _rotationAxis.ChangeSpeed(_drySpeed);
  460. if (!result)
  461. {
  462. NotifyError(eEvent.ERR_SRD, "Change Speed to Dry Speed is failed", 0);
  463. return false;
  464. }
  465. return true;
  466. }
  467. /// <summary>
  468. /// 停止旋转
  469. /// </summary>
  470. /// <returns></returns>
  471. private bool StopRotation()
  472. {
  473. bool result = _rotationAxis.StopPositionOperation();
  474. LOG.WriteLog(eEvent.INFO_SRD, Module, "Stop Rotation is done");
  475. return result;
  476. }
  477. /// <summary>
  478. /// 检验Rotation是否停止
  479. /// </summary>
  480. /// <returns></returns>
  481. private bool CheckRotationStopEndStatus()
  482. {
  483. if (!_rotationAxis.IsRun && _rotationAxis.Status == RState.End)
  484. {
  485. bool homeResult = _rotationAxis.Home(false);
  486. if (!homeResult)
  487. {
  488. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation home action is failed", 0);
  489. return false;
  490. }
  491. return true;
  492. }
  493. return false;
  494. }
  495. /// <summary>
  496. /// 检验RotationHome是否完成
  497. /// </summary>
  498. /// <returns></returns>
  499. private bool CheckRotationHomeEndStatus()
  500. {
  501. if (_rotationAxis.IsHomed && _rotationAxis.Status == RState.End)
  502. {
  503. return true;
  504. }
  505. return false;
  506. }
  507. /// <summary>
  508. /// 检验Rotation Home 停止状态
  509. /// </summary>
  510. /// <returns></returns>
  511. private bool CheckRotationHomedStopStatus()
  512. {
  513. if(_rotationAxis.Status == RState.Failed || _rotationAxis.Status == RState.Timeout)
  514. {
  515. NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation home is failed", 0);
  516. return true;
  517. }
  518. return false;
  519. }
  520. }
  521. }