using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.WinFrmUI { /// /// /// public class SimulationPrintEnergyAnalyPipeViewModel { /// /// /// public SimulationPrintEnergyAnalyPipeViewModel() { } /// /// /// public SimulationPrintEnergyAnalyPipeViewModel(Yw.Model.HydroModelInfo hydroInfo, Dictionary allCalcuVisualDict) { this.StartH = hydroInfo.GetHead(); this.PipeQ = hydroInfo.GetPipeQ(allCalcuVisualDict); this.PipeH = hydroInfo.GetPipeHead(allCalcuVisualDict); } /// /// 开始扬程 /// public double StartH { get; set; } /// /// 管道流量 /// public double? PipeQ { get; set; } /// /// 管道扬程 /// public double? PipeH { get; set; } } }