using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Calculation.DispatchAna.Model
{
///
/// 变频泵单频率数据
///
public class AnaCurveItem
{
///
///
///
public IStation.Model.CurveExpress CurveInfoQH;
///
///
///
public IStation.Model.CurveExpress CurveInfoQP;
///
///
///
public double Frequence = 50;
///
///
///
public double Speed { get; set; }
///
///
///
public double WorkPointQ { get; set; }
///
///
///
public double WorkPointH { get; set; }
///
///
///
public double WorkPointP { get; set; }
///
///
///
public double WorkPointE { get; set; }
///
/// 已超过最大扬程
///
public bool IsOverMaxH = false;//
///
/// 是否延长线上
///
public bool IsExtendCurve = false;//
///
/// 备注
///
public string Note { get; set; }//
}
}