namespace IStation.Model { /// /// 计算出参 /// public class CalcOutput { /// /// 方案列表 /// public List Schemes { get; set; } } /// /// 计算方案 /// public class Scheme { public Scheme() { } public Scheme(Scheme rhs) { this.ID = rhs.ID; this.Q = rhs.Q; this.H = rhs.H; this.P = rhs.P; this.E = rhs.E; this.WP = rhs.WP; this.UWP = rhs.UWP; } /// /// ID /// public string ID { get; set; } /// /// 流量 /// public double Q { get; set; } /// /// 扬程 /// public double H { get; set; } /// /// 功率 /// public double P { get; set; } /// /// 效率 /// public double E { get; set; } /// /// 千吨水能耗 /// public double WP { get; set; } /// /// 单位能耗 /// public double UWP { get; set; } } /// /// 泵信息 /// public class PumpInfo { public PumpInfo() { } public PumpInfo(PumpInfo rhs) { this.ID = rhs.ID; this.Q = rhs.Q; this.H = rhs.H; this.P = rhs.P; this.E = rhs.E; this.HZ = rhs.HZ; } /// /// ID /// public string ID { get; set; } /// /// 流量 /// public double Q { get; set; } /// /// 扬程 /// public double H { get; set; } /// /// 功率 /// public double P { get; set; } /// /// 效率 /// public double E { get; set; } /// /// 频率 /// public double HZ { get; set; } } }