DynArea.cs 3.8 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10
using System;
using System.ComponentModel;

namespace FLY.Thick.Base.Common
{
    /// <summary>
    /// 动态数据,推送当前所有状态
    /// </summary>
    public class DynArea : INotifyPropertyChanged
    {
潘栩锋's avatar
潘栩锋 committed
11
        public DynArea()
潘栩锋's avatar
潘栩锋 committed
12
        {
潘栩锋's avatar
潘栩锋 committed
13

潘栩锋's avatar
潘栩锋 committed
14 15
        }

潘栩锋's avatar
潘栩锋 committed
16 17 18 19 20 21 22
        /// <summary>
        /// 通过 Fody.PropertyChanged 自动调用
        /// OnXXXChanged
        /// </summary>
        /// <param name="before"></param>
        /// <param name="after"></param>
        void OnHrsChanged(object before, object after)
潘栩锋's avatar
潘栩锋 committed
23
        {
潘栩锋's avatar
潘栩锋 committed
24 25 26 27 28 29 30 31 32 33
            SecuteLock = Hrs <= 0;
        }

        #region BASE
        /// <summary>
        /// 
        /// </summary>
        public int Thick {
            get {
                if (double.IsNaN(Thk))
潘栩锋's avatar
潘栩锋 committed
34
                {
潘栩锋's avatar
潘栩锋 committed
35
                    return Misc.MyBase.NULL_VALUE;
潘栩锋's avatar
潘栩锋 committed
36
                }
潘栩锋's avatar
潘栩锋 committed
37 38
                else {
                    return (int)(Thk * 100);
潘栩锋's avatar
潘栩锋 committed
39 40 41
                }
            }
        }
潘栩锋's avatar
1  
潘栩锋 committed
42
        /// <summary>
潘栩锋's avatar
潘栩锋 committed
43
        /// 
潘栩锋's avatar
1  
潘栩锋 committed
44
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
45
        public double Thk { get; set; } = 100.23;
潘栩锋's avatar
潘栩锋 committed
46

潘栩锋's avatar
1  
潘栩锋 committed
47 48 49 50
        /// <summary>
        /// 编码器1 位置 脉冲
        /// </summary>
        public int Position { get; set; }
潘栩锋's avatar
潘栩锋 committed
51

潘栩锋's avatar
1  
潘栩锋 committed
52 53 54 55
        /// <summary>
        /// 分区序号
        /// </summary>
        public int BoltIndex { get; set; }
潘栩锋's avatar
潘栩锋 committed
56

潘栩锋's avatar
1  
潘栩锋 committed
57 58 59
        /// <summary>
        /// 分区号
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
60 61 62 63
        public int BoltNo
        {
            get { return BoltIndex + FirstBoltNo; }
        }
潘栩锋's avatar
潘栩锋 committed
64

潘栩锋's avatar
1  
潘栩锋 committed
65 66 67 68 69 70 71 72
        /// <summary>
        /// AD值
        /// </summary>
        public int AD { get; set; } = 12345;
        /// <summary>
        /// 最大AD值
        /// </summary>
        public int ADMax { get; set; } = 65535;
潘栩锋's avatar
潘栩锋 committed
73 74 75
        #endregion

        #region POSITION2
潘栩锋's avatar
1  
潘栩锋 committed
76 77 78 79 80

        /// <summary>
        /// 编码器2 位置 脉冲
        /// </summary>
        public int Position2 { get; set; }
潘栩锋's avatar
潘栩锋 committed
81
        #endregion
潘栩锋's avatar
潘栩锋 committed
82

潘栩锋's avatar
潘栩锋 committed
83
        #region 扫描
潘栩锋's avatar
1  
潘栩锋 committed
84 85 86 87 88

        /// <summary>
        /// 数据是否有效, 当膜没有动时,为无效。 通过PLC获取,或编码器判断
        /// </summary>
        public bool DataValid { get; set; }
潘栩锋's avatar
潘栩锋 committed
89

潘栩锋's avatar
1  
潘栩锋 committed
90 91 92 93 94 95 96 97 98
        /// <summary>
        /// 膜宽 mm
        /// </summary>
        public double Width { get; set; } = 600;
        /// <summary>
        /// 生产速度 m/min
        /// </summary>
        public double FilmVelocity { get; set; }
        /// <summary>
99 100 101 102
        /// 膜生产位置 m
        /// </summary>
        public double FilmPosition { get; set; }
        /// <summary>
潘栩锋's avatar
1  
潘栩锋 committed
103 104 105
        /// 测厚仪速度 m/min
        /// </summary>
        public double Velocity { get; set; }
潘栩锋's avatar
潘栩锋 committed
106 107 108
        #endregion

        #region 运行状态
109 110 111 112 113 114 115 116 117 118
        /// <summary>
        /// 运行状态
        /// </summary>
        public CTRL_STATE ControllerState { get; set; }

        /// <summary>
        /// 
        /// </summary>
        public int AutoScanCounter { get; set; } = 5;

潘栩锋's avatar
潘栩锋 committed
119 120 121
        #endregion

        #region IO
122 123 124 125 126

        public UInt16 IStatus { get; set; } = 0xffff;

        public UInt16 OStatus { get; set; } = 0xffff;

潘栩锋's avatar
潘栩锋 committed
127 128 129 130 131 132
        #endregion

        #region 系统
        /// <summary>
        /// 系统剩余小时数
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
133 134 135 136 137 138 139 140 141 142 143 144
        public int Hrs { get; set; } = 3;

        /// <summary>
        /// FLYAD 连接状态
        /// </summary>
        public bool FLYADIsConnect { get; set; }

        /// <summary>
        /// 过期, 锁ing
        /// </summary>
        public bool SecuteLock { get; set; }

潘栩锋's avatar
潘栩锋 committed
145 146 147
        #endregion

        #region BOLTMAP 分区信息
潘栩锋's avatar
1  
潘栩锋 committed
148

潘栩锋's avatar
潘栩锋 committed
149 150 151
        /// <summary>
        /// 总分区数
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
152 153
        public int NBolts { get; set; } = 50;

潘栩锋's avatar
潘栩锋 committed
154 155 156
        /// <summary>
        /// 开始分区号
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
157 158
        public int FirstBoltNo { get; set; }

潘栩锋's avatar
潘栩锋 committed
159 160 161 162
        #endregion


        #region INotifyPropertyChanged 成员
163

潘栩锋's avatar
潘栩锋 committed
164 165 166 167 168
        public event PropertyChangedEventHandler PropertyChanged;

        #endregion
    }
}