ÎļþÃû´Ó WinFrmUI/Yw.WinFrmUI.Phart.Core/01-perform/01-pump-chart/01-chart/02-variable-speed/PumpVariableSpeedViewModel.cs ÐÞ¸Ä |
| | |
| | | { |
| | | public class PumpVariableSpeedViewModel |
| | | { |
| | | public PumpVariableSpeedViewModel() { } |
| | | public PumpVariableSpeedViewModel(PumpVariableSpeedViewModel rhs) |
| | | { |
| | | this.Id = rhs.Id; |
| | | this.Name = rhs.Name; |
| | | this.IsBp = rhs.IsBp; |
| | | this.RatedSpeed = rhs.RatedSpeed; |
| | | this.CurrentSpeed = rhs.CurrentSpeed; |
| | | this.CurrentHz = rhs.CurrentHz; |
| | | this.Qh = rhs.Qh; |
| | | this.Qe = rhs.Qe; |
| | | this.Qp = rhs.Qp; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// æ è¯ |
| | | /// </summary> |
| | |
| | | /// <summary> |
| | | /// åç§° |
| | | /// </summary> |
| | | public string Name { get; set; } |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é¢è² |
| | | /// æ¯å¦åé¢ |
| | | /// </summary> |
| | | public Color Color { get; set; } |
| | | public bool IsBp { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é¢å®è½¬é |
| | | /// </summary> |
| | | public double RatedSpeed { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å½å转é |
| | | /// </summary> |
| | | public double CurrentSpeed { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å½åé¢ç |
| | | /// </summary> |
| | | public double CurrentHz { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æµéæ¬ç¨çº¿ |
| | | /// </summary> |
| | |
| | | /// æµéåç线 |
| | | /// </summary> |
| | | public Yw.Geometry.CubicSpline2d Qp { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æµéæ¬ç¨å®ä¹ç¹ |
| | | /// </summary> |
| | | public List<Yw.Geometry.Point2d> QhDefiningPoints { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æµéæçå®ä¹ç¹ |
| | | /// </summary> |
| | | public List<Yw.Geometry.Point2d> QeDefiningPoints { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æµéåçå®ä¹ç¹ |
| | | /// </summary> |
| | | public List<Yw.Geometry.Point2d> QpDefiningPoints { get; set; } |
| | | |
| | | |
| | | } |
| | | |