JetAxisBase.cs 59 KB

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