JetAxisBase.cs 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572
  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. if (SC.GetValue<bool>("System.IsSimulatorMode"))
  858. {
  859. LOG.WriteLog(eEvent.INFO_AXIS, Module, $"Motor position is {value}");
  860. }
  861. }
  862. if (variable == ACTUAL_TORQUE)
  863. {
  864. UpdateTorqueLimited();
  865. }
  866. else if (variable == POSITIVE_TORQUE_LIMIT || variable == NEGATIVE_TORQUE_LIMIT)
  867. {
  868. MotionData.TorqueLimit = $"-{MotionData.NegativeTorqueLimit}/+{MotionData.PositiveTorqueLimit}";
  869. }
  870. if(variable == FORWARD_LIMIT)
  871. {
  872. MotionData.FwdLimited = (bool)value;
  873. }
  874. if(variable == ACTUAL_VELOCITY)
  875. {
  876. MotionData.ActualVelocity = Math.Round((int)value / _scaleFactor / _velocityRate, 2);
  877. }
  878. if(variable == TARGET_POSITION)
  879. {
  880. MotionData.TargetPosition = Math.Round((int)value / _scaleFactor, 2);
  881. }
  882. }
  883. /// <summary>
  884. /// 监控(用于判定是否停止运动)
  885. /// </summary>
  886. protected void JudgeRunMonitor()
  887. {
  888. if (_isRun && DateTime.Now.Subtract(_runTime).TotalMilliseconds >= 1000)
  889. {
  890. _isRun = false;
  891. }
  892. }
  893. #endregion
  894. #region public 公开方法
  895. /// <summary>
  896. /// 初始化
  897. /// </summary>
  898. /// <returns></returns>
  899. public bool Initialize()
  900. {
  901. SubscribeValueAction();
  902. return true;
  903. }
  904. /// <summary>
  905. /// 当前位置是否离目标位置不远
  906. /// </summary>
  907. /// <param name="targetPosition"></param>
  908. /// <returns></returns>
  909. public bool JudgeCurrentPositionIsInTargetPosition(int targetPosition)
  910. {
  911. double scaledTargetPosition = targetPosition /_scaleFactor;
  912. double currentMotionPosition = MotionData.MotorPosition;
  913. double delta = Math.Round(Math.Abs(currentMotionPosition - scaledTargetPosition), 2);
  914. bool result = delta <= _stationAxis.ToleranceDefault;
  915. return result;
  916. }
  917. /// <summary>
  918. /// 计算乘以比例后的数值
  919. /// </summary>
  920. /// <param name="value"></param>
  921. /// <returns></returns>
  922. public int CalculateValueMultiplyScale(double value)
  923. {
  924. if (_scaleFactor != 0)
  925. {
  926. return (int)Math.Round(value * _scaleFactor, 0);
  927. }
  928. else
  929. {
  930. return (int)Math.Round(value, 0);
  931. }
  932. }
  933. /// <summary>
  934. /// 计算乘上速度比例后的速度
  935. /// </summary>
  936. /// <param name="speed"></param>
  937. /// <returns></returns>
  938. public int CalculateMultiplySpeedRatio(int speed)
  939. {
  940. return speed * _speedRatio;
  941. }
  942. /// <summary>
  943. /// 计算乘上加速度比例后的加速度
  944. /// </summary>
  945. /// <param name="acceleration"></param>
  946. /// <returns></returns>
  947. public int CalculateMultiplyAccelerationRatio(int acceleration)
  948. {
  949. return acceleration * _accelerationRatio;
  950. }
  951. /// <summary>
  952. /// 计算除以速度比例后的速度
  953. /// </summary>
  954. /// <param name="speed"></param>
  955. /// <returns></returns>
  956. protected int CalculateDivideSpeedRatio(int speed)
  957. {
  958. return speed / _speedRatio;
  959. }
  960. /// <summary>
  961. /// 计算除以加速度比例后的加速度
  962. /// </summary>
  963. /// <param name="acceleration"></param>
  964. /// <returns></returns>
  965. protected int CalculateDivideAccelerationRatio(int acceleration)
  966. {
  967. return acceleration / _accelerationRatio;
  968. }
  969. /// <summary>
  970. /// 计算除以Torque比例后的Torque
  971. /// </summary>
  972. /// <param name="speed"></param>
  973. /// <returns></returns>
  974. protected double CalculateDivideTorqueRatio(int torque)
  975. {
  976. return Math.Round((double)torque / _torqueRatio, 2);
  977. }
  978. /// <summary>
  979. /// Jog Up
  980. /// </summary>
  981. /// <param name="cmd"></param>
  982. /// <param name="args"></param>
  983. /// <returns></returns>
  984. public bool JogUpPosition(string cmd, object[] args)
  985. {
  986. double jog=(double)args[1];
  987. double currentPosition=MotionData.MotorPosition;
  988. if(_jogLimit!=0)
  989. {
  990. if(jog>_jogLimit)
  991. {
  992. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Jog Value {jog} is over {_jogLimit}");
  993. return false;
  994. }
  995. }
  996. if (!_isSwitchOn)
  997. {
  998. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Axis is switch off,cannot jog");
  999. return false;
  1000. }
  1001. return ProfilePositionOperation(Math.Round(currentPosition + jog,2));
  1002. }
  1003. /// <summary>
  1004. /// Jog Down
  1005. /// </summary>
  1006. /// <param name="cmd"></param>
  1007. /// <param name="args"></param>
  1008. /// <returns></returns>
  1009. public bool JogDownPosition(string cmd, object[] args)
  1010. {
  1011. double jog = (double)args[1];
  1012. double currentPosition = MotionData.MotorPosition;
  1013. if (_jogLimit != 0)
  1014. {
  1015. if (jog > _jogLimit)
  1016. {
  1017. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Jog Value {jog} is over {_jogLimit}");
  1018. return false;
  1019. }
  1020. }
  1021. if(!_isSwitchOn)
  1022. {
  1023. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"Axis is switch off,cannot jog");
  1024. return false;
  1025. }
  1026. return ProfilePositionOperation(Math.Round(currentPosition - jog,2));
  1027. }
  1028. /// <summary>
  1029. /// Profile position操作
  1030. /// </summary>
  1031. /// <param name="cmd"></param>
  1032. /// <param name="args"></param>
  1033. /// <returns></returns>
  1034. public bool ProfilePositionOperation(double position)
  1035. {
  1036. _targetPosition = position;
  1037. int targetPosition = CalculateValueMultiplyScale(_targetPosition);
  1038. if (_galilAxisConfig.ForwardSoftwareLimit != 0 && targetPosition > _galilAxisConfig.ForwardSoftwareLimit - _galilAxisConfig.HomingOffset)
  1039. {
  1040. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"target position {_targetPosition} is over forward limit");
  1041. return false;
  1042. }
  1043. if (_galilAxisConfig.ReverseSoftwareLimit != 0 && targetPosition < _galilAxisConfig.ReverseSoftwareLimit - _galilAxisConfig.HomingOffset)
  1044. {
  1045. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"target position {_targetPosition} is less reverse limit");
  1046. return false;
  1047. }
  1048. bool result= ProfilePosition(targetPosition, _profileVelocity, _profileAcceleration, _profileDeceleration);
  1049. if (result)
  1050. {
  1051. MotionData.TargetPosition = _targetPosition;
  1052. }
  1053. return result;
  1054. }
  1055. /// <summary>
  1056. /// 移动至指定位置
  1057. /// </summary>
  1058. /// <param name="targetStation"></param>
  1059. /// <returns></returns>
  1060. public bool PositionStation(string targetStation,bool isHome=false,int velocity=0,int acceleration=0,int deceleration=0, bool judgeTorqueLimit = true)
  1061. {
  1062. if (!CheckPositionIsInStation(MotionData.MotorPosition,targetStation))
  1063. {
  1064. if(_interLock!=null&&!isHome&&!_interLock.CheckGotoPosition(targetStation))
  1065. {
  1066. return false;
  1067. }
  1068. var result=GetPositionByStation(targetStation);
  1069. if(result.success)
  1070. {
  1071. _targetPosition = result.position;
  1072. int targetPosition = (int)Math.Round(result.position*_scaleFactor, 0);
  1073. bool positionResult = false;
  1074. if (velocity != 0)
  1075. {
  1076. positionResult= ProfilePosition(targetPosition, velocity, acceleration, deceleration, judgeTorqueLimit);
  1077. }
  1078. else
  1079. {
  1080. positionResult= ProfilePosition(targetPosition, _profileVelocity, _profileAcceleration, _profileDeceleration, judgeTorqueLimit);
  1081. }
  1082. if (positionResult)
  1083. {
  1084. MotionData.TargetPosition = _targetPosition;
  1085. }
  1086. return positionResult;
  1087. }
  1088. LOG.WriteLog(eEvent.ERR_AXIS, Module, $"{targetStation} not in list,cannot goto fixed position");
  1089. return false;
  1090. }
  1091. else
  1092. {
  1093. _status = RState.End;
  1094. }
  1095. return true;
  1096. }
  1097. /// <summary>
  1098. /// 上电
  1099. /// </summary>
  1100. /// <returns></returns>
  1101. public bool WriteSwitchOn()
  1102. {
  1103. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "SH", null);
  1104. }
  1105. /// <summary>
  1106. /// 下电
  1107. /// </summary>
  1108. /// <returns></returns>
  1109. public bool WriteSwitchOff()
  1110. {
  1111. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "MO", null);
  1112. }
  1113. /// <summary>
  1114. /// 写入相对位置
  1115. /// </summary>
  1116. /// <param name="referencePosition"></param>
  1117. /// <returns></returns>
  1118. public bool WriteReferencePosition(int referencePosition)
  1119. {
  1120. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "PR", referencePosition);
  1121. }
  1122. /// <summary>
  1123. /// 写入绝对位置
  1124. /// </summary>
  1125. /// <param name="referencePosition"></param>
  1126. /// <returns></returns>
  1127. public bool WriteAbsolutePosition(int absolutePosition)
  1128. {
  1129. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "PA", absolutePosition);
  1130. }
  1131. /// <summary>
  1132. /// 写入速度
  1133. /// </summary>
  1134. /// <param name="referencePosition"></param>
  1135. /// <returns></returns>
  1136. public bool WriteSpeed(int speed)
  1137. {
  1138. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "SP", speed);
  1139. }
  1140. /// <summary>
  1141. /// 写入加速度
  1142. /// </summary>
  1143. /// <param name="referencePosition"></param>
  1144. /// <returns></returns>
  1145. public bool WriteAcceleration(int acceleration)
  1146. {
  1147. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "AC", acceleration);
  1148. }
  1149. /// <summary>
  1150. /// 写入减速度
  1151. /// </summary>
  1152. /// <param name="referencePosition"></param>
  1153. /// <returns></returns>
  1154. public bool WriteDeceleration(int deceleration)
  1155. {
  1156. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "DC", deceleration);
  1157. }
  1158. /// <summary>
  1159. /// 停止
  1160. /// </summary>
  1161. /// <returns></returns>
  1162. public bool WriteStop()
  1163. {
  1164. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "ST", null);
  1165. }
  1166. /// <summary>
  1167. /// 开始运动
  1168. /// </summary>
  1169. /// <returns></returns>
  1170. public bool WriteStartMotion()
  1171. {
  1172. bool result= GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "BG", null);
  1173. if (result)
  1174. {
  1175. _runTime = DateTime.Now;
  1176. }
  1177. return result;
  1178. }
  1179. /// <summary>
  1180. /// Home 电机
  1181. /// </summary>
  1182. /// <returns></returns>
  1183. public bool WriteHomeAxisCommand()
  1184. {
  1185. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "HM", null);
  1186. }
  1187. /// <summary>
  1188. /// Home 电机
  1189. /// </summary>
  1190. /// <returns></returns>
  1191. public bool WriteFIAxisCommand()
  1192. {
  1193. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "FI", null);
  1194. }
  1195. /// <summary>
  1196. /// Home 电机
  1197. /// </summary>
  1198. /// <returns></returns>
  1199. public bool WriteCNCommand(string cn)
  1200. {
  1201. return GalilControllerCfgManager.Instance.SetSystemCommand(Module, Name, "CN", cn);
  1202. }
  1203. /// <summary>
  1204. /// 手动置零
  1205. /// </summary>
  1206. /// <returns></returns>
  1207. public bool WriteDP(int dp)
  1208. {
  1209. bool result= GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "DP", dp);
  1210. if (result)
  1211. {
  1212. return GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "DE", dp);
  1213. }
  1214. return false;
  1215. }
  1216. /// <summary>
  1217. /// 写入控制字
  1218. /// </summary>
  1219. /// <param name="controlWord"></param>
  1220. public bool WriteControlWord(ushort controlWord)
  1221. {
  1222. return BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{CONTROL_WORD}", controlWord);
  1223. }
  1224. /// <summary>
  1225. /// 写入ModeOfOperation
  1226. /// </summary>
  1227. /// <param name="modeOfOperation"></param>
  1228. /// <returns></returns>
  1229. public bool WriteModeOfMode(AxisModeOfOperation modeOfOperation)
  1230. {
  1231. return BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{MODE_OF_OPERATION}", (byte)modeOfOperation);
  1232. }
  1233. /// <summary>
  1234. /// 写变量数值
  1235. /// </summary>
  1236. /// <param name="variableName"></param>
  1237. /// <param name="value"></param>
  1238. /// <returns></returns>
  1239. public bool WriteVariable(string variableName,object value)
  1240. {
  1241. return BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{variableName}", value);
  1242. }
  1243. /// <summary>
  1244. /// 检验GotoPosition条件
  1245. /// </summary>
  1246. /// <param name="station"></param>
  1247. public bool CheckGotoPosition(string station)
  1248. {
  1249. return _interLock.CheckGotoPosition(station);
  1250. }
  1251. /// <summary>
  1252. /// 检验当位Position是否在位置上
  1253. /// </summary>
  1254. /// <param name="position"></param>
  1255. /// <param name="stationName"></param>
  1256. /// <returns></returns>
  1257. public bool CheckPositionIsInStation(double position,string stationName)
  1258. {
  1259. foreach (Station station in _stationAxis.Stations)
  1260. {
  1261. string[] strAry = station.Name.Split('.');
  1262. if(strAry.Length == 0)
  1263. {
  1264. continue;
  1265. }
  1266. if (strAry[strAry.Length-1].ToLower()==(stationName.ToLower()))
  1267. {
  1268. if (double.TryParse(station.Position, out double value))
  1269. {
  1270. if (Math.Round(Math.Abs(position - value), 2) <= _stationAxis.ToleranceDefault)
  1271. {
  1272. return true;
  1273. }
  1274. }
  1275. }
  1276. }
  1277. return false;
  1278. }
  1279. /// <summary>
  1280. /// 检验位置(忽略WaferSize)
  1281. /// </summary>
  1282. /// <param name="position"></param>
  1283. /// <param name="stationName"></param>
  1284. /// <returns></returns>
  1285. public bool CheckPositionInStationIgnoreWaferSize(double position,string stationName)
  1286. {
  1287. foreach (Station station in _stationAxis.Stations)
  1288. {
  1289. if (station.Name.ToLower().Contains(stationName.ToLower()))
  1290. {
  1291. if (double.TryParse(station.Position, out double value))
  1292. {
  1293. if (Math.Round(Math.Abs(position - value), 2) <= _stationAxis.ToleranceDefault)
  1294. {
  1295. return true;
  1296. }
  1297. }
  1298. }
  1299. }
  1300. return false;
  1301. }
  1302. /// <summary>
  1303. /// 检验位置是否为空
  1304. /// </summary>
  1305. /// <param name="position"></param>
  1306. /// <returns></returns>
  1307. public bool CheckPositionIsEmpty(double position)
  1308. {
  1309. foreach (Station station in _stationAxis.Stations)
  1310. {
  1311. if (double.TryParse(station.Position, out double value))
  1312. {
  1313. if (Math.Round(Math.Abs(position - value), 2) <= _stationAxis.ToleranceDefault)
  1314. {
  1315. return false;
  1316. }
  1317. }
  1318. }
  1319. return true;
  1320. }
  1321. /// <summary>
  1322. /// 判定与目标位置相对关系
  1323. /// </summary>
  1324. /// <param name="station"></param>
  1325. /// <param name="compareType">Left--位于目标位置左侧,Right--位于目标位置右侧</param>
  1326. /// <returns></returns>
  1327. public bool JudgeCompareTargetStation(string station,string compareType)
  1328. {
  1329. double position = 0;
  1330. var result = GetPositionByStation(station);
  1331. if(result.success)
  1332. {
  1333. position = result.position;
  1334. }
  1335. else
  1336. {
  1337. return false;
  1338. }
  1339. double compareInterval = SC.GetValue<double>("System.CompareInterval");
  1340. switch(compareType)
  1341. {
  1342. case "Left":
  1343. return IsInStationLeftDirection(position,compareInterval);
  1344. case "Right":
  1345. return IsInStationRightPosition(position,compareInterval);
  1346. default:
  1347. return false;
  1348. }
  1349. }
  1350. /// <summary>
  1351. /// 是否位于位置左侧
  1352. /// </summary>
  1353. /// <param name="stationPosition"></param>
  1354. /// <returns></returns>
  1355. private bool IsInStationLeftDirection(double stationPosition,double compareInterval)
  1356. {
  1357. double currentPosition = MotionData.MotorPosition;
  1358. double targetPosition = _targetPosition;
  1359. if(_currentOperation==MotionOperation.Position)
  1360. {
  1361. return currentPosition <= stationPosition-compareInterval && targetPosition <= stationPosition - compareInterval;
  1362. }
  1363. else
  1364. {
  1365. return currentPosition <= stationPosition-compareInterval;
  1366. }
  1367. }
  1368. /// <summary>
  1369. /// 是否位于位置右侧
  1370. /// </summary>
  1371. /// <param name="stationPosition"></param>
  1372. /// <returns></returns>
  1373. private bool IsInStationRightPosition(double stationPosition, double compareInterval)
  1374. {
  1375. double currentPosition = MotionData.MotorPosition;
  1376. double targetPosition = _targetPosition;
  1377. if (_currentOperation == MotionOperation.Position)
  1378. {
  1379. return currentPosition > stationPosition+compareInterval && targetPosition > stationPosition + compareInterval;
  1380. }
  1381. else
  1382. {
  1383. return currentPosition > stationPosition+compareInterval ;
  1384. }
  1385. }
  1386. #endregion
  1387. #region virtual共用方法,子类可实现更多方法
  1388. /// <summary>
  1389. /// Home共用方法
  1390. /// </summary>
  1391. /// <returns></returns>
  1392. public virtual bool Home()
  1393. {
  1394. if (!_isSwitchOn)
  1395. {
  1396. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} switch off,cannot home");
  1397. return false;
  1398. }
  1399. if (_status == RState.Running)
  1400. {
  1401. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} current execute {_currentOperation},cannot home");
  1402. return false;
  1403. }
  1404. _currentOperation = MotionOperation.Home;
  1405. _status = RState.Running;
  1406. return true;
  1407. }
  1408. /// <summary>
  1409. /// Home(isLogError)共用方法
  1410. /// </summary>
  1411. /// <returns></returns>
  1412. public virtual bool Home(bool isLogError)
  1413. {
  1414. if (!_isSwitchOn)
  1415. {
  1416. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} switch off,cannot home");
  1417. return false;
  1418. }
  1419. if (_status == RState.Running)
  1420. {
  1421. EV.PostAlarmLog($"{Module}.{Name}", eEvent.ERR_PUF, $"{Module}.{Name} current execute {_currentOperation},cannot home");
  1422. return false;
  1423. }
  1424. _currentOperation = MotionOperation.Home;
  1425. _status = RState.Running;
  1426. return true;
  1427. }
  1428. /// <summary>
  1429. /// 更改速度百分比
  1430. /// </summary>
  1431. /// <param name="percent"></param>
  1432. /// <returns></returns>
  1433. public bool ChangePercentSpeedAceleration(int percent)
  1434. {
  1435. double percentSpeed = _initialVelocity * ((double)percent / 100);
  1436. double percentAceleration = _initialAcceleration * ((double)percent / 100);
  1437. double percentDeceleration = _initialDeceleration * ((double)percent / 100);
  1438. int changedSpeed = (int)(Math.Round(percentSpeed, 0));
  1439. int changedAcceleration = (int)(Math.Round(percentAceleration, 0));
  1440. int changedDeceleration = (int)(Math.Round(percentDeceleration, 0));
  1441. bool result= ChangeSpeedAcceleration(changedSpeed,changedAcceleration,changedDeceleration);
  1442. if(result)
  1443. {
  1444. _profileVelocity = changedSpeed;
  1445. _profileAcceleration = changedAcceleration;
  1446. _profileDeceleration = changedDeceleration;
  1447. }
  1448. return result;
  1449. }
  1450. #endregion
  1451. #region public abstract 子类实现方法
  1452. /// <summary>
  1453. /// 停止操作
  1454. /// </summary>
  1455. /// <param name="cmd"></param>
  1456. /// <param name="args"></param>
  1457. /// <returns></returns>
  1458. public abstract bool StopPositionOperation();
  1459. /// <summary>
  1460. /// change speed
  1461. /// </summary>
  1462. /// <param name="speed"></param>
  1463. /// <returns></returns>
  1464. public abstract bool ChangeSpeed(int speed);
  1465. /// <summary>
  1466. /// 改变速度加速度
  1467. /// </summary>
  1468. /// <param name="speed"></param>
  1469. /// <returns></returns>
  1470. public abstract bool ChangeSpeedAcceleration(int speed, int acceleration, int deceleration);
  1471. /// <summary>
  1472. /// Switch On
  1473. /// </summary>
  1474. public abstract bool SwitchOn();
  1475. /// <summary>
  1476. /// Switch Off
  1477. /// </summary>
  1478. public abstract bool SwitchOff();
  1479. /// <summary>
  1480. /// 停止
  1481. /// </summary>
  1482. public abstract void Stop();
  1483. /// <summary>
  1484. /// Enable Operation
  1485. /// </summary>
  1486. /// <returns></returns>
  1487. public abstract bool EnableOperation();
  1488. /// <summary>
  1489. /// 定时器执行
  1490. /// </summary>
  1491. /// <returns></returns>
  1492. public abstract bool OnTimer();
  1493. /// <summary>
  1494. /// Profile operation
  1495. /// </summary>
  1496. /// <param name="targetPoint"></param>
  1497. /// <param name="profileVelocity"></param>
  1498. /// <param name="profileAcceleration"></param>
  1499. /// <param name="profileDeceleration"></param>
  1500. public abstract bool ProfilePosition(int targetPoint, int profileVelocity, int profileAcceleration, int profileDeceleration, bool judgeTorqueLimit = true);
  1501. #endregion
  1502. #region protected abstract 子类实现方法
  1503. /// <summary>
  1504. /// 初始化Routine
  1505. /// </summary>
  1506. protected abstract void InitializeRoutine();
  1507. /// <summary>
  1508. /// 初始化参数
  1509. /// </summary>
  1510. protected abstract void InitializeParameter();
  1511. /// <summary>
  1512. /// 更新状态字
  1513. /// </summary>
  1514. /// <param name="statusWord"></param>
  1515. public abstract void UpdateStatusWord(ushort statusWord);
  1516. /// <summary>
  1517. /// 回车输入
  1518. /// </summary>
  1519. /// <param name="arg"></param>
  1520. /// <param name="value"></param>
  1521. protected abstract void AxisKeyDown(string arg, double value);
  1522. #endregion
  1523. /// <summary>
  1524. /// 监控
  1525. /// </summary>
  1526. public void Monitor()
  1527. {
  1528. }
  1529. public void Reset()
  1530. {
  1531. }
  1532. /// 停止
  1533. /// </summary>
  1534. public void Terminate()
  1535. {
  1536. }
  1537. }
  1538. }