cloudflight
2024-06-08 970022ca59c5c22cf572c458c01e0328be85a253
Hydraulic/Hydro.MapView/Model/PumpViewModel.cs
@@ -26,7 +26,7 @@
            get { return base.Name; }
            set { base.Name = value; }
        }
        [Category("1、基本信息")]
        [Category("基本信息")]
        [DisplayName("水泵类型")]
        public new PumpType Type { get; set; }
@@ -34,20 +34,20 @@
        public dict<string, Dataset> Datasets { get; set; } = new dict<string, Dataset>();
        [Category("2、计算参数")]
        [Category("计算参数")]
        public double 额定转速 { get; set; } = 1500;
        [Category("2、计算参数")]
        [Category("计算参数")]
        public double 额定流量 { get; set; } = 200;
        [Category("2、计算参数")]
        [Category("计算参数")]
        public double 额定扬程 { get; set; } = 50;
        [Category("2、计算参数")]
        [Category("计算参数")]
        public double 额定功率 { get; set; } = 75;
        public double 转速比 { get; set; } = 1;
        [DisplayName("2)当前转速")]
        [Category("2、计算参数")]
        [DisplayName("当前转速")]
        [Category("计算参数")]
        public double 当前转速 { get; set; } = 1500;
        [Browsable(false)]
@@ -530,8 +530,8 @@
            return series;
        }
        [Category("2、计算参数")]
        [DisplayName("3)流量扬程曲线")]
        [Category("计算参数")]
        [DisplayName("流量扬程曲线")]
        public List<PointF> HeadCurvePoints
        {
            get
@@ -554,8 +554,8 @@
            }
        }
        [Category("2、计算参数")]
        [DisplayName("4)流量效率曲线")]
        [Category("计算参数")]
        [DisplayName("流量效率曲线")]
        public List<PointF> EfficCurvePoints
        {
            get
@@ -585,8 +585,8 @@
        public List<string> Parameters { get; set; }
        //实际需水量
        [Category("3、计算结果")]
        [DisplayName("2)扬程")]
        [Category("计算结果")]
        [DisplayName("扬程")]
        [Browsable(true)]
        public new float EN_HEADLOSS { get { return -base.EN_HEADLOSS; } }