| | |
| | | #endregion 曲线 |
| | | |
| | | #region 变速曲线 |
| | | |
| | | this.pumpVariableSpeedInfoCtrl1.SetEvent += (id, qh, qe, qp) => |
| | | |
| | | this.pumpVariableSpeedInfoCtrl1.SetEvent += (id, hz, ex_ratio, qh, qe, qp) => |
| | | { |
| | | this.pumpVariableSpeedChart1.Set(id, qh, qe, qp); |
| | | this.pumpVariableSpeedChart1.Set(id, hz, ex_ratio, qh, qe, qp); |
| | | ResetSectPointGrid(); |
| | | }; |
| | | |
| | | this.pumpVariableSpeedInfoCtrl1.SetInfoEvent += (id, name, color) => |
| | | this.pumpVariableSpeedInfoCtrl1.SetInfoEvent += (id, color) => |
| | | { |
| | | this.pumpVariableSpeedChart1.SetInfo(id, name, color); |
| | | this.pumpVariableSpeedChart1.SetInfo(id, color); |
| | | ResetSectPointGrid(); |
| | | }; |
| | | |
| | |
| | | |
| | | this.pumpVariableSpeedInfoCtrl1.SetDesignPointEvent += (q, h) => |
| | | { |
| | | this.pumpVariableSpeedChart1.SetDesignPt(new Yw.Geometry.Point2d(q, h)); |
| | | this.pumpVariableSpeedChart1.SetDesignPt(q,h); |
| | | ResetSectPointGrid(); |
| | | }; |
| | | |