WinderAccessory.cs 8.81 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

using System.ComponentModel;

namespace FLY.Winder.Common
{
    public class WinderAccessory : INotifyPropertyChanged
    {
        public WinderAccessory()
        {

        }

        #region 辅助代码生成
        /// <summary>
        /// 设定速度(m/min)
        /// </summary>
        public float VelocitySet { get; set; }

        /// <summary>
        /// 速度确定(┷)
        /// </summary>
        public bool IsVelocityChanged { get; set; }

        /// <summary>
        /// 速度显示(m/min)
        /// </summary>
        public float Velocity { get; set; }

        /// <summary>
        /// 上牵引电机电流(A)
        /// </summary>
        public float Traction1Current { get; set; }

        /// <summary>
        /// 上牵引开启显示
        /// </summary>
        public bool IsTraction1On { get; set; }

        /// <summary>
        /// 上牵引开启设置
        /// </summary>
        public bool IsTraction1OnSet { get; set; }

        /// <summary>
        /// 二牵引设定张力(kg)
        /// </summary>
        public float Traction2TensionKgSet { get; set; }

        /// <summary>
        /// 二牵引实际张力(kg)
        /// </summary>
        public float Traction2TensionKg { get; set; }

        /// <summary>
        /// 二牵引电机电流(A)
        /// </summary>
        public float Traction2Current { get; set; }

        /// <summary>
        /// 二牵引手动
        /// </summary>
        public bool IsTraction2Manual { get; set; }

        /// <summary>
        /// 二牵引开启显示
        /// </summary>
        public bool IsTraction2On { get; set; }

        /// <summary>
        /// 二牵引开启设置
        /// </summary>
        public bool IsTraction2OnSet { get; set; }

        /// <summary>
        /// 旋转塔正转
        /// </summary>
        public bool IsRotaryForw { get; set; }

        /// <summary>
        /// 旋转塔反转
        /// </summary>
        public bool IsRotaryBackw { get; set; }

        /// <summary>
        /// 旋转塔正向机械限位
        /// </summary>
        public bool IsRotaryForwLimit { get; set; }

        /// <summary>
        /// 旋转塔正转换向限位
        /// </summary>
        public bool IsRotaryForwTurn { get; set; }

        /// <summary>
        /// 旋转塔复位原点限位
        /// </summary>
        public bool IsRotaryOrgSign { get; set; }

        /// <summary>
潘栩锋's avatar
潘栩锋 committed
100
        /// 旋转塔反转换向限位
潘栩锋's avatar
潘栩锋 committed
101
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
102
        public bool IsRotaryBackwTurn { get; set; }
潘栩锋's avatar
潘栩锋 committed
103 104

        /// <summary>
潘栩锋's avatar
潘栩锋 committed
105
        /// 旋转塔反向机械限位
潘栩锋's avatar
潘栩锋 committed
106
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
107
        public bool IsRotaryBackwLimit { get; set; }
潘栩锋's avatar
潘栩锋 committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333

        /// <summary>
        /// 旋转塔电机频率设定(Hz)
        /// </summary>
        public float RotaryFreqSet { get; set; }

        /// <summary>
        /// 旋转塔电机频率确定
        /// </summary>
        public bool IsRotaryFreqChanged { get; set; }

        /// <summary>
        /// 旋转塔电机频率显示(Hz)
        /// </summary>
        public float RotaryFreq { get; set; }

        /// <summary>
        /// 旋转塔电机电流(A)
        /// </summary>
        public float RotaryCurrent { get; set; }

        /// <summary>
        /// 旋转塔复位指示
        /// </summary>
        public bool IsRotaryOrg { get; set; }

        /// <summary>
        /// 旋转塔复位(┷)
        /// </summary>
        public bool RotaryOrg { get; set; }

        /// <summary>
        /// 旋转塔开启指示
        /// </summary>
        public bool IsRotaryOn { get; set; }

        /// <summary>
        /// 旋转塔开启(┷)
        /// </summary>
        public bool RotaryOn { get; set; }

        /// <summary>
        /// 一牵引调试On
        /// </summary>
        public bool IsTraction1Debug { get; set; }

        /// <summary>
        /// 一牵引辊筒直径
        /// </summary>
        public float Traction1RollerD { get; set; }

        /// <summary>
        /// 一牵引传动速比
        /// </summary>
        public float Traction1GearRatio { get; set; }

        /// <summary>
        /// 一牵引同步速度
        /// </summary>
        public float Traction1SyncV { get; set; }

