duheng
2025-03-28 9b673ca69c30616b5e5807d665ed8efa2720e1c8
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
using MathNet.Numerics.LinearAlgebra.Double;
 
namespace IBox.WinFrmUI
{
    public class IBoxControllDownloadViewModel
    {
        /// <summary>
        /// 二供设施
        /// </summary>
        public PBS.Vmo.FacilityVmo facilities { get; set; }
 
        /// <summary>
        /// 成套设备
        /// </summary>
        public HStation.Vmo.AsstesPackageExVmo kit { get; set; }
 
        /// <summary>
        /// 机泵型号对象
        /// </summary>
        public List<HStation.Vmo.AssetsPumpMainVmo> equations { get; set; }
 
        /// <summary>
        /// 流量压降曲线
        /// </summary>
        public List<PointF> 流量压降曲线 { get; set; }
 
        /// <summary>
        /// 流量压降下限
        /// </summary>
        public List<PointF> 流量压降下限 { get; set; }
 
        /// <summary>
        /// 流量压降上限
        /// </summary>
        public List<PointF> 流量压降上限 { get; set; }
 
        /// <summary>
        /// 插值,拟合
        /// </summary>
        public DenseVector coefficients { get; set; }
    }
}