Shuxia Ning
2024-11-06 adf8dc1c7cae1b12f486dcdb3d7daf4a5a59ec52
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
namespace IStation.Dto
{
    /// <summary>
    /// 能效热力区间项
    /// </summary>
    public class EtaAnalyRunHeatRectItemDto
    {
        ///// <summary>
        ///// 
        ///// </summary>
        //public EtaAnalyRunHeatRectItemDto() { }
 
        ///// <summary>
        ///// 
        ///// </summary>
        //public EtaAnalyRunHeatRectItemDto (IStation.EtaQHETRect rhs)
        //{
        //    this.Qmax = rhs.Qmax;
        //    this.Qmin = rhs.Qmin;
        //    this.Hmax = rhs.Hmax;
        //    this.Hmin = rhs.Hmin;
        //    this.Eavg = rhs.Eavg;
        //    this.Tsum = rhs.Tsum;
        //}
 
 
        /// <summary>
        /// 最大流量
        /// </summary>
        public double Qmax { get; set; }
 
        /// <summary>
        /// 最小流量
        /// </summary>
        public double Qmin { get; set; }
 
        /// <summary>
        /// 最大扬程
        /// </summary>
        public double Hmax { get; set; }
 
        /// <summary>
        /// 最小扬程
        /// </summary>
        public double Hmin { get; set; }
 
        /// <summary>
        /// 平均效率
        /// </summary>
        public double Eavg { get; set; }
 
        /// <summary>
        /// 时间 (秒数)
        /// </summary>
        public int Tsum { get; set; }
 
    }
}