duheng
2025-03-17 df03507ed132eda9d46f95e8fc7046735d6c808e
WinFrmUI/PBS.WinFrmUI/IBoxViewModel/IBoxControllViewModel.cs
@@ -10,12 +10,67 @@
        /// <summary>
        /// 成套设备
        /// </summary>
        public HStation.Vmo.AssetsPackageMainVmo Package { get; set; }
        public HStation.Vmo.AsstesPackageExVmo Package { get; set; }
        /// <summary>
        /// 机泵型号对象,以及曲线
        /// 机泵型号对象
        /// </summary>
        public List<HStation.Vmo.AssetsPumpMainVmo> equations { get; set; }
        /// <summary>
        /// 流量扬程定义点
        /// </summary>
        public List<PointF> QHPtList { get; set; } = new List<PointF>()
        {
             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   ),
        };
        /// <summary>
        /// 流量效率定义点
        /// </summary>
        public List<PointF> 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 ),
        };
        /// <summary>
        /// 流量功率定义点
        /// </summary>
        public List<PointF> 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),
        };
        /// <summary>
        /// 流量压降曲线
@@ -24,7 +79,7 @@
        /// <summary>
        /// 流量压降下限
        /// </summary>
        /// </summary>
        public List<PointF> 流量压降下限 { get; set; }
        /// <summary>
@@ -33,15 +88,9 @@
        public List<PointF> 流量压降上限 { get; set; }
        ///// <summary>
        ///// 插值,拟合
        ///// </summary>
        //public DenseVector coefficients { get; set; }
        /// <summary>
        ///
        ///
        /// </summary>
        public bool IsControll { get; set; } = false;
    }
}
}