using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Reflection;
using System.Diagnostics;
using System.Windows.Media;
namespace FLY.IBC.Common
{
public class IBCData:INotifyPropertyChanged
{
public IBCData()
{
}
#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; }
///
/// 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; }
///
/// 区间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 bool IsInletAirMotorError { get; set; }
///
/// 出风变频故障报警
///
public bool IsOutletAirMotorError { get; set; }
///
/// 进风变频通讯报警
///
public bool IsInletAirCommError { get; set; }
///
/// 出风变频通讯报警
///
public bool IsOutletAirCommError { get; set; }
#endregion
public event PropertyChangedEventHandler PropertyChanged;
}
}