        /// <summary>
        /// 一牵引实际速度
        /// </summary>
        public float Traction1Velocity { get; set; }

        /// <summary>
        /// 二牵引张力反馈
        /// </summary>
        public float Traction2Tension { get; set; }

        /// <summary>
        /// 二牵引张力设定
        /// </summary>
        public float Traction2TensionSet { get; set; }

        /// <summary>
        /// 二牵引增益设定
        /// </summary>
        public float Traction2Gain { get; set; }

        /// <summary>
        /// 二牵引积分时间
        /// </summary>
        public float Traction2ITime { get; set; }

        /// <summary>
        /// 二牵引调节系数
        /// </summary>
        public float Traction2Factor { get; set; }

        /// <summary>
        /// 二牵引辊筒直径
        /// </summary>
        public float Traction2RollerD { get; set; }

        /// <summary>
        /// 二牵引传动速比
        /// </summary>
        public float Traction2GearRatio { get; set; }

        /// <summary>
        /// 二牵引PID结果
        /// </summary>
        public float Traction2PIDResult { get; set; }

        /// <summary>
        /// 二牵引PID调节
        /// </summary>
        public float Traction2PIDAdjust { get; set; }

        /// <summary>
        /// 二牵引同步速度
        /// </summary>
        public float Traction2SyncV { get; set; }

        /// <summary>
        /// 二牵引实际速度
        /// </summary>
        public float Traction2Velocity { get; set; }

        /// <summary>
        /// 速度系数
        /// </summary>
        public float VelocityFactor { get; set; }

        /// <summary>
        /// 加减时间
        /// </summary>
        public float AccDecTime { get; set; }

        /// <summary>
        /// 二牵引升降增益
        /// </summary>
        public float Traction2LiftGain { get; set; }

        /// <summary>
        /// 张力检测设定
        /// </summary>
        public float TensionDetection { get; set; }

        /// <summary>
        /// 收卷计米辊周长(mm)
        /// </summary>
        public float WinderMeasurePerimeter { get; set; }

        /// <summary>
        /// 张力检测量程(kg)
        /// </summary>
        public float TensionDetectionRange { get; set; }

        /// <summary>
        /// 主牵引风机过载报警!!!请检查(OFF)
        /// </summary>
        public bool IsError_Traction1Fan { get; set; }

        /// <summary>
        /// 主牵引变频故障报警!!!请检查(OFF)
        /// </summary>
        public bool IsError_Traction1VFD { get; set; }

        /// <summary>
        /// 二牵引变频故障报警!!!请检查(OFF)
        /// </summary>
        public bool IsError_Traction2VFD { get; set; }

        /// <summary>
        /// 二牵引风机过载报警!!!请检查(OFF)
        /// </summary>
        public bool IsError_Traction2Fan { get; set; }

        /// <summary>
        /// 旋转塔变频故障报警!!!请检查(OFF)
        /// </summary>
        public bool IsError_RotaryVFD { get; set; }

        /// <summary>
        /// 旋转塔风机过载报警!!!请检查(OFF)
        /// </summary>
        public bool IsError_RotaryFan { get; set; }

        /// <summary>
        /// 二牵引拉线急停开启!!!请复位(OFF)
        /// </summary>
        public bool IsError_Traction2Scram { get; set; }

        /// <summary>
        /// 电柜急停开启!!!请复位(OFF)
        /// </summary>
        public bool IsError_Scram { get; set; }

        /// <summary>
        /// 主牵引拉线急停开启!!!请复位(OFF)
        /// </summary>
        public bool IsError_Traction1Scram { get; set; }

        /// <summary>
        /// 客户急停开启!!!请复位(OFF)
        /// </summary>
        public bool IsError_CustomerScram { get; set; }

        /// <summary>
        /// 旋转塔正转已到极限位!!!请检查(OFF)
        /// </summary>
        public bool IsError_RotaryForwLimit { get; set; }

        /// <summary>
        /// 旋转塔反转已到极限位!!!请检查(OFF)
        /// </summary>
        public bool IsError_RotaryBackwLimit { get; set; }

        /// <summary>
        /// 转塔正向极限锁定!!!请解除(ON)
        /// </summary>
        public bool IsError_RotaryForwLock { get; set; }

        /// <summary>
        /// 转塔反向极限锁定!!!请解除(ON)
        /// </summary>
        public bool IsError_RotaryBackwLock { get; set; }

        #endregion

        public event PropertyChangedEventHandler PropertyChanged;
    }
}