namespace PBS.WinFrmUI { public class IBoxControllViewModel { /// /// 二供设施 /// public PBS.Vmo.FacilityVmo facilities { get; set; } /// /// 成套设备 /// public HStation.Vmo.AsstesPackageExVmo Package { get; set; } /// /// 机泵型号对象 /// public List equations { get; set; } /// /// 流量扬程定义点 /// public List QHPtList { get; set; } = new List() { new PointF(0,67.68f ), new PointF(3.636f,67.79f), new PointF(7.273f,67.48f), new PointF(10.91f,66.66f), new PointF(14.55f,65.23f), new PointF(18.18f,63.1f ), new PointF(21.82f,60.17f), new PointF(25.45f,56.34f), new PointF(29.09f,51.52f), new PointF(32.73f,45.61f), new PointF(36.36f,38.51f), new PointF(40f,30.14f ), }; /// /// 流量效率定义点 /// public List QEPtList { get; set; }=new(){ new PointF(0, 0f ), new PointF(3.636f,19.01f), new PointF(7.273f,34.72f), new PointF(10.91f,47.69f), new PointF(14.55f,57.94f), new PointF(18.18f,65.5f ), new PointF(21.82f,70.4f), new PointF(25.45f,72.65f), new PointF(29.09f,72.3f), new PointF(32.73f,69.35f), new PointF(36.36f,63.85f), new PointF(40f, 55.8f ), }; /// /// 流量功率定义点 /// public List QPPtList { get; set; } = new(){ new PointF(0, 3.064f ), new PointF(3.636f,3.418f), new PointF(7.273f,3.779f), new PointF(10.91f,4.139f), new PointF(14.55f,4.489f), new PointF(18.18f,4.822f ), new PointF(21.82f,5.128f), new PointF(25.45f,5.4f), new PointF(29.09f,5.628f), new PointF(32.73f,5.805f), new PointF(36.36f,5.921f), new PointF(40f, 5.969f), }; /// /// 流量压降曲线 /// public List 流量压降曲线 { get; set; } /// /// 流量压降下限 /// public List 流量压降下限 { get; set; } /// /// 流量压降上限 /// public List 流量压降上限 { get; set; } /// /// /// public bool IsControll { get; set; } = false; } }