LoaderTransPorterGantryAxisInterLock.cs 8.4 KB

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