ProcessTransporterGantryAxisInterLock.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. using Aitex.Core.RT.Log;
  2. using Aitex.Core.RT.OperationCenter;
  3. using Aitex.Core.RT.SCCore;
  4. using MECF.Framework.Common.Beckhoff.Station;
  5. using MECF.Framework.Common.Equipment;
  6. using MECF.Framework.Common.Layout;
  7. using CyberX8_Core;
  8. using CyberX8_RT.Devices.AXIS;
  9. using System;
  10. using MECF.Framework.Common.ToolLayout;
  11. using Aitex.Core.RT.Device;
  12. using Aitex.Core.Util;
  13. using CyberX8_RT.Modules.Transporter;
  14. using CyberX8_RT.Modules;
  15. using System.Windows;
  16. namespace CyberX8_RT.Devices.TransPorter
  17. {
  18. public class ProcessTransporterGantryAxisInterLock : IAxisInterLock
  19. {
  20. #region 内部变量
  21. private JetAxisBase _axis;
  22. #endregion
  23. #region 属性
  24. /// <summary>
  25. /// 模块名称
  26. /// </summary>
  27. public string Module { get { return _axis.Module; } }
  28. /// <summary>
  29. /// 子模块名称
  30. /// </summary>
  31. public string Name { get { return _axis.Name; } }
  32. #endregion
  33. /// <summary>
  34. /// 构造函数
  35. /// </summary>
  36. /// <param name="Module"></param>
  37. /// <param name="name"></param>
  38. public ProcessTransporterGantryAxisInterLock(JetAxisBase axis)
  39. {
  40. _axis = axis;
  41. OP.Subscribe($"{Module}.{Name}.{MotionOperation.SaveWithModifyLayout}", SaveWithModifyLayoutOperation);
  42. }
  43. /// <summary>
  44. /// GotoPosition条件检验
  45. /// </summary>
  46. /// <param name="station"></param>
  47. /// <returns></returns>
  48. public bool CheckGotoPosition(string station)
  49. {
  50. if (!AxisManager.Instance.CheckModuleAxisSwitchOn(Module, Name))
  51. {
  52. return false;
  53. }
  54. //ProcessTransporter Home
  55. if (ModuleHelper.IsInstalled(ModuleName.Transporter1))
  56. {
  57. TransporterEntity processTransporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(ModuleName.Transporter1.ToString());
  58. if (processTransporterEntity == null)
  59. {
  60. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter1.ToString()} entity is null");
  61. return false;
  62. }
  63. if (!processTransporterEntity.IsHomed)
  64. {
  65. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter1.ToString()} is not home, Cannot execute GotoSavedPosition");
  66. return false;
  67. }
  68. }
  69. //LoaderTransporter Home
  70. if (ModuleHelper.IsInstalled(ModuleName.Transporter2))
  71. {
  72. TransporterEntity loaderTransporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(ModuleName.Transporter2.ToString());
  73. if (loaderTransporterEntity == null)
  74. {
  75. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter2.ToString()} entity is null");
  76. return false;
  77. }
  78. if (!loaderTransporterEntity.IsHomed)
  79. {
  80. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter2.ToString()} is not home, Cannot execute GotoSavedPosition");
  81. return false;
  82. }
  83. }
  84. //ProcessTransporter Elevator is not run
  85. JetAxisBase elevatorAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Elevator");
  86. if (elevatorAxis == null)
  87. {
  88. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Elevator Axis is null");
  89. return false;
  90. }
  91. if (elevatorAxis.Status == CyberX8_Core.RState.Running)
  92. {
  93. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Elevator Axis is Run");
  94. return false;
  95. }
  96. //ProcessTransporter Elevator 在UP位
  97. double elevatorPosition = elevatorAxis.MotionData.MotorPosition;
  98. if (!elevatorAxis.CheckPositionIsInStation(elevatorPosition, "UP"))
  99. {
  100. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Elevator {elevatorPosition} is not in UP");
  101. return false;
  102. }
  103. return true;
  104. }
  105. /// <summary>
  106. /// 保存操作
  107. /// </summary>
  108. /// <param name="cmd"></param>
  109. /// <param name="args"></param>
  110. /// <returns></returns>
  111. private bool SaveWithModifyLayoutOperation(string cmd, object[] args)
  112. {
  113. string str = $"{Module}.{Name}.{args[0]}";
  114. bool result = _axis.SaveOperation(cmd, new object[] { str, args[1] });
  115. if (result)
  116. {
  117. string cellId = args[0].ToString();
  118. string cellName = CellItemManager.Instance.GetModuleNameByCellId(cellId);
  119. if (!string.IsNullOrEmpty(cellName))
  120. {
  121. ProcessLayoutCellItem item = ProcessLayoutManager.Instance.GetProcessLayoutCellItemByName(cellId);
  122. if (item == null)
  123. {
  124. return true;
  125. }
  126. int transporterLayoutHorizontalDistance = SC.GetValue<int>("Transporter.TransporterLayoutHorizontalDistance");
  127. int loaderPosition = SC.GetValue<int>("Transporter.TransporterLayoutLoaderPosition");
  128. int biasDistanceBetweenLoaderAndProcess = SC.GetValue<int>("Transporter.BiasDistanceBetweenLoaderAndProcess");
  129. BeckhoffStationAxis loaderTransporterAxis = BeckhoffStationLocationManager.Instance.GetStationAxis(ModuleName.Transporter2.ToString(), "Gantry");
  130. BeckhoffStationAxis processTransporterAxis = BeckhoffStationLocationManager.Instance.GetStationAxis(ModuleName.Transporter1.ToString(), "Gantry");
  131. var calculateResult = CalculateTransporterHorizontal(loaderTransporterAxis, processTransporterAxis);
  132. double distance = calculateResult.max - biasDistanceBetweenLoaderAndProcess - calculateResult.min;
  133. double _ratio = distance / transporterLayoutHorizontalDistance;
  134. int cellPosition = (int)Math.Round((loaderPosition + (_axis.MotionData.MotorPosition - calculateResult.min) / _ratio), 0);
  135. item.Left = cellPosition;
  136. if (item.Type == "Cell")
  137. {
  138. item.Left -= (item.Width / 2 - 5);
  139. }
  140. try
  141. {
  142. ProcessLayoutManager.Instance.SaveProcessLayout();
  143. }
  144. catch (Exception ex)
  145. {
  146. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"Save Layout exception {ex.Message}");
  147. }
  148. }
  149. return true;
  150. }
  151. else
  152. {
  153. return false;
  154. }
  155. }
  156. /// <summary>
  157. /// 计算Tansporter水平最大值最小值
  158. /// </summary>
  159. /// <param name="loaderTransporterAxis"></param>
  160. /// <param name="processTransporterAxis"></param>
  161. /// <returns></returns>
  162. private (double max, double min) CalculateTransporterHorizontal(BeckhoffStationAxis loaderTransporterAxis, BeckhoffStationAxis processTransporterAxis)
  163. {
  164. double max = 0;
  165. double min = 0;
  166. foreach (Station item in loaderTransporterAxis.Stations)
  167. {
  168. double position = double.Parse(item.Position);
  169. if (position > max)
  170. {
  171. max = position;
  172. }
  173. if (position < min)
  174. {
  175. min = position;
  176. }
  177. }
  178. foreach (Station item in processTransporterAxis.Stations)
  179. {
  180. double position = double.Parse(item.Position);
  181. if (position > max)
  182. {
  183. max = position;
  184. }
  185. if (position < min)
  186. {
  187. min = position;
  188. }
  189. }
  190. return (max, min);
  191. }
  192. }
  193. }