using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using System.Reflection; using System.Diagnostics; namespace FLY.IntegratedControl.Common { public class ICData : INotifyPropertyChanged { public ICData() { } #region 辅助代码生成 /// /// 进风指示 /// public bool IsInletAirOn { get; set; } /// /// 进风运行频率(Hz)(自动调节) /// public float InletAirFreq { get; set; } /// /// 进风设定频率(Hz) /// public float InletAirFreqSet { get; set; } /// /// 出风指示 /// public bool IsOutletAirOn { get; set; } /// /// 出风运行频率(Hz) /// public float OutletAirFreq { get; set; } /// /// 出风设定频率(Hz) /// public float OutletAirFreqSet { get; set; } /// /// 出风设定频率后通知 /// public bool IsOutletAirFreqChanged { get; set; } /// /// 折径显示(mm) /// public float FilmWidth { get; set; } /// /// 折径设定(mm) /// public float FilmWidthSet { get; set; } /// /// 折径设定后通知 /// public bool IsFilmWidthChanged { get; set; } /// /// 误差校正 /// public float ErrorCorrection { get; set; } /// /// IBC自动 /// public bool IsIBCAuto { get; set; } /// /// 外冷指示 /// public bool IsExCoolOn { get; set; } /// /// 外冷运行频率(Hz) /// public float IsExCoolFreq { get; set; } /// /// 外冷设定频率(Hz) /// public float IsExCoolFreqSet { get; set; } /// /// K1 /// public float K1 { get; set; } /// /// K2 /// public float K2 { get; set; } /// /// K3 /// public float K3 { get; set; } /// /// L /// public float L { get; set; } /// /// 膜泡校正A /// public float BubbleCorrA { get; set; } /// /// 膜泡校正B /// public float BubbleCorrB { get; set; } /// /// 膜泡校正C /// public float BubbleCorrC { get; set; } /// /// 膜泡校正R /// public float BubbleCorrR { get; set; } /// /// 采样周期 /// public float SampleInterval { get; set; } /// /// 区间1设置 /// public float Area1Set { get; set; } /// /// 区间1P /// public float Area1P { get; set; } /// /// 区间1I /// public float Area1I { get; set; } /// /// 区间1D /// public float Area1D { get; set; } /// /// 区间1DI /// public float Area1DI { get; set; } /// /// 调节系数 /// public float AdjustFactor { get; set; } /// /// PID结果 /// public float PIDResult { get; set; } /// /// PID调节 /// public float PIDAdjust { get; set; } /// /// 进风速度 /// public float InletAirVelocity { get; set; } /// /// 出风速度 /// public float OutletAirVelocity { get; set; } /// /// 速度系数 /// public float VelocityFactor { get; set; } /// /// 牵引直径 /// public float TractionDiameter { get; set; } /// /// 牵引速比 /// public float TractionVRatio { get; set; } /// /// 牵引速度(内部) /// public float TractionVelocityInner { get; set; } /// /// 区间2设置 /// public float Area2Set { get; set; } /// /// 区间2P /// public float Area2P { get; set; } /// /// 区间2I /// public float Area2I { get; set; } /// /// 区间2D /// public float Area2D { get; set; } /// /// 传感器1盲区 /// public float Sensor1DeadZone { get; set; } /// /// 传感器2盲区 /// public float Sensor2DeadZone { get; set; } /// /// 传感器3盲区 /// public float Sensor3DeadZone { get; set; } /// /// 传感器1系数 /// public float Sensor1Factor { get; set; } /// /// 传感器2系数 /// public float Sensor2Factor { get; set; } /// /// 传感器3系数 /// public float Sensor3Factor { get; set; } /// /// 外冷额定频率 /// public float ExCoolDefaultFreq { get; set; } /// /// 出风额定频率 /// public float OutletAirDefaultFreq { get; set; } /// /// 进风额定频率 /// public float InletAirDefaultFreq { get; set; } /// /// 牵引额定频率 /// public float TractionDefaultFreq { get; set; } /// /// 旋转额定频率 /// public float RotationDefaultFreq { get; set; } /// /// 牵引速度 /// public float TractionVelocity { get; set; } /// /// 牵引速度设置 /// public float TractionVelocitySet { get; set; } /// /// 主牵引运行指示 /// public bool IsTractionOn { get; set; } /// /// 主牵引开 /// public bool TractionOn { get; set; } /// /// 气垫辊风机运行指示 /// public bool IsAirCushionOn { get; set; } /// /// 气垫辊风机开 /// public bool AirCushionOn { get; set; } /// /// 旋转塔正转指示 /// public bool IsRotaryForw { get; set; } /// /// 旋转塔反转指示 /// public bool IsRotaryBackw { get; set; } /// /// 旋转塔正转 /// public bool RotaryForw { get; set; } /// /// 旋转塔反转 /// public bool RotaryBackw { get; set; } /// /// 旋转塔正向机械限位 /// public bool IsRotaryForwLimit { get; set; } /// /// 旋转塔正转换向限位 /// public bool IsRotaryForwTurn { get; set; } /// /// 旋转塔复位原点限位 /// public bool IsRotaryOrgSign { get; set; } /// /// 旋转塔反转换向限位 /// public bool IsRotaryBackwTurn { get; set; } /// /// 旋转塔反向机械限位 /// public bool IsRotaryBackwLimit { get; set; } /// /// 旋转塔电机频率设定(Hz) /// public float RotaryFreqSet { get; set; } /// /// 旋转塔电机频率显示(Hz) /// public float RotaryFreq { get; set; } /// /// 旋转塔复位指示 /// public bool IsRotaryOrg { get; set; } /// /// 旋转塔复位(┷) /// public bool RotaryOrg { get; set; } /// /// 旋转塔开启指示 /// public bool IsRotaryOn { get; set; } /// /// 旋转塔开启(┷) /// public bool RotaryOn { get; set; } /// /// 故障复位 /// public bool AlarmReset { get; set; } /// /// 进风变频故障报警 /// public bool IsInletAirMotorError { get; set; } /// /// 出风变频故障报警 /// public bool IsOutletAirMotorError { get; set; } /// /// 进风变频通讯报警 /// public bool IsInletAirCommError { get; set; } /// /// 出风变频通讯报警 /// public bool IsOutletAirCommError { get; set; } /// /// 外冷变频故障报警 /// public bool IsExCoolMotorError { get; set; } /// /// 旋转变频故障报警 /// public bool IsRotationMotorError { get; set; } /// /// 牵引变频故障报警 /// public bool IsTractionMotorError { get; set; } /// /// 外冷变频通讯报警 /// public bool IsExCoolCommError { get; set; } /// /// 旋转变频通讯报警 /// public bool IsRotationCommError { get; set; } /// /// 牵引变频通讯报警 /// public bool IsTractionCommError { get; set; } /// /// 风机电源报警 /// public bool IsAirPowerError { get; set; } /// /// 急停开启报警 /// public bool IsEmergencyStopError { get; set; } /// /// 旋转正转极限报警 /// public bool IsRotationForwLimitError { get; set; } /// /// 旋转反转极限报警 /// public bool IsRotationBackwLimitError { get; set; } #endregion public event PropertyChangedEventHandler PropertyChanged; } }