duheng
2024-12-04 f7bed326ef5948e76dd1a1b24a9ed10f5b2e5e4e
WinFrmUI/Yw.WinFrmUI.Phart.Core/01-pump/01-single/03-variable-speed/PumpVariableSpeedViewModel.cs
@@ -10,23 +10,19 @@
        {
            this.Id = rhs.Id;
            this.Name = rhs.Name;
            this.CurveName = rhs.CurveName;
            this.RatedQ = rhs.RatedQ;
            this.RatedH = rhs.RatedH;
            this.RatedP = rhs.RatedP;
            this.RatedN = rhs.RatedN;
            this.RatedHz = rhs.RatedHz;
            this.CurrentN = rhs.CurrentN;
            this.CurrentHz  = rhs.CurrentHz;
            this.CurrentColor = rhs.CurrentColor;
            this.RatedHz = rhs.RatedHz;
            this.CurveQH = rhs.CurveQH;
            this.CurveQE = rhs.CurveQE;
            this.CurveQP = rhs.CurveQP;
            this.CurrentCurveQH= rhs.CurrentCurveQH;
            this.CurrentCurveQE= rhs.CurrentCurveQE;
            this.CurrentCurveQP = rhs.CurrentCurveQP;
            this.EquipPoint = rhs.EquipPoint;
            this.CurveQP = rhs.CurveQP;
        }
        /// <summary>
        /// 标识
@@ -37,7 +33,7 @@
        /// 名称
        /// </summary>
        public string Name { get; set; }
        /// <summary>
        /// 名称
        /// </summary>
@@ -68,20 +64,6 @@
        /// </summary>
        public double RatedHz { get; set; }
        /// <summary>
        /// 当前转速
        /// </summary>
        public double CurrentN { get; set; }
        /// <summary>
        /// 当前频率
        /// </summary>
        public double CurrentHz { get; set; }
        /// <summary>
        /// 当前颜色
        /// </summary>
        public Color CurrentColor { get; set; }
        /// <summary>
        /// 流量扬程线
@@ -97,27 +79,16 @@
        /// 流量功率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurveQP { get; set; }
        /// <summary>
        /// 变速项列表
        /// </summary>
        public List<PumpVariableSpeedViewItemViewModel> Items { get; set; }
        /// <summary>
        /// 当前流量扬程线
        /// 颜色
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurrentCurveQH { get; set; }
        /// <summary>
        /// 当前流量效率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurrentCurveQE { get; set; }
        /// <summary>
        /// 当前流量功率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurrentCurveQP { get; set; }
        /// <summary>
        /// 装置点
        /// </summary>
        public Yw.Geometry.Point2d EquipPoint { get; set; }
        public Color Color { get; set; }
    }
}