wangzelong
2022-09-22 a5d1c559861e75db9568cb0a04d23b229aa66fc0
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace IStation.Application
{
    /// <summary>
    /// 能效热力区间项
    /// </summary>
    public class EtaHeatRectItem
    {
        /// <summary>
        /// 
        /// </summary>
        public EtaHeatRectItem() { }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaHeatRectItem(Model.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; }
 
    }
}