Shuxia Ning
2024-08-06 1d5b344c8be498c9989f3fe2e9846b1dcc919cb8
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
namespace IStation.Entity
{
    /// <summary>
    /// 分析偏差
    /// </summary>   
    public class AnalysisDeviation : BaseEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public AnalysisDeviation()
        {
 
        }
 
        /// <summary>
        /// 
        /// </summary>  
        public AnalysisDeviation(AnalysisDeviation rhs)
        {
            this.ID = rhs.ID;
            this.RunFlags = rhs.RunFlags;
            this.RunCount = rhs.RunCount;
            this.MinFlow = rhs.MinFlow;
            this.MaxFlow = rhs.MaxFlow;
            this.CurveDeviation= rhs.CurveDeviation;
            this.ModelDeviation= rhs.ModelDeviation;
            this.DeviationAccuracy = rhs.DeviationAccuracy;
        }
         
        /// <summary>
        /// 运行组合
        /// </summary>
        public string RunFlags { get; set; }
 
        /// <summary>
        /// 运行数量
        /// </summary>
        public int RunCount { get; set; }
 
        /// <summary>
        /// 最小流量
        /// </summary>
        public double MinFlow { get; set; }
 
        /// <summary>
        /// 最大流量
        /// </summary>
        public double MaxFlow { get; set; }
 
        /// <summary>
        /// 曲线偏差
        /// </summary>
        public string CurveDeviation { get; set; }
 
        /// <summary>
        /// 模型偏差
        /// </summary>
        public string ModelDeviation { get; set; }
 
        /// <summary>
        /// 偏差准确度
        /// </summary>
        public double DeviationAccuracy { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public AnalysisDeviation Clone()
        {
            return (AnalysisDeviation)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
 
    }
}