ningshuxia
2022-11-22 4efe844d9bcc03435cbbeb1aedbda5bf6ebf5912
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application 
{
    /// <summary>
    /// 能效热力区间列表
    /// </summary>
    public class EtaHeatRectList
    {
        /// <summary>
        /// 
        /// </summary>
        public EtaHeatRectList() { }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaHeatRectList(Model.EtaQHETRectList rhs)
        {
            this.Qmax = rhs.Qmax;
            this.Qmin = rhs.Qmin;
            this.Qspace = rhs.Qspace;
            this.Hmax = rhs.Hmax;
            this.Hmin = rhs.Hmin;
            this.Hspace = rhs.Hspace;
            this.Items = rhs.RectList?.Select(x => new EtaHeatRectItem(x)).ToList();
        }
 
        /// <summary>
        /// 最大流量
        /// </summary>
        public double Qmax { get; set; }
 
        /// <summary>
        /// 最小流量
        /// </summary>
        public double Qmin { get; set; }
 
        /// <summary>
        /// 流量刻度间隔
        /// </summary>
        public double Qspace { get; set; }
 
        /// <summary>
        /// 最大扬程
        /// </summary>
        public double Hmax { get; set; }
 
        /// <summary>
        /// 最小扬程
        /// </summary>
        public double Hmin { get; set; }
 
        /// <summary>
        /// 扬程刻度间隔
        /// </summary>
        public double Hspace { get; set; }
 
        /// <summary>
        /// 区间项集合
        /// </summary>
        public List<EtaHeatRectItem> Items { get; set; }
    }
}