|
@@ -36,6 +36,7 @@ using MECF.Framework.Common.CommonData.PUF;
|
|
|
using MECF.Framework.Common.Beckhoff.AxisProvider;
|
|
|
using QiHe.CodeLib;
|
|
|
using MECF.Framework.Common.Jobs;
|
|
|
+using ExcelLibrary.BinaryFileFormat;
|
|
|
|
|
|
|
|
|
namespace CyberX8_MainPages.ViewModels
|
|
@@ -153,6 +154,10 @@ namespace CyberX8_MainPages.ViewModels
|
|
|
/// </summary>
|
|
|
private double _puf1FlipPosition;
|
|
|
/// <summary>
|
|
|
+ /// Puf1 Flip Diff
|
|
|
+ /// </summary>
|
|
|
+ private double _puf1FlipDiff;
|
|
|
+ /// <summary>
|
|
|
/// Puf1 Rotation最左侧的位置
|
|
|
/// </summary>
|
|
|
private double _puf1RotationMotorPositionMax;
|
|
@@ -767,12 +772,13 @@ namespace CyberX8_MainPages.ViewModels
|
|
|
//目标位置数据获取
|
|
|
Puf1RotationAxis = CommonFunction.GetValue<BeckhoffStationAxis>(RtDataValues, $"Station.PUF1.Rotation");
|
|
|
//Puf1Rotation比例尺计算
|
|
|
- var resultRotation = Puf1RotationAxis != null ? CalculateMaxMin(Puf1RotationAxis) : (0, 0);
|
|
|
- double distance = resultRotation.max - resultRotation.min;
|
|
|
+ var resultRotation = Puf1RotationAxis != null ? CalculatePufMaxMin(Puf1RotationAxis) : (0, 0);
|
|
|
+ double distance = resultRotation.right - resultRotation.left;
|
|
|
_puf1RotationRatio = distance / _pufLayoutRotationDistance;
|
|
|
- _puf1RotationMotorPositionMax = resultRotation.max;
|
|
|
-
|
|
|
-
|
|
|
+ _puf1RotationMotorPositionMax = resultRotation.left;
|
|
|
+ //目标位置数据获取
|
|
|
+ Puf1FlipAxis = CommonFunction.GetValue<BeckhoffStationAxis>(RtDataValues, $"Station.PUF1.Flip");
|
|
|
+ _puf1FlipDiff = CalculatePufFlipDiff(Puf1FlipAxis);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1009,11 +1015,11 @@ namespace CyberX8_MainPages.ViewModels
|
|
|
Loader1RotationMotorPosition = CommonFunction.GetValue<double>(RtDataValues, $"Loader1.Rotation.{MOTOR_POSITION}");
|
|
|
Puf1FlipMotorPosition = CommonFunction.GetValue<double>(RtDataValues, $"PUF1.Flip.{MOTOR_POSITION}");
|
|
|
//计算Puf1 Rotation UI位置
|
|
|
- Puf1RotationPosition = _robotLayoutPosition + (_puf1RotationMotorPositionMax - Puf1RotationMotorPosition) / _puf1RotationRatio;
|
|
|
+ Puf1RotationPosition = _robotLayoutPosition + (Puf1RotationMotorPosition - _puf1RotationMotorPositionMax) / _puf1RotationRatio;
|
|
|
//计Loader Rotation UI位置
|
|
|
Loader1RotationPosition = -Loader1RotationMotorPosition - LOADER_ROTATION_DIFFER;
|
|
|
//计算Puf1 Flip UI位置
|
|
|
- Puf1FlipPosition = Puf1FlipMotorPosition - PUF_FLIP_DIFFER;
|
|
|
+ Puf1FlipPosition = Puf1FlipMotorPosition - _puf1FlipDiff;
|
|
|
//判断Loader1的TiltA水平状态
|
|
|
LoaderTiltACurrentStation = CommonFunction.GetCurrentStationLastContent(CommonFunction.GetValue<string>(RtDataValues, $"Loader1.TiltA.{CURRENT_STATION}"), "Loader1.TiltA");
|
|
|
if (LoaderTiltACurrentStation == "HORI")
|
|
@@ -1524,12 +1530,17 @@ namespace CyberX8_MainPages.ViewModels
|
|
|
/// </summary>
|
|
|
/// <param name="Puf1RotationAxis"></param>
|
|
|
/// <returns></returns>
|
|
|
- private (double max, double min) CalculateMaxMin(BeckhoffStationAxis pufAxis)
|
|
|
+ private (double right, double left) CalculatePufMaxMin(BeckhoffStationAxis pufAxis)
|
|
|
{
|
|
|
- double max = 0;
|
|
|
- double min = 0;
|
|
|
+ if (pufAxis == null || pufAxis.Stations.Count == 0) return (-1,-1);
|
|
|
+ double max = double.Parse(pufAxis.Stations[0].Position);
|
|
|
+ double min = double.Parse(pufAxis.Stations[0].Position);
|
|
|
+ double home = 0;
|
|
|
+ double pickup = 0;
|
|
|
foreach (Station item in pufAxis.Stations)
|
|
|
{
|
|
|
+ if (item.Name.ToLower().Contains("home")) home = double.Parse(item.Position);
|
|
|
+ if (item.Name.ToLower().Contains("pickup")) pickup = double.Parse(item.Position);
|
|
|
double position = double.Parse(item.Position);
|
|
|
if (position > max)
|
|
|
{
|
|
@@ -1540,19 +1551,24 @@ namespace CyberX8_MainPages.ViewModels
|
|
|
min = position;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ return pickup < home ? (min, max):(max, min);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 计算PufFlip差值
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="pufAxis"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ private double CalculatePufFlipDiff(BeckhoffStationAxis pufAxis)
|
|
|
+ {
|
|
|
+ double sideAangle = 0;
|
|
|
+ double sideBangle = 0; ;
|
|
|
foreach (Station item in pufAxis.Stations)
|
|
|
{
|
|
|
- double position = double.Parse(item.Position);
|
|
|
- if (position > max)
|
|
|
- {
|
|
|
- max = position;
|
|
|
- }
|
|
|
- if (position < min)
|
|
|
- {
|
|
|
- min = position;
|
|
|
- }
|
|
|
+ if (item.Name.ToLower().Contains("sideA")) sideAangle = double.Parse(item.Position);
|
|
|
+ if (item.Name.ToLower().Contains("sideB")) sideBangle = double.Parse(item.Position);
|
|
|
}
|
|
|
- return (max, min);
|
|
|
+ return sideAangle > sideBangle ? 180 : 0;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 判定是否在station位置
|