ningshuxia
2023-06-27 6f8e36ae1d6c41560b2d7692f12c9371a9ccdcf2
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Model
{
    /// <summary>
    /// 能效机泵分析上下文项
    /// </summary>
    public class EtaEnginePumpAnalyContextItem: EtaProductAnalyContextBaseItem
    {
        /// <summary>
        /// 
        /// </summary>
        /// <param name="product"></param>
        public EtaEnginePumpAnalyContextItem(Model.Product product) : base(product)
        {
 
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="pumpCurve"></param>
        public void SetCurveInfo(PumpCurveExMapping pumpCurve)
        {
            if (pumpCurve != null)
            {
                if (pumpCurve.CurveInfo != null)
                {
                    this.CurveQH = pumpCurve.CurveInfo.CurveQH;
                    this.CurveQP = pumpCurve.CurveInfo.CurveQP;
                    this.CurveQE = pumpCurve.CurveInfo.CurveQE;
                }
                if (pumpCurve.PointInfo != null)
                {
                    this.PointQH = pumpCurve.PointInfo.PointQH;
                    this.PointQP = pumpCurve.PointInfo.PointQP;
                    this.PointQE = pumpCurve.PointInfo.PointQE;
                }
            }
        }
        /// <summary>
        /// 额定参数
        /// </summary>
        public Model.Pump RatedParas { get; set; }
 
        /// <summary>
        /// 流量扬程曲线
        /// </summary>
        public Model.CurveExpress CurveQH { get; set; }
 
        /// <summary>
        /// 流量功率曲线
        /// </summary>
        public Model.CurveExpress CurveQP { get; set; }
 
        /// <summary>
        /// 流量效率曲线
        /// </summary>
        public Model.CurveExpress CurveQE { get; set; }
 
        /// <summary>
        /// 流量扬程点集合
        /// </summary>
        public List<Model.CurvePoint> PointQH { get; set; }
 
        /// <summary>
        /// 流量功率点集合
        /// </summary>
        public List<Model.CurvePoint> PointQP { get; set; }
 
        /// <summary>
        /// 流量效率点集合
        /// </summary>
        public List<Model.CurvePoint> PointQE { get; set; }
 
    }
}