lixiaojun
2025-02-17 f4a5f0c3fc24136294eec0153ec0605529243388
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class SimulationPrintEnergyAnalyPipeViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public SimulationPrintEnergyAnalyPipeViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public SimulationPrintEnergyAnalyPipeViewModel(Yw.Model.HydroModelInfo hydroInfo, Dictionary<string, HydroCalcuVisualResult> allCalcuVisualDict)
        {
            this.StartH = hydroInfo.GetHead();
            this.PipeQ = hydroInfo.GetPipeQ(allCalcuVisualDict);
            this.PipeH = hydroInfo.GetPipeHead(allCalcuVisualDict);
        }
 
        /// <summary>
        /// 开始扬程
        /// </summary>
        public double StartH { get; set; }
 
        /// <summary>
        /// 管道流量
        /// </summary>
        public double? PipeQ { get; set; }
 
        /// <summary>
        /// 管道扬程
        /// </summary>
        public double? PipeH { get; set; }
 
 
    }
}