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; }
|
|
|
}
|
}
|