using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CCDCount.MODEL.PlcModel { public class PlcParaModelClass { /// /// 速度模式运行速度 /// public float SpeedModeRunningSpeed { get; set;} /// /// 点动速度 /// public float JogSpeed { get; set;} /// /// 罐装设定值 /// public UInt16 BottValueSet { get; set;} /// /// 中转阀打开速度 /// public float TransferValveOpeningSpeed { get; set;} /// /// 中转阀打开时间 /// public UInt32 TransferValveOpeningTime { get; set;} /// /// 罐装减速值 /// public UInt16 BottingDecelerationValue { get; set;} /// /// 缓存减速值 /// public UInt16 CacheDecelerationValue { get; set;} /// /// 缓存计数延时计时 /// public UInt32 CacheCountDelayTiming { get; set;} /// /// 缓存停机值 /// public UInt16 CacheShutdownValue { get; set;} /// /// 罐装料筒震台高速值 /// public UInt16 BottingMaterialCylinderVibrationTableHighSpeedValue { get; set;} /// /// 罐装过滤震台高速值 /// public UInt16 BottingFilterVibrationTableHighSpeedValue { get; set;} /// /// 罐装计数震台高速值 /// public UInt16 BottingCountVibrationTableHighSpeedValue { get; set;} /// /// 罐装料筒震台减速值 /// public UInt16 BottingMaterialCylinderVibrationTableDecelerationSpeedValue { get; set; } /// /// 罐装过滤震台减速值 /// public UInt16 BottingFilterVibrationTableDecelerationSpeedValue { get; set; } /// /// 罐装计数震台减速值 /// public UInt16 BottingCountVibrationTableDecelerationSpeedValue { get; set; } /// /// 缓存料筒震台高速值 /// public UInt16 CacheMaterialCylinderVibrationTableHighSpeedValue { get; set; } /// /// 缓存过滤震台高速值 /// public UInt16 CacheFilterVibrationTableHighSpeedValue { get; set; } /// /// 缓存计数震台高速值 /// public UInt16 CacheCountVibrationTableHighSpeedValue { get; set; } /// /// 缓存料筒震台减速值 /// public UInt16 CacheMaterialCylinderVibrationTableDecelerationSpeedValue { get; set; } /// /// 缓存过滤震台减速值 /// public UInt16 CacheFilterVibrationTableDecelerationSpeedValue { get; set; } /// /// 缓存计数震台减速值 /// public UInt16 CacheCountVibrationTableDecelerationSpeedValue { get; set; } /// /// 闸板打开延时 /// public UInt32 GateOpeningDelay { get; set; } /// /// 回零偏移值 /// public float ReturnToZeroOffsetValue { get; set; } /// /// 回零偏移速度 /// public float ReturnToZeroOffsetSpeed { get; set; } /// /// 中转阀关闭速度 /// public float TransferValveClosingSpeed { get; set; } /// /// 中转阀开位置 /// public float TransferValveOpenPosition { get; set; } /// /// 中转阀关位置 /// public float TransferValveClosePosition { get; set; } /// /// 气阀开延时 /// public UInt32 AirValveOpeningDelay { get; set; } /// /// 装瓶停机值 /// public UInt16 BottlingShutdownValue { get; set; } /// /// 装瓶停机时间 /// public UInt32 BottlingShutdownTime { get; set; } } }