ningshuxia
2025-03-13 982cde7e9372dc218f23b204265d8e54f7e9ce4f
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
using ISupply.BLL;
using ISupply.WinFrmUI.Basic;
using MathNet.Numerics.LinearAlgebra.Double;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace PBS.WinFrmUI
{
    public class EboxControllViewModel
    {
        public bool IsControll { get; set; } = false;
        /// <summary>
        /// 二供设施对象
        /// </summary>
        public PBS.Vmo.FacilityVmo facilities { get; set; }
 
        /// <summary>
        /// 成套设备对象
        /// </summary>
        public HStation. kit { get; set; }
 
        /// <summary>
        /// 机泵型号对象,以及曲线
        /// </summary>
        public List<Model.EquipmentTypeEChartMappingEx> 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; }
        public EboxControllViewModel()
        {
            equations = new List<Model.EquipmentTypeEChartMappingEx>();
        }
    }
}