namespace PBS.WinFrmUI.Hydro.Dispatch.Model { /// /// 变频泵单频率数据 /// public class AnaCurveItem { public AnaCurveItem() { } /// /// /// public Yw.Ahart.CubicCurve CurveInfoQH; /// /// /// public Yw.Ahart.CubicCurve CurveInfoQP; /// /// /// public double Frequence = 50; /// /// /// public double Speed { get; set; } /// /// /// public double WorkPointQ { get; set; } /// /// /// public double WorkPointH { get; set; } /// /// /// public double WorkPointP { get; set; } /// /// /// public double WorkPointE { get; set; } /// /// 已超过最大扬程 /// public bool IsOverMaxH = false;// /// /// 是否延长线上 /// public bool IsExtendCurve = false;// /// /// 延长比例 /// public double RatioExtend { get; set; } /// /// 备注 /// public string Note { get; set; } /// /// 1 正常 2 超过所需扬程 /// public int Status { get; set; } = 1; } }