using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CCDCount.MODEL.PlcModel { public class PlcParaModelClass { /// /// 罐装模式 /// public ushort FillingMode { get; set; } /// /// 传送带速度 /// public ushort BeltsSpeed { get; set;} /// /// 罐装料筒震台高速值 /// public ushort ShakeTable1H_FillingSpeed { get; set;} /// /// 罐装过滤震台高速值 /// public ushort ShakeTable2H_FillingSpeed { get; set;} /// /// 罐装计数震台高速值 /// public ushort ShakeTable3H_FillingSpeed { get; set;} /// /// 罐装料筒震台减速值 /// public ushort ShakeTable1M_FillingSpeed { get; set; } /// /// 罐装过滤震台减速值 /// public ushort ShakeTable2M_FillingSpeed { get; set; } /// /// 罐装计数震台减速值 /// public ushort ShakeTable3M_FillingSpeed { get; set; } /// /// 罐装料筒震台低速值 /// public ushort ShakeTable1L_FillingSpeed { get; set; } /// /// 罐装过滤震台低速值 /// public ushort ShakeTable2L_FillingSpeed { get; set; } /// /// 罐装计数震台低速值 /// public ushort ShakeTable3L_FillingSpeed { get; set; } /// /// 缓存料筒震台高速值 /// public ushort ShakeTable1H_CacheSpeed { get; set; } /// /// 缓存过滤震台高速值 /// public ushort ShakeTable2H_CacheSpeed { get; set; } /// /// 缓存计数震台高速值 /// public ushort ShakeTable3H_CacheSpeed { get; set; } /// /// 缓存料筒震台减速值 /// public ushort ShakeTable1M_CacheSpeed { get; set; } /// /// 缓存过滤震台减速值 /// public ushort ShakeTable2M_CacheSpeed { get; set; } /// /// 缓存计数震台减速值 /// public ushort ShakeTable3M_CacheSpeed { get; set; } /// /// 缓存料筒震台低速值 /// public ushort ShakeTable1L_CacheSpeed { get; set; } /// /// 缓存过滤震台低速值 /// public ushort ShakeTable2L_CacheSpeed { get; set; } /// /// 缓存计数震台低速值 /// public ushort ShakeTable3L_CacheSpeed { get; set; } /// /// 罐装高速区间 /// public ushort FillingH_SpeedRatio { get; set; } /// /// 罐装减速区间 /// public ushort FillingM_SpeedRatio { get; set; } /// /// 罐装低速区间 /// public ushort FillingL_SpeedRatio { get; set; } /// /// 缓存高速区间 /// public ushort CacheH_SpeedRatio { get; set; } /// /// 缓存减速区间 /// public ushort CacheM_SpeedRatio { get; set; } /// /// 缓存低速区间 /// public ushort CacheL_SpeedRatio { get; set; } /// /// 传动轴点动速度 /// public double ScrewJogSpeed { get; set; } /// /// 进瓶速度 /// public double InBottleSpeed { get; set; } /// /// 传动轴绝对定位速度 /// public double BottlePosSpeed { get; set; } /// /// 传动轴绝对定位位置 /// public double BottlePosPosition { get; set; } /// /// 中转阀打开速度 /// public double FillingValveOpenSpeed { get; set; } /// /// 中转阀打开位置 /// public double FillingValveOpenPosition { get; set; } /// /// 中转阀关闭速度 /// public double FillingValveCloseSpeed { get; set; } /// /// 中转阀关位置 /// public double FillingValveClosePosition { get; set; } /// /// 中转阀缓存速度 /// public double FillingValveCacheSpeed { get; set; } /// /// 中转阀缓存位置 /// public double FillingValueCachePosition { get; set; } /// /// 中转阀点动速度 /// public double FillingValueJogSpeed { get;set; } /// /// 漏斗下降延时 /// public ushort MachineDelayFunneDownTime { get; set; } /// /// 漏斗上升延时 /// public ushort MachineDelayFunneUpTime { get; set; } /// /// 中转阀打开延时 /// public ushort MachineDelayFillingValveOpenTime { get; set; } /// /// 中转阀关闭延时 /// public ushort MachineDelayFillingValveCloseTime { get; set; } /// /// 进瓶延时 /// public ushort MachineDelayInBottleTime { get; set; } /// /// 气动闸板延时 /// public ushort ValveDelytime { get; set; } /// /// 缺瓶检测时间 /// public ushort MissingDelaytime { get; set; } /// /// 堵瓶检测时间 /// public ushort BottleJamDelaytime { get; set; } /// /// 剔废气缸延时时间 /// public ushort EliminateCylinderDelayTime { get; set; } /// /// 剔废气缸保持时间 /// public ushort EliminateCylinderHoldingTime { get; set; } /// /// 缺料停机延时 /// public ushort MaterialShortageStoppageDelayTime { get; set; } /// /// 料筒震台测试速度 /// public ushort ShakeTable1_TestSpeed { get; set; } /// /// 缓存震台测试速度 /// public ushort ShakeTable2_TestSpeed { get; set; } /// /// 计数震台测试速度 /// public ushort ShakeTable3_TestSpeed { get; set; } /// /// 罐装设定值 /// public ushort BottValueSet { get; set; } /// /// 缓存停机值 /// public ushort CacheShutdownValue { get; set; } /// /// 装瓶数量 /// public ushort BottleCounting { get; set; } /// /// 缺瓶停机开始时间 /// public ushort MissBottleReSestart { get; set; } /// /// 拦放瓶时间 /// public ushort BottleStopPassTime { get; set; } /// /// 报警时间 /// public ushort BuzzerTime { get; set; } /// /// 缓存震台速比 /// public ushort CacheDecelerateProportion { get; set; } } }