lixiaojun
2025-03-02 4ce9d8c856dc2f0e580e92b74f399c80f27f080a
WinFrmUI/HStation.WinFrmUI.PhartRelation.Core/01-pump/03-import/03-point/PumpChartPointImportCtrl.cs
@@ -15,7 +15,7 @@
        /// </summary>  
        public void SetBindingData(double flow, double head, double n, double eff, double level = 1, bool is_sxp = false)
        {
            this.pumpChartPointImportCtrl1.SetBindingData(flow,eff,n,eff,level,is_sxp);
            this.pumpChartPointImportCtrl1.SetBindingData(flow, eff, n, eff, level, is_sxp);
        }
@@ -44,12 +44,13 @@
            {
                new ()
                {
                      Name ="扬程线",
                      GraphType =(int)Yw.Ahart.eCurveType.QH,
                      GraphParas= new HStation.Model.QHGraphParasModel()
                      GraphParas= new QHGraphParasViewModel()
                      {
                          Hz=50,
                      }.ToJson(),
                      GeometryParas= new HStation.Model.FeatCurveGeometryParasModel
                      GeometryParas= new Yw.WinFrmUI.Phart.CurveGeometryParasViewModel
                        {
                            DefinePoints = def_qh_pt_list
                        }.ToJson(),
@@ -58,12 +59,13 @@
                },
                new ()
                {
                      Name ="效率线",
                      GraphType =(int)Yw.Ahart.eCurveType.QE,
                        GraphParas= new HStation.Model.QEGraphParasModel()
                        GraphParas= new QEGraphParasViewModel()
                      {
                          Hz=50,
                      }.ToJson(),
                      GeometryParas= new HStation.Model.FeatCurveGeometryParasModel
                      GeometryParas= new Yw.WinFrmUI.Phart.CurveGeometryParasViewModel
                        {
                            DefinePoints = def_qe_pt_list
                        }.ToJson(),
@@ -72,12 +74,13 @@
                },
                new ()
                {
                      GraphType =(int)Yw.Ahart.eCurveType.QP,
                          GraphParas= new HStation.Model.QPGraphParasModel()
                     Name ="功率线",
                     GraphType =(int)Yw.Ahart.eCurveType.QP,
                          GraphParas= new QPGraphParasViewModel()
                      {
                          Hz=50,
                      }.ToJson(),
                      GeometryParas= new HStation.Model.FeatCurveGeometryParasModel
                      GeometryParas= new Yw.WinFrmUI.Phart.CurveGeometryParasViewModel
                        {
                            DefinePoints = def_qp_pt_list
                        }.ToJson(),
@@ -87,7 +90,7 @@
            };
            return vmo;
        }
        }
    }