using FObjBase;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace FLY.Thick.Blowing.IService
{
///
/// 追边测厚仪
///
public interface IBlowingFixService : IBlowing
{
#region 温修
///
/// 追边开始按钮自锁
///
bool IsBtnSelfHold { get; set; }
///
/// 追边模式
///
RenZiJiaFixEPCType EPCType { get; set; }
///
/// 温修时间,默认2秒
///
TimeSpan SampleConsume { get; set; }
///
/// 温修间隔,默认45分钟
///
TimeSpan SampleInterval { get; set; }
///
/// 当前温修计时,大于温修间隔就会去温修
///
TimeSpan SampleTimer { get; }
///
/// 回到边界后,再等待一段时间,那就肯定找到边界了。 默认5s
///
TimeSpan BackEdgeWait { get; set; }
///
/// 采样得到的样品AD
///
int SampleAD { get; }
///
/// 追边运行中!
///
bool EPCIsRunning { get; }
#endregion
#region 功能
///
/// 追边开始
///
void EPCStart();
///
/// 追边停止
///
void EPCStop();
///
/// 获取 立式旋转架 的 膜距离增量
///
/// 开始时间
/// retdata = GetFilmLength3DReponse
///
void GetADList(DateTime begin, AsyncCBHandler AsyncDelegate, object AsyncState);
#endregion
}
///
/// 温修对位硬件类型
///
public enum RenZiJiaFixEPCType
{
Null,
EPCA10
}
public class ADCell:INotifyPropertyChanged
{
///
/// 测量的时间
///
public DateTime Time { get; set; }
///
/// 用于修正AB值,温修AD后,重新计算thick。
///
public int Ad { get; set; } = Misc.MyBase.NULL_VALUE;
///
/// 探头测量 膜对位的角度 0~360°
///
public List Angles { get; } = new List();
///
/// 人字架正向旋转
///
public Misc.DIRECTION Direction { get; set; }
///
/// 线速度
///
public double Velocity { get; set; }
///
/// 人字架旋转次数, 当为-1 时,没获取到数据,等待中!!
///
public int RotationCnt { get; set; }
///
/// 恒速阶段
///
public bool InCV { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
public override string ToString()
{
string t = $"{Time:mm:ss.fff}";
string json = "";
foreach (double d in Angles)
{
if (!string.IsNullOrEmpty(json))
{
json += ",";
}
json += $"{d:F1}°";
}
return $"{Time:mm:ss.fff} [{json}] {Velocity:F1}m/min ({(Direction== Misc.DIRECTION.FORWARD?"正":"反")}){RotationCnt}次 {(InCV?"cv":"")}";
}
public ADCell Clone()
{
ADCell c = new ADCell()
{
Time = Time,
Ad = Ad
};
return c;
}
}
public class ADSingle
{
///
/// 测量的时间
///
public DateTime dt;
///
///
///
public int thick;
}
public class GetADListRequest
{
public DateTime begin;
}
public class GetADListReponse
{
public List datas;
}
}