JetAxisBase.cs 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539
  1. using Aitex.Core.RT.DataCenter;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.Event;
  4. using Aitex.Core.RT.Log;
  5. using Aitex.Core.RT.OperationCenter;
  6. using Aitex.Core.RT.Routine;
  7. using Aitex.Core.RT.SCCore;
  8. using Aitex.Core.Util;
  9. using MECF.Framework.Common.Beckhoff.AxisProvider;
  10. using MECF.Framework.Common.Beckhoff.IOAxis;
  11. using MECF.Framework.Common.Beckhoff.Station;
  12. using MECF.Framework.Common.CommonData.PUF;
  13. using MECF.Framework.Common.TwinCat;
  14. using MECF.Framework.Common.Utilities;
  15. using CyberX8_Core;
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Linq;
  19. using System.Reflection;
  20. using System.Text;
  21. using System.Threading;
  22. using System.Threading.Tasks;
  23. using System.Timers;
  24. using CommunityToolkit.HighPerformance.Buffers;
  25. using System.Windows.Documents;
  26. using MECF.Framework.Common.Device.Galil;
  27. namespace CyberX8_RT.Devices.AXIS
  28. {
  29. public abstract class JetAxisBase : BaseDevice, IDevice
  30. {
  31. #region 常量
  32. private const string STATUS_WORD = "StatusWord";
  33. private const string DIGITAL_INPUTS="DigitalInputs";
  34. private const string CONTROL_WORD = "ControlWord";
  35. private const string MODE_OF_OPERATION = "ModeOfOperation";
  36. protected const string PROFILE_VELOCITY = "ProfileVelocity";
  37. protected const string PROFILE_ACCEL = "ProfileAccel";
  38. protected const string PROFILE_DECEL = "ProfileDecel";
  39. private const string TARGET_POSITION = "TargetPosition";
  40. private const string MOTOR_POSITION = "MotorPosition";
  41. private const string ACTUAL_VELOCITY = "ActualVelocity";
  42. private const string ACTUAL_TORQUE = "ActualTorque";
  43. private const string POSITION_ERROR = "PositionError";
  44. private const string MOTION_DATA = "MotionData";
  45. private const string CURRENT_STATION = "CurrentStation";
  46. protected const string CURRENT_STATION_LIST = "CurrentStationList";
  47. private const string IS_SWITCH_ON = "IsSwitchOn";
  48. private const string HOME_OFFSET = "HomeOffset";
  49. private const string HOMING_METHOD = "HomingMethod";
  50. protected const string HOMING_VELOCITY = "HomingVelocity";
  51. protected const string HOMING_VELOCITY_SLOW = "HomingVelocitySlow";
  52. protected const string HOMING_ACCEL = "HomingAccel";
  53. private const string NEGATIVE_TORQUE_LIMIT="NegativeTorqueLimit";
  54. private const string POSITIVE_TORQUE_LIMIT = "PositiveTorqueLimit";
  55. private const string MANUF_STATUS="ManufStatus";
  56. private const string SOFTWARE_LIMIT_MINUS= "SoftwareLimitMinus";
  57. private const string SOFTWARE_LIMIT_PLUS = "SoftwareLimitPlus";
  58. private const string STOP_CODE = "StopCode";
  59. #endregion
  60. #region 内部变量
  61. /// <summary>
  62. /// 比例因子
  63. /// </summary>
  64. private double _scaleFactor = 0;
  65. /// <summary>
  66. /// jog限制
  67. /// </summary>
  68. private double _jogLimit = 0;
  69. /// <summary>
  70. /// 当前位置数值(用于判定是否正在运动)
  71. /// </summary>
  72. private int _currentLocation = 0;
  73. /// <summary>
  74. /// 是否运动
  75. /// </summary>
  76. private bool _isRun = false;
  77. /// <summary>
  78. /// 当前位置
  79. /// </summary>
  80. private string _currentStation = "";
  81. /// <summary>
  82. /// 当前位置集合(多个位置共用一个数值)
  83. /// </summary>
  84. private List<string> _currentStationList = new List<string>();
  85. /// <summary>
  86. /// 当前位置锁
  87. /// </summary>
  88. private object _locationLocker = new object();
  89. /// <summary>
  90. /// 工位位置对象
  91. /// </summary>
  92. private BeckhoffStationAxis _stationAxis;
  93. /// <summary>
  94. /// 运动时间
  95. /// </summary>
  96. private DateTime _runTime = DateTime.Now;
  97. /// <summary>
  98. /// 尺寸
  99. /// </summary>
  100. private int _waferSize = 0;
  101. /// <summary>
  102. /// inter lock
  103. /// </summary>
  104. private IAxisInterLock _interLock;
  105. /// <summary>
  106. /// 是否存在Rev Sensor Limit
  107. /// </summary>
  108. private bool _isRevSensorLimit = false;
  109. /// <summary>
  110. /// 是否存在Forward Limit
  111. /// </summary>
  112. private bool _isForwardSensorLimit = false;
  113. /// <summary>
  114. /// Home Switched是否触发
  115. /// </summary>
  116. private bool _isHomeSwitchedTrigger = false;
  117. /// <summary>
  118. /// 变量是否初始化字典
  119. /// </summary>
  120. private Dictionary<string, bool> _variableInitializeDic = new Dictionary<string, bool>();
  121. #endregion
  122. #region protected 字段
  123. /// <summary>
  124. /// 轴参数对象
  125. /// </summary>
  126. protected GalilAxisConfig _galilAxisConfig = null;
  127. /// <summary>
  128. /// 状态
  129. /// </summary>
  130. protected RState _status;
  131. /// <summary>
  132. /// 当前操作
  133. /// </summary>
  134. protected MotionOperation _currentOperation = MotionOperation.None;
  135. /// <summary>
  136. /// 模式
  137. /// </summary>
  138. protected byte _modeOfOperation;
  139. /// <summary>
  140. /// 状态字
  141. /// </summary>
  142. protected ushort _statusWord;
  143. /// <summary>
  144. /// 控制字
  145. /// </summary>
  146. protected ushort _controlWord;
  147. /// <summary>
  148. /// 运动数据对象
  149. /// </summary>
  150. protected CommandMotionData _commandMotionData = new CommandMotionData();
  151. /// <summary>
  152. /// Home状态
  153. /// </summary>
  154. protected bool _isHomed;
  155. /// <summary>
  156. /// SwitchOn状态
  157. /// </summary>
  158. protected bool _isSwitchOn;
  159. /// <summary>
  160. /// 是否错误
  161. /// </summary>
  162. protected bool _isError;
  163. /// <summary>
  164. /// 是否到达目标位置
  165. /// </summary>
  166. protected bool _inTargetPosition = false;
  167. /// <summary>
  168. /// 初始化的速度
  169. /// </summary>
  170. protected int _initialVelocity = 0;
  171. /// <summary>
  172. /// 初始化的加速度
  173. /// </summary>
  174. protected int _initialAcceleration = 0;
  175. /// <summary>
  176. /// 初始化的减速度
  177. /// </summary>
  178. protected int _initialDeceleration = 0;
  179. /// <summary>
  180. /// 运动速度
  181. /// </summary>
  182. protected int _profileVelocity = 0;
  183. /// <summary>
  184. /// 运动加速度
  185. /// </summary>
  186. protected int _profileAcceleration = 0;
  187. /// <summary>
  188. /// 运动减速度
  189. /// </summary>
  190. protected int _profileDeceleration = 0;
  191. /// <summary>
  192. /// 负向Torque限制
  193. /// </summary>
  194. protected int _profileNegativeTorqueLimit = 0;
  195. /// <summary>
  196. /// 正向Torque限制
  197. /// </summary>
  198. protected int _profilePositiveTorqueLimit = 0;
  199. /// <summary>
  200. /// Homing 速度
  201. /// </summary>
  202. protected int _profileHomingVelocity = 0;
  203. /// <summary>
  204. /// Homing 速度Slow
  205. /// </summary>
  206. protected int _profileHomingVelocitySlow = 0;
  207. /// <summary>
  208. /// Homing加速度
  209. /// </summary>
  210. protected int _profileHomingAccel = 0;
  211. /// <summary>
  212. /// <summary>
  213. /// 目标位置
  214. /// </summary>
  215. protected double _targetPosition = 0.0;
  216. /// <summary>
  217. /// home超时时长
  218. /// </summary>
  219. protected int _homeTimeout = 5000;
  220. /// <summary>
  221. /// coe输出变量集合
  222. /// </summary>
  223. protected List<string> _coeOutputs = new List<string>();
  224. /// <summary>
  225. /// 速度比例
  226. /// </summary>
  227. protected int _speedRatio = 1;
  228. /// <summary>
  229. /// 加速度的比例
  230. /// </summary>
  231. protected int _accelerationRatio = 1;
  232. /// <summary>
  233. /// torque比例
  234. /// </summary>
  235. protected int _torqueRatio = 1000;
  236. /// <summary>
  237. /// Motion Position比例
  238. /// </summary>
  239. protected double _motionPositionRation = 1;
  240. #endregion
  241. #region 属性
  242. /// <summary>
  243. /// 状态
  244. /// </summary>
  245. public RState Status { get { return _status; } }
  246. /// <summary>
  247. /// Home状态
  248. /// </summary>
  249. public bool IsHomed { get { return _isHomed; } set { _isHomed = value; } }
  250. /// <summary>
  251. /// SwitchOn状态
  252. /// </summary>
  253. public bool IsSwitchOn { get { return _isSwitchOn; } }
  254. /// <summary>
  255. /// 模式
  256. /// </summary>
  257. public byte ModeOfOperation { get { return _modeOfOperation; } }
  258. /// <summary>
  259. /// 控制字
  260. /// </summary>
  261. public ushort ControlWord { get { return _controlWord; } }
  262. /// <summary>
  263. /// 是否运动中
  264. /// </summary>
  265. public bool IsRun { get { return _isRun; } }
  266. /// <summary>
  267. /// 当前位置
  268. /// </summary>
  269. public string CurrentStation { get { return _currentStation; } }
  270. /// <summary>
  271. /// 是否到达目标位置
  272. /// </summary>
  273. public bool InTargetPosition { get { return _inTargetPosition; } }
  274. /// <summary>
  275. /// 运动数据对象
  276. /// </summary>
  277. public CommandMotionData MotionData { get { return _commandMotionData; } }
  278. /// <summary>
  279. /// 负向Torque限制数值
  280. /// </summary>
  281. public int NegativeTorqueLimit { get { return _profileNegativeTorqueLimit; } }
  282. /// <summary>
  283. /// 正向Torque限制数值
  284. /// </summary>
  285. public int PositiveTorqueLimit { get { return _profilePositiveTorqueLimit; } }
  286. /// <summary>
  287. /// 是否错误
  288. /// </summary>
  289. public bool IsError { get { return _isError; } }
  290. /// <summary>
  291. /// 目标位置
  292. /// </summary>
  293. public double TargetPosition { get { return _targetPosition; } }
  294. /// <summary>
  295. /// 加速度
  296. /// </summary>
  297. public double ProfileAcceleration { get { return _profileAcceleration; } }
  298. /// <summary>
  299. /// 减速度
  300. /// </summary>
  301. public double ProfileDeceleration { get { return _profileDeceleration; } }
  302. /// <summary>
  303. /// inter lock接口对象
  304. /// </summary>
  305. public IAxisInterLock InterLock { set { _interLock= value; } }
  306. /// <summary>
  307. /// 是否存在Sensor Limit
  308. /// </summary>
  309. public bool IsRevSensorLimit { set { _isRevSensorLimit = value; } }
  310. /// <summary>
  311. /// 是否存在正向Sensor Limit
  312. /// </summary>
  313. public bool IsForwardSensorLimit { set { _isForwardSensorLimit = value; } }
  314. /// <summary>
  315. /// Home Switch是否触发
  316. /// </summary>
  317. public bool IsHomeSwitchedTriggered { get { return _isHomeSwitchedTrigger; } set { _isHomeSwitchedTrigger = value; } }
  318. /// <summary>
  319. /// 所有io变量是否初始化
  320. /// </summary>
  321. public bool IOInitialized { get { return AllIoVariableInitialized(); } }
  322. /// <summary>
  323. /// WaferSize
  324. /// </summary>
  325. public int WaferSize { get { return _waferSize; } set { _waferSize = value; } }
  326. #endregion
  327. /// <summary>
  328. /// 构造函数
  329. /// </summary>
  330. /// <param name="moduleName"></param>
  331. /// <param name="name"></param>
  332. public JetAxisBase(string moduleName,string name) : base(moduleName, name,name,name)
  333. {
  334. InitializeParameter();
  335. LoadStation();
  336. InitializeRoutine();
  337. SubscribeData();
  338. InitializeOperation();
  339. }
  340. #region private方法
  341. /// <summary>
  342. /// 加载Station位置
  343. /// </summary>
  344. private void LoadStation()
  345. {
  346. _waferSize = SC.GetValue<int>("System.WaferSize");
  347. _stationAxis = BeckhoffStationLocationManager.Instance.GetStationAxis(Module, Name, _waferSize);
  348. }
  349. /// <summary>
  350. /// 订阅数据
  351. /// </summary>
  352. private void SubscribeData()
  353. {
  354. BeckhoffProviderAxis beckhoffProviderAxis = BeckhoffAxisProviderManager.Instance.GetAxisProvider($"{Module}.{Name}");
  355. if (beckhoffProviderAxis != null)
  356. {
  357. _scaleFactor = beckhoffProviderAxis.ScaleFactor;
  358. _jogLimit = beckhoffProviderAxis.JogLimit;
  359. _motionPositionRation = beckhoffProviderAxis.MotorPositionRate;
  360. }
  361. _galilAxisConfig = GalilControllerCfgManager.Instance.GetGalilAxisConfig(Module.ToString(),Name);
  362. if (_galilAxisConfig != null)
  363. {
  364. _profileVelocity =CalculateMultiplySpeedRatio(_galilAxisConfig.Speed);
  365. _initialVelocity = _profileVelocity;
  366. _profileAcceleration = CalculateDivideAccelerationRatio(_galilAxisConfig.Acceleration);
  367. _initialAcceleration = _profileAcceleration;
  368. _profileDeceleration = CalculateDivideAccelerationRatio(_galilAxisConfig.Deceleration);
  369. _initialDeceleration = _profileDeceleration;
  370. _profileNegativeTorqueLimit = _galilAxisConfig.NegativeTorqueLimit;
  371. _profilePositiveTorqueLimit = _galilAxisConfig.PositiveTorqueLimit;
  372. _commandMotionData.FileAcceleration = CalculateValueAfterScale(_galilAxisConfig.Acceleration);
  373. _commandMotionData.FileDeceleration = CalculateValueAfterScale(_galilAxisConfig.Deceleration);
  374. _commandMotionData.HomeOffset = CalculateValueAfterScale(_galilAxisConfig.HomingOffset);
  375. _commandMotionData.FileHomingAccel = CalculateValueAfterScale(_galilAxisConfig.HomingAcceleration);
  376. _commandMotionData.FileHomingVelocitySlow = CalculateValueAfterScale(_galilAxisConfig.HomingSpeed);
  377. _commandMotionData.FileHomingVelocity = CalculateValueAfterScale(_galilAxisConfig.HomingSpeed);
  378. _commandMotionData.FileProfileVelocity = CalculateValueAfterScale(_galilAxisConfig.Speed);
  379. _commandMotionData.FwdSoftLimit = CalculateValueAfterScale(_galilAxisConfig.ForwardSoftwareLimit)-_commandMotionData.HomeOffset;
  380. _commandMotionData.RevSoftLimit = CalculateValueAfterScale(_galilAxisConfig.ReverseSoftwareLimit)-_commandMotionData.HomeOffset;
  381. _commandMotionData.NegativeTorqueLimit = _galilAxisConfig.NegativeTorqueLimit;
  382. _commandMotionData.PositiveTorqueLimit = _galilAxisConfig.PositiveTorqueLimit;
  383. if (_galilAxisConfig.NegativeTorqueLimit != 0 || _galilAxisConfig.PositiveTorqueLimit != 0)
  384. {
  385. _commandMotionData.TorqueLimit = $"-{_galilAxisConfig.NegativeTorqueLimit}/+{_galilAxisConfig.PositiveTorqueLimit}";
  386. }
  387. if(_galilAxisConfig.HomingTimeOut!=0)
  388. {
  389. _homeTimeout = _galilAxisConfig.HomingTimeOut;
  390. }
  391. }
  392. DATA.Subscribe($"{Module}.{Name}.{MOTION_DATA}", () => _commandMotionData,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  393. DATA.Subscribe($"{Module}.{Name}.{MOTOR_POSITION}", () => _commandMotionData.MotorPosition,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  394. DATA.Subscribe($"{Module}.{Name}.ProfileVelocity", () => _commandMotionData.ProfileVelocity, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  395. DATA.Subscribe($"{Module}.{Name}.Acceleration",()=>_commandMotionData.FileAcceleration,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  396. DATA.Subscribe($"{Module}.{Name}.Deceleration",()=>_commandMotionData.FileDeceleration,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  397. DATA.Subscribe($"{Module}.{Name}.ActualTorque",()=>_commandMotionData.ActualTorque,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  398. DATA.Subscribe($"{Module}.{Name}.{CURRENT_STATION}", () => _currentStation,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  399. DATA.Subscribe($"{Module}.{Name}.{CURRENT_STATION_LIST}", () => _currentStationList, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  400. DATA.Subscribe($"{Module}.{Name}.{IS_SWITCH_ON}", () => IsSwitchOn, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  401. DATA.Subscribe($"{Module}.{Name}.IsHomed", () => IsHomed, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  402. DATA.Subscribe($"{Module}.{Name}.IsError",()=>IsError, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  403. DATA.Subscribe($"{Module}.{Name}.IsMoving", () => _isRun, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  404. DATA.Subscribe($"{Module}.{Name}.IsRun", () => _isRun, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  405. }
  406. /// <summary>
  407. /// 初始化操作
  408. /// </summary>
  409. private void InitializeOperation()
  410. {
  411. OP.Subscribe($"{Module}.{Name}.{MotionOperation.SwitchOn}", (cmd, args) => { SwitchOn(); return true; });
  412. OP.Subscribe($"{Module}.{Name}.{MotionOperation.SwitchOff}", (cmd, args) => { SwitchOff(); return true; });
  413. OP.Subscribe($"{Module}.{Name}.{MotionOperation.Home}", (cmd, args) => { Home(); return true; });
  414. OP.Subscribe($"{Module}.{Name}.JogUp", JogUpPosition);
  415. OP.Subscribe($"{Module}.{Name}.JogDown", JogDownPosition);
  416. OP.Subscribe($"{Module}.{Name}.{MotionOperation.KeyDown}", KeyDownOperation);
  417. OP.Subscribe($"{Module}.{Name}.{MotionOperation.Stop}",(cmd,args)=> { return StopPositionOperation(); });
  418. OP.Subscribe($"{Module}.{Name}.{MotionOperation.Save}", SaveOperation);
  419. OP.Subscribe($"{Module}.{Name}.GotoSavedPosition", (cmd, args) => {
  420. return PositionStation(args[1].ToString()); });
  421. }
  422. /// <summary>
  423. /// 保存操作
  424. /// </summary>
  425. /// <param name="cmd"></param>
  426. /// <param name="args"></param>
  427. /// <returns></returns>
  428. public bool SaveOperation(string cmd, object[] args)
  429. {
  430. if (args.Length >= 2)
  431. {
  432. string key = args[0].ToString();
  433. double paramValue = double.Parse(args[1].ToString());
  434. BeckhoffStationLocationManager.Instance.SaveMotionPosition(key, paramValue);
  435. lock (_locationLocker)
  436. {
  437. List<string> lst = new List<string>();
  438. foreach (Station item in _stationAxis.Stations)
  439. {
  440. if (item.Name == key)
  441. {
  442. item.Position = paramValue.ToString();
  443. _currentStation = item.Name;
  444. if (!lst.Contains(item.Name))
  445. {
  446. lst.Add(item.Name);
  447. }
  448. }
  449. }
  450. _currentStationList.Clear();
  451. if (lst.Count != 0)
  452. {
  453. _currentStationList.AddRange(lst);
  454. }
  455. }
  456. LOG.WriteLog(eEvent.INFO_AXIS, $"{Module}.{Name}", "save success");
  457. }
  458. return true;
  459. }
  460. /// <summary>
  461. /// 计算所处当前工位
  462. /// </summary>
  463. private void CalculateCurrentStation(double motor)
  464. {
  465. lock (_locationLocker)
  466. {
  467. List<string> tmp = _currentStationList.ToList();
  468. List<string> lst = new List<string>();
  469. foreach (Station station in _stationAxis.Stations)
  470. {
  471. if (double.TryParse(station.Position, out double value))
  472. {
  473. if (Math.Round(Math.Abs(motor - value),2) <= _stationAxis.ToleranceDefault)
  474. {
  475. _currentStation = station.Name;
  476. if (!lst.Contains(station.Name))
  477. {
  478. lst.Add(station.Name);
  479. }
  480. }
  481. }
  482. }
  483. _currentStationList.Clear();
  484. if (lst.Count != 0)
  485. {
  486. string str = string.Join(",", tmp);
  487. _currentStationList.AddRange(lst);
  488. string strLst = string.Join(",", _currentStationList);
  489. if (str != strLst)
  490. {
  491. LOG.WriteLog(eEvent.INFO_AXIS, $"{Module}.{Name}", $"position {motor} current {strLst}");
  492. }
  493. }
  494. else
  495. {
  496. _currentStation = "";
  497. }
  498. if (tmp.Count != 0&&_currentStationList.Count==0)
  499. {
  500. LOG.WriteLog(eEvent.INFO_AXIS, $"{Module}.{Name}", $"position {motor} current is empty");
  501. }
  502. }
  503. }
  504. /// <summary>
  505. /// 文本框回车操作
  506. /// </summary>
  507. /// <param name="cmd"></param>
  508. /// <param name="args"></param>
  509. /// <returns></returns>
  510. private bool KeyDownOperation(string cmd, object[] args)
  511. {
  512. if (args.Length < 2)
  513. {
  514. return false;
  515. }
  516. if (double.TryParse(args[1].ToString(), out double value))
  517. {
  518. AxisKeyDown(args[0].ToString(), value);
  519. }
  520. else
  521. {
  522. EV.PostWarningLog($"{Module}.{Name}", eEvent.ERR_AXIS, $"{args[0]} value {args[1]}is not int value");
  523. }
  524. return true;
  525. }
  526. /// <summary>
  527. /// 是否所有IO变量初始化完成
  528. /// </summary>
  529. /// <returns></returns>
  530. private bool AllIoVariableInitialized()
  531. {
  532. foreach (string item in _variableInitializeDic.Keys)
  533. {
  534. if (!_variableInitializeDic[item])
  535. {
  536. LOG.WriteLog(eEvent.ERR_DRYER, Module, $"{item} is not initialized");
  537. return false;
  538. }
  539. }
  540. return true;
  541. }
  542. /// <summary>
  543. /// 更新运动数据
  544. /// </summary>
  545. /// <param name="variable"></param>
  546. /// <param name="value"></param>
  547. private void UpdateMotionData(string variable, object value)
  548. {
  549. if(!MotionData.IsDataInitialized)
  550. {
  551. MotionData.IsDataInitialized = true;
  552. }
  553. PropertyInfo property = MotionData.GetType().GetProperty(variable);
  554. if (property != null)
  555. {
  556. if (JudgeIsScale(variable))
  557. {
  558. if (int.TryParse(value.ToString(), out int intValue))
  559. {
  560. if (JudgeSpeedRatio(variable))
  561. {
  562. property.SetValue(MotionData, CalculateValueAfterScale(CalculateDivideSpeedRatio(intValue)));
  563. }
  564. else if(JudgeAccelerationRation(variable))
  565. {
  566. property.SetValue(MotionData, CalculateValueAfterScale(CalculateMultiplyAccelerationRatio(intValue)));
  567. }
  568. else
  569. {
  570. if (variable == MOTOR_POSITION)
  571. {
  572. intValue = (int)Math.Round(intValue * _motionPositionRation,0);
  573. }
  574. property.SetValue(MotionData, CalculateValueAfterScale(intValue));
  575. }
  576. }
  577. else
  578. {
  579. property.SetValue(MotionData, value);
  580. }
  581. }
  582. else if(variable==ACTUAL_TORQUE)
  583. {
  584. if (short.TryParse(value.ToString(), out short shortValue))
  585. {
  586. property.SetValue(MotionData, CalculateDivideTorqueRatio(shortValue));
  587. }
  588. else
  589. {
  590. property.SetValue(MotionData, value);
  591. }
  592. }
  593. else
  594. {
  595. property.SetValue(MotionData, value);
  596. }
  597. }
  598. if (variable == IS_SWITCH_ON)
  599. {
  600. _isSwitchOn = MotionData.IsSwitchOn;
  601. }
  602. }
  603. /// <summary>
  604. /// 判定是否需要比例计算
  605. /// </summary>
  606. /// <param name="variable"></param>
  607. /// <returns></returns>
  608. private bool JudgeIsScale(string variable)
  609. {
  610. switch (variable)
  611. {
  612. case PROFILE_VELOCITY:
  613. case PROFILE_ACCEL:
  614. case PROFILE_DECEL:
  615. case MOTOR_POSITION:
  616. case POSITION_ERROR:
  617. case ACTUAL_VELOCITY:
  618. case TARGET_POSITION:
  619. case HOMING_ACCEL:
  620. case HOMING_VELOCITY:
  621. case HOMING_VELOCITY_SLOW:
  622. case HOME_OFFSET:
  623. return true;
  624. default:
  625. return false;
  626. }
  627. }
  628. /// <summary>
  629. /// 判定是否需要速度调整比例
  630. /// </summary>
  631. /// <param name="variable"></param>
  632. /// <returns></returns>
  633. private bool JudgeSpeedRatio(string variable)
  634. {
  635. switch (variable)
  636. {
  637. case PROFILE_VELOCITY:
  638. case ACTUAL_VELOCITY:
  639. case HOMING_VELOCITY:
  640. case HOMING_VELOCITY_SLOW:
  641. case HOME_OFFSET:
  642. return true;
  643. default:
  644. return false;
  645. }
  646. }
  647. /// <summary>
  648. /// 是否是加速度调整比例
  649. /// </summary>
  650. /// <param name="variable"></param>
  651. /// <returns></returns>
  652. protected bool JudgeAccelerationRation(string variable)
  653. {
  654. switch(variable)
  655. {
  656. case PROFILE_ACCEL:
  657. case PROFILE_DECEL:
  658. case HOMING_ACCEL:
  659. return true;
  660. default:
  661. return false;
  662. }
  663. }
  664. /// <summary>
  665. /// motor position发生变化
  666. /// </summary>
  667. /// <param name="location"></param>
  668. private void MotionPositionChanged(int location)
  669. {
  670. if(Math.Round(Math.Abs(location - _currentLocation)/_scaleFactor, 2)>0)
  671. //if (Math.Abs(location - _currentLocation)/_scaleFactor >= _stationAxis.ToleranceDefault)
  672. {
  673. _currentLocation = location;
  674. _runTime = DateTime.Now;
  675. _isRun = true;
  676. }
  677. }
  678. /// <summary>
  679. /// 更新Digital Inputs
  680. /// </summary>
  681. /// <param name="digitalInputs"></param>
  682. private void UpdateDigitalInputs(uint digitalInputs)
  683. {
  684. if (_isRevSensorLimit)
  685. {
  686. MotionData.RevLimited = !(((digitalInputs>>18) & 0x01) == 0x01);
  687. }
  688. if(_isForwardSensorLimit)
  689. {
  690. MotionData.FwdLimited = !(((digitalInputs >> 17) & 0x01) == 0x01);
  691. }
  692. MotionData.HomedSwitched =((digitalInputs>>22)&0x01) == 0x01;
  693. if(!_isHomeSwitchedTrigger&&MotionData.HomedSwitched)
  694. {
  695. _isHomeSwitchedTrigger = true;
  696. }
  697. }
  698. /// <summary>
  699. /// 更新ManufactureStatus
  700. /// </summary>
  701. /// <param name="manufactureStatus"></param>
  702. private void UpdateManufactureStatus(uint manufactureStatus)
  703. {
  704. MotionData.HomedSwitched = ((manufactureStatus >> 26)&0x01) == 0x01;
  705. if (!_isHomeSwitchedTrigger && MotionData.HomedSwitched)
  706. {
  707. _isHomeSwitchedTrigger = true;
  708. }
  709. }
  710. /// <summary>
  711. /// 更新Torque Limited状态
  712. /// </summary>
  713. private void UpdateTorqueLimited()
  714. {
  715. if(MotionData.NegativeTorqueLimit!=0||MotionData.PositiveTorqueLimit!=0)
  716. {
  717. MotionData.TorqueLimited = (MotionData.ActualTorque >= -MotionData.NegativeTorqueLimit) && (MotionData.ActualTorque <= MotionData.PositiveTorqueLimit) ;
  718. }
  719. else
  720. {
  721. MotionData.TorqueLimited = true;
  722. }
  723. }
  724. /// <summary>
  725. /// 根据位置获取相应的Position数值
  726. /// </summary>
  727. /// <param name="station"></param>
  728. /// <returns></returns>
  729. public (bool success,double position) GetPositionByStation(string station)
  730. {
  731. foreach(Station item in _stationAxis.Stations)
  732. {
  733. if(item.Name.ToLower().EndsWith(station.ToLower()))
  734. {
  735. if(double.TryParse(item.Position,out double position))
  736. {
  737. return (true, position);
  738. }
  739. else
  740. {
  741. return (false, 0);
  742. }
  743. }
  744. }
  745. return (false, 0);
  746. }
  747. #endregion
  748. #region protected 子类使用共用类,子类不再扩展
  749. /// <summary>
  750. /// 计算比例后的数值
  751. /// </summary>
  752. /// <param name="value"></param>
  753. /// <returns></returns>
  754. protected double CalculateValueAfterScale(int value)
  755. {
  756. if (_scaleFactor != 0)
  757. {
  758. return Math.Round((double)value / _scaleFactor, 2);
  759. }
  760. else
  761. {
  762. return (double)value;
  763. }
  764. }
  765. /// <summary>
  766. /// 确认操作状态
  767. /// </summary>
  768. /// <param name="operation"></param>
  769. protected void ConfirmOperationState(MotionOperation operation)
  770. {
  771. if (_currentOperation == operation)
  772. {
  773. _status = RState.End;
  774. EndOperation();
  775. }
  776. }
  777. /// <summary>
  778. /// 结束操作
  779. /// </summary>
  780. protected void EndOperation()
  781. {
  782. LOG.WriteLog(eEvent.INFO_AXIS,$"{Module}.{Name}", $"{Module}.{Name} execute {_currentOperation} complete");
  783. _currentOperation = MotionOperation.None;
  784. _targetPosition = 0;
  785. }
  786. /// <summary>
  787. /// 订阅变量数值发生变化
  788. /// </summary>
  789. protected void SubscribeValueAction()
  790. {
  791. GalilAxisSubscribeUpdateVariable(IS_SWITCH_ON);
  792. GalilAxisSubscribeUpdateVariable(STOP_CODE);
  793. GalilAxisSubscribeUpdateVariable( MOTOR_POSITION);
  794. GalilAxisSubscribeUpdateVariable( POSITION_ERROR);
  795. GalilAxisSubscribeUpdateVariable( ACTUAL_TORQUE);
  796. GalilAxisSubscribeUpdateVariable( ACTUAL_VELOCITY);
  797. }
  798. /// <summary>
  799. /// 订阅IO变量
  800. /// </summary>
  801. /// <param name="variable"></param>
  802. private void GalilAxisSubscribeUpdateVariable(string variable)
  803. {
  804. _variableInitializeDic[variable] = false;
  805. GalilAxisManager.Instance.SubscribeModuleVariable($"{Module}.{Name}", variable, UpdateVariableValue);
  806. }
  807. /// <summary>
  808. /// 更新变量数值
  809. /// </summary>
  810. /// <param name="variable"></param>
  811. /// <param name="value"></param>
  812. protected void UpdateVariableValue(string variable, object value)
  813. {
  814. if (value == null)
  815. {
  816. return;
  817. }
  818. if (_variableInitializeDic.ContainsKey(variable) && !_variableInitializeDic[variable])
  819. {
  820. _variableInitializeDic[variable] = true;
  821. }
  822. if (variable == MOTOR_POSITION)
  823. {
  824. if (int.TryParse(value.ToString(), out int location))
  825. {
  826. MotionPositionChanged(location);
  827. if (_galilAxisConfig.ForwardSoftwareLimit != 0)
  828. {
  829. MotionData.ForwardSoftwareLimited = location > _galilAxisConfig.ForwardSoftwareLimit-_galilAxisConfig.HomingOffset;
  830. if (!_isForwardSensorLimit && !_isRevSensorLimit)
  831. {
  832. MotionData.FwdLimited = MotionData.ForwardSoftwareLimited;
  833. }
  834. }
  835. if (_galilAxisConfig.ReverseSoftwareLimit != 0)
  836. {
  837. MotionData.ReverseSoftwareLimited = location < _galilAxisConfig.ReverseSoftwareLimit-_galilAxisConfig.HomingOffset;
  838. if (!_isRevSensorLimit && !_isForwardSensorLimit)
  839. {
  840. MotionData.RevLimited = MotionData.ReverseSoftwareLimited;
  841. }
  842. }
  843. }
  844. }
  845. UpdateMotionData(variable, value);
  846. if (variable == MOTOR_POSITION)
  847. {
  848. CalculateCurrentStation(MotionData.MotorPosition);
  849. }
  850. if (variable == ACTUAL_TORQUE)
  851. {
  852. UpdateTorqueLimited();
  853. }
  854. else if (variable == POSITIVE_TORQUE_LIMIT || variable == NEGATIVE_TORQUE_LIMIT)
  855. {
  856. MotionData.TorqueLimit = $"-{MotionData.NegativeTorqueLimit}/+{MotionData.PositiveTorqueLimit}";
  857. }
  858. }
  859. /// <summary>
  860. /// 监控(用于判定是否停止运动)
  861. /// </summary>
  862. protected void JudgeRunMonitor()
  863. {
  864. if (_isRun && DateTime.Now.Subtract(_runTime).TotalMilliseconds >= 500)
  865. {
  866. _isRun = false;
  867. }
  868. }
  869. #endregion
  870. #region public 公开方法
  871. /// <summary>
  872. /// 初始化
  873. /// </summary>
  874. /// <returns></returns>
  875. public bool Initialize()
  876. {
  877. SubscribeValueAction();
  878. return true;
  879. }
  880. /// <summary>
  881. /// 当前位置是否离目标位置不远
  882. /// </summary>
  883. /// <param name="targetPosition"></param>
  884. /// <returns></returns>
  885. public bool JudgeCurrentPositionIsInTargetPosition(int targetPosition)
  886. {
  887. double scaledTargetPosition = targetPosition /_scaleFactor;
  888. double currentMotionPosition = MotionData.MotorPosition;
  889. double delta = Math.Round(Math.Abs(currentMotionPosition - scaledTargetPosition), 2);
  890. bool result = delta <= _stationAxis.ToleranceDefault;
  891. return result;
  892. }
  893. /// <summary>
  894. /// 计算乘以比例后的数值
  895. /// </summary>
  896. /// <param name="value"></param>
  897. /// <returns></returns>
  898. public int CalculateValueMultiplyScale(double value)
  899. {
  900. if (_scaleFactor != 0)
  901. {
  902. return (int)Math.Round(value * _scaleFactor, 0);
  903. }
  904. else
  905. {
  906. return (int)Math.Round(value, 0);
  907. }
  908. }
  909. /// <summary>
  910. /// 计算乘上速度比例后的速度
  911. /// </summary>
  912. /// <param name="speed"></param>
  913. /// <returns></returns>
  914. public int CalculateMultiplySpeedRatio(int speed)
  915. {
  916. return speed * _speedRatio;
  917. }
  918. /// <summary>
  919. /// 计算乘上加速度比例后的加速度
  920. /// </summary>
  921. /// <param name="acceleration"></param>
  922. /// <returns></returns>
  923. public int CalculateMultiplyAccelerationRatio(int acceleration)
  924. {
  925. return acceleration * _accelerationRatio;
  926. }
  927. /// <summary>
  928. /// 计算除以速度比例后的速度
  929. /// </summary>
  930. /// <param name="speed"></param>
  931. /// <returns></returns>
  932. protected int CalculateDivideSpeedRatio(int speed)
  933. {
  934. return speed / _speedRatio;
  935. }
  936. /// <summary>
  937. /// 计算除以加速度比例后的加速度
  938. /// </summary>
  939. /// <param name="acceleration"></param>
  940. /// <returns></returns>
  941. protected int CalculateDivideAccelerationRatio(int acceleration)
  942. {
  943. return acceleration / _accelerationRatio;
  944. }
  945. /// <summary>
  946. /// 计算除以Torque比例后的Torque
  947. /// </summary>
  948. /// <param name="speed"></param>
  949. /// <returns></returns>
  950. protected double CalculateDivideTorqueRatio(int torque)
  951. {
  952. return Math.Round((double)torque / _torqueRatio, 2);
  953. }
  954. /// <summary>
  955. /// Jog Up
  956. /// </summary>
  957. /// <param name="cmd"></param>
  958. /// <param name="args"></param>
  959. /// <returns></returns>
  960. public bool JogUpPosition(string cmd, object[] args)
  961. {
  962. double jog=(double)args[1];
  963. double currentPosition=MotionData.MotorPosition;
  964. if(_jogLimit!=0)
  965. {
  966. if(jog>_jogLimit)
  967. {
  968. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Jog Value {jog} is over {_jogLimit}");
  969. return false;
  970. }
  971. }
  972. if (!_isSwitchOn)
  973. {
  974. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Axis is switch off,cannot jog");
  975. return false;
  976. }
  977. return ProfilePositionOperation(Math.Round(currentPosition + jog,2));
  978. }
  979. /// <summary>
  980. /// Jog Down
  981. /// </summary>
  982. /// <param name="cmd"></param>
  983. /// <param name="args"></param>
  984. /// <returns></returns>
  985. public bool JogDownPosition(string cmd, object[] args)
  986. {
  987. double jog = (double)args[1];
  988. double currentPosition = MotionData.MotorPosition;
  989. if (_jogLimit != 0)
  990. {
  991. if (jog > _jogLimit)
  992. {
  993. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Jog Value {jog} is over {_jogLimit}");
  994. return false;
  995. }
  996. }
  997. if(!_isSwitchOn)
  998. {
  999. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Axis is switch off,cannot jog");
  1000. return false;
  1001. }
  1002. return ProfilePositionOperation(Math.Round(currentPosition - jog,2));
  1003. }
  1004. /// <summary>
  1005. /// Profile position操作
  1006. /// </summary>
  1007. /// <param name="cmd"></param>
  1008. /// <param name="args"></param>
  1009. /// <returns></returns>
  1010. public bool ProfilePositionOperation(double position)
  1011. {
  1012. _targetPosition = position;
  1013. int targetPosition = CalculateValueMultiplyScale(_targetPosition);
  1014. if (_galilAxisConfig.ForwardSoftwareLimit != 0 && targetPosition > _galilAxisConfig.ForwardSoftwareLimit - _galilAxisConfig.HomingOffset)
  1015. {
  1016. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"target position {_targetPosition} is over forward limit");
  1017. return false;
  1018. }
  1019. if (_galilAxisConfig.ReverseSoftwareLimit != 0 && targetPosition < _galilAxisConfig.ReverseSoftwareLimit - _galilAxisConfig.HomingOffset)
  1020. {
  1021. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"target position {_targetPosition} is less reverse limit");
  1022. return false;
  1023. }
  1024. bool result= ProfilePosition(targetPosition, _profileVelocity, _profileAcceleration, _profileDeceleration);
  1025. if (result)
  1026. {
  1027. MotionData.TargetPosition = _targetPosition;
  1028. }
  1029. return result;
  1030. }
  1031. /// <summary>
  1032. /// 移动至指定位置
  1033. /// </summary>
  1034. /// <param name="targetStation"></param>
  1035. /// <returns></returns>
  1036. public bool PositionStation(string targetStation,bool isHome=false,int velocity=0,int acceleration=0,int deceleration=0, bool judgeTorqueLimit = true)
  1037. {
  1038. if (!CheckPositionIsInStation(MotionData.MotorPosition,targetStation))
  1039. {
  1040. if(_interLock!=null&&!isHome&&!_interLock.CheckGotoPosition(targetStation))
  1041. {
  1042. return false;
  1043. }
  1044. var result=GetPositionByStation(targetStation);
  1045. if(result.success)
  1046. {
  1047. _targetPosition = result.position;
  1048. int targetPosition = (int)Math.Round(result.position*_scaleFactor, 0);
  1049. bool positionResult = false;
  1050. if (velocity != 0)
  1051. {
  1052. positionResult= ProfilePosition(targetPosition, velocity, acceleration, deceleration, judgeTorqueLimit);
  1053. }
  1054. else
  1055. {
  1056. positionResult= ProfilePosition(targetPosition, _profileVelocity, _profileAcceleration, _profileDeceleration, judgeTorqueLimit);
  1057. }
  1058. if (positionResult)
  1059. {
  1060. MotionData.TargetPosition = _targetPosition;
  1061. }
  1062. return positionResult;
  1063. }
  1064. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"{targetStation} not in list,cannot goto fixed position");
  1065. return false;
  1066. }
  1067. else
  1068. {
  1069. _status = RState.End;
  1070. }
  1071. return true;
  1072. }
  1073. /// <summary>
  1074. /// 上电
  1075. /// </summary>
  1076. /// <returns></returns>
  1077. public bool WriteSwitchOn()
  1078. {
  1079. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "SH", null);
  1080. }
  1081. /// <summary>
  1082. /// 下电
  1083. /// </summary>
  1084. /// <returns></returns>
  1085. public bool WriteSwitchOff()
  1086. {
  1087. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "MO", null);
  1088. }
  1089. /// <summary>
  1090. /// 写入相对位置
  1091. /// </summary>
  1092. /// <param name="referencePosition"></param>
  1093. /// <returns></returns>
  1094. public bool WriteReferencePosition(int referencePosition)
  1095. {
  1096. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "PR", referencePosition);
  1097. }
  1098. /// <summary>
  1099. /// 写入绝对位置
  1100. /// </summary>
  1101. /// <param name="referencePosition"></param>
  1102. /// <returns></returns>
  1103. public bool WriteAbsolutePosition(int absolutePosition)
  1104. {
  1105. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "PA", absolutePosition);
  1106. }
  1107. /// <summary>
  1108. /// 写入速度
  1109. /// </summary>
  1110. /// <param name="referencePosition"></param>
  1111. /// <returns></returns>
  1112. public bool WriteSpeed(int speed)
  1113. {
  1114. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "SP", speed);
  1115. }
  1116. /// <summary>
  1117. /// 写入加速度
  1118. /// </summary>
  1119. /// <param name="referencePosition"></param>
  1120. /// <returns></returns>
  1121. public bool WriteAcceleration(int acceleration)
  1122. {
  1123. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "AC", acceleration);
  1124. }
  1125. /// <summary>
  1126. /// 写入减速度
  1127. /// </summary>
  1128. /// <param name="referencePosition"></param>
  1129. /// <returns></returns>
  1130. public bool WriteDeceleration(int deceleration)
  1131. {
  1132. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "DC", deceleration);
  1133. }
  1134. /// <summary>
  1135. /// 停止
  1136. /// </summary>
  1137. /// <returns></returns>
  1138. public bool WriteStop()
  1139. {
  1140. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "ST", null);
  1141. }
  1142. /// <summary>
  1143. /// 开始运动
  1144. /// </summary>
  1145. /// <returns></returns>
  1146. public bool WriteStartMotion()
  1147. {
  1148. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "BG", null);
  1149. }
  1150. /// <summary>
  1151. /// Home 电机
  1152. /// </summary>
  1153. /// <returns></returns>
  1154. public bool WriteHomeAxisCommand()
  1155. {
  1156. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "HM", null);
  1157. }
  1158. /// <summary>
  1159. /// Home 电机
  1160. /// </summary>
  1161. /// <returns></returns>
  1162. public bool WriteCNCommand(string cn)
  1163. {
  1164. return GalilControllerCfgManager.Instance.SetSystemCommand(Module, Name, "CN", cn);
  1165. }
  1166. /// <summary>
  1167. /// 手动置零
  1168. /// </summary>
  1169. /// <returns></returns>
  1170. public bool WriteDP(int dp)
  1171. {
  1172. bool result= GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "DP", dp);
  1173. if (result)
  1174. {
  1175. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "DE", dp);
  1176. }
  1177. return false;
  1178. }
  1179. /// <summary>
  1180. /// 写入控制字
  1181. /// </summary>
  1182. /// <param name="controlWord"></param>
  1183. public bool WriteControlWord(ushort controlWord)
  1184. {
  1185. return BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{CONTROL_WORD}", controlWord);
  1186. }
  1187. /// <summary>
  1188. /// 写入ModeOfOperation
  1189. /// </summary>
  1190. /// <param name="modeOfOperation"></param>
  1191. /// <returns></returns>
  1192. public bool WriteModeOfMode(AxisModeOfOperation modeOfOperation)
  1193. {
  1194. return BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{MODE_OF_OPERATION}", (byte)modeOfOperation);
  1195. }
  1196. /// <summary>
  1197. /// 写变量数值
  1198. /// </summary>
  1199. /// <param name="variableName"></param>
  1200. /// <param name="value"></param>
  1201. /// <returns></returns>
  1202. public bool WriteVariable(string variableName,object value)
  1203. {
  1204. return BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{variableName}", value);
  1205. }
  1206. /// <summary>
  1207. /// 检验GotoPosition条件
  1208. /// </summary>
  1209. /// <param name="station"></param>
  1210. public bool CheckGotoPosition(string station)
  1211. {
  1212. return _interLock.CheckGotoPosition(station);
  1213. }
  1214. /// <summary>
  1215. /// 检验当位Position是否在位置上
  1216. /// </summary>
  1217. /// <param name="position"></param>
  1218. /// <param name="stationName"></param>
  1219. /// <returns></returns>
  1220. public bool CheckPositionIsInStation(double position,string stationName)
  1221. {
  1222. foreach (Station station in _stationAxis.Stations)
  1223. {
  1224. string[] strAry = station.Name.Split('.');
  1225. if(strAry.Length == 0)
  1226. {
  1227. continue;
  1228. }
  1229. if (strAry[strAry.Length-1].ToLower()==(stationName.ToLower()))
  1230. {
  1231. if (double.TryParse(station.Position, out double value))
  1232. {
  1233. if (Math.Round(Math.Abs(position - value), 2) <= _stationAxis.ToleranceDefault)
  1234. {
  1235. return true;
  1236. }
  1237. }
  1238. }
  1239. }
  1240. return false;
  1241. }
  1242. /// <summary>
  1243. /// 检验位置(忽略WaferSize)
  1244. /// </summary>
  1245. /// <param name="position"></param>
  1246. /// <param name="stationName"></param>
  1247. /// <returns></returns>
  1248. public bool CheckPositionInStationIgnoreWaferSize(double position,string stationName)
  1249. {
  1250. foreach (Station station in _stationAxis.Stations)
  1251. {
  1252. if (station.Name.ToLower().Contains(stationName.ToLower()))
  1253. {
  1254. if (double.TryParse(station.Position, out double value))
  1255. {
  1256. if (Math.Round(Math.Abs(position - value), 2) <= _stationAxis.ToleranceDefault)
  1257. {
  1258. return true;
  1259. }
  1260. }
  1261. }
  1262. }
  1263. return false;
  1264. }
  1265. /// <summary>
  1266. /// 检验位置是否为空
  1267. /// </summary>
  1268. /// <param name="position"></param>
  1269. /// <returns></returns>
  1270. public bool CheckPositionIsEmpty(double position)
  1271. {
  1272. foreach (Station station in _stationAxis.Stations)
  1273. {
  1274. if (double.TryParse(station.Position, out double value))
  1275. {
  1276. if (Math.Round(Math.Abs(position - value), 2) <= _stationAxis.ToleranceDefault)
  1277. {
  1278. return false;
  1279. }
  1280. }
  1281. }
  1282. return true;
  1283. }
  1284. /// <summary>
  1285. /// 判定与目标位置相对关系
  1286. /// </summary>
  1287. /// <param name="station"></param>
  1288. /// <param name="compareType">Left--位于目标位置左侧,Right--位于目标位置右侧</param>
  1289. /// <returns></returns>
  1290. public bool JudgeCompareTargetStation(string station,string compareType)
  1291. {
  1292. double position = 0;
  1293. var result = GetPositionByStation(station);
  1294. if(result.success)
  1295. {
  1296. position = result.position;
  1297. }
  1298. else
  1299. {
  1300. return false;
  1301. }
  1302. var buffer16Position=GetPositionByStation(station);
  1303. switch(compareType)
  1304. {
  1305. case "Left":
  1306. return IsInStationLeftDirection(position);
  1307. case "Right":
  1308. if (buffer16Position.success)
  1309. {
  1310. position=buffer16Position.position;
  1311. }
  1312. return IsInStationRightPosition(position);
  1313. default:
  1314. return false;
  1315. }
  1316. }
  1317. /// <summary>
  1318. /// 是否位于位置左侧
  1319. /// </summary>
  1320. /// <param name="stationPosition"></param>
  1321. /// <returns></returns>
  1322. private bool IsInStationLeftDirection(double stationPosition)
  1323. {
  1324. double currentPosition = MotionData.MotorPosition;
  1325. double targetPosition = _targetPosition;
  1326. if(_currentOperation==MotionOperation.Position)
  1327. {
  1328. return currentPosition <= stationPosition && targetPosition <= stationPosition;
  1329. }
  1330. else
  1331. {
  1332. return currentPosition <= stationPosition;
  1333. }
  1334. }
  1335. /// <summary>
  1336. /// 是否位于位置右侧
  1337. /// </summary>
  1338. /// <param name="stationPosition"></param>
  1339. /// <returns></returns>
  1340. private bool IsInStationRightPosition(double stationPosition)
  1341. {
  1342. double currentPosition = MotionData.MotorPosition;
  1343. double targetPosition = _targetPosition;
  1344. if (_currentOperation == MotionOperation.Position)
  1345. {
  1346. return currentPosition > stationPosition && targetPosition > stationPosition;
  1347. }
  1348. else
  1349. {
  1350. return currentPosition > stationPosition ;
  1351. }
  1352. }
  1353. #endregion
  1354. #region virtual共用方法,子类可实现更多方法
  1355. /// <summary>
  1356. /// Home共用方法
  1357. /// </summary>
  1358. /// <returns></returns>
  1359. public virtual bool Home()
  1360. {
  1361. if (!_isSwitchOn)
  1362. {
  1363. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} switch off,cannot home");
  1364. return false;
  1365. }
  1366. if (_status == RState.Running)
  1367. {
  1368. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} current execute {_currentOperation},cannot home");
  1369. return false;
  1370. }
  1371. _currentOperation = MotionOperation.Home;
  1372. _status = RState.Running;
  1373. return true;
  1374. }
  1375. /// <summary>
  1376. /// Home(isLogError)共用方法
  1377. /// </summary>
  1378. /// <returns></returns>
  1379. public virtual bool Home(bool isLogError)
  1380. {
  1381. if (!_isSwitchOn)
  1382. {
  1383. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} switch off,cannot home");
  1384. return false;
  1385. }
  1386. if (_status == RState.Running)
  1387. {
  1388. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} current execute {_currentOperation},cannot home");
  1389. return false;
  1390. }
  1391. _currentOperation = MotionOperation.Home;
  1392. _status = RState.Running;
  1393. return true;
  1394. }
  1395. /// <summary>
  1396. /// 更改速度百分比
  1397. /// </summary>
  1398. /// <param name="percent"></param>
  1399. /// <returns></returns>
  1400. public bool ChangePercentSpeedAceleration(int percent)
  1401. {
  1402. double percentSpeed = _initialVelocity * ((double)percent / 100);
  1403. double percentAceleration = _initialAcceleration * ((double)percent / 100);
  1404. double percentDeceleration = _initialDeceleration * ((double)percent / 100);
  1405. int changedSpeed = (int)(Math.Round(percentSpeed, 0));
  1406. int changedAcceleration = (int)(Math.Round(percentAceleration, 0));
  1407. int changedDeceleration = (int)(Math.Round(percentDeceleration, 0));
  1408. bool result= ChangeSpeedAcceleration(changedSpeed,changedAcceleration,changedDeceleration);
  1409. if(result)
  1410. {
  1411. _profileVelocity = changedSpeed;
  1412. _profileAcceleration = changedAcceleration;
  1413. _profileDeceleration = changedDeceleration;
  1414. }
  1415. return result;
  1416. }
  1417. #endregion
  1418. #region public abstract 子类实现方法
  1419. /// <summary>
  1420. /// 停止操作
  1421. /// </summary>
  1422. /// <param name="cmd"></param>
  1423. /// <param name="args"></param>
  1424. /// <returns></returns>
  1425. public abstract bool StopPositionOperation();
  1426. /// <summary>
  1427. /// change speed
  1428. /// </summary>
  1429. /// <param name="speed"></param>
  1430. /// <returns></returns>
  1431. public abstract bool ChangeSpeed(int speed);
  1432. /// <summary>
  1433. /// 改变速度加速度
  1434. /// </summary>
  1435. /// <param name="speed"></param>
  1436. /// <returns></returns>
  1437. public abstract bool ChangeSpeedAcceleration(int speed, int acceleration, int deceleration);
  1438. /// <summary>
  1439. /// Switch On
  1440. /// </summary>
  1441. public abstract bool SwitchOn();
  1442. /// <summary>
  1443. /// Switch Off
  1444. /// </summary>
  1445. public abstract bool SwitchOff();
  1446. /// <summary>
  1447. /// 停止
  1448. /// </summary>
  1449. public abstract void Stop();
  1450. /// <summary>
  1451. /// Enable Operation
  1452. /// </summary>
  1453. /// <returns></returns>
  1454. public abstract bool EnableOperation();
  1455. /// <summary>
  1456. /// 定时器执行
  1457. /// </summary>
  1458. /// <returns></returns>
  1459. public abstract bool OnTimer();
  1460. /// <summary>
  1461. /// Profile operation
  1462. /// </summary>
  1463. /// <param name="targetPoint"></param>
  1464. /// <param name="profileVelocity"></param>
  1465. /// <param name="profileAcceleration"></param>
  1466. /// <param name="profileDeceleration"></param>
  1467. public abstract bool ProfilePosition(int targetPoint, int profileVelocity, int profileAcceleration, int profileDeceleration, bool judgeTorqueLimit = true);
  1468. #endregion
  1469. #region protected abstract 子类实现方法
  1470. /// <summary>
  1471. /// 初始化Routine
  1472. /// </summary>
  1473. protected abstract void InitializeRoutine();
  1474. /// <summary>
  1475. /// 初始化参数
  1476. /// </summary>
  1477. protected abstract void InitializeParameter();
  1478. /// <summary>
  1479. /// 更新状态字
  1480. /// </summary>
  1481. /// <param name="statusWord"></param>
  1482. public abstract void UpdateStatusWord(ushort statusWord);
  1483. /// <summary>
  1484. /// 回车输入
  1485. /// </summary>
  1486. /// <param name="arg"></param>
  1487. /// <param name="value"></param>
  1488. protected abstract void AxisKeyDown(string arg, double value);
  1489. #endregion
  1490. /// <summary>
  1491. /// 监控
  1492. /// </summary>
  1493. public void Monitor()
  1494. {
  1495. }
  1496. public void Reset()
  1497. {
  1498. }
  1499. /// 停止
  1500. /// </summary>
  1501. public void Terminate()
  1502. {
  1503. }
  1504. }
  1505. }