using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
/// 能效热力区间列表
|
/// </summary>
|
public class EtaHeatRectList
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public EtaHeatRectList() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public EtaHeatRectList(Model.EtaQHETRectList rhs)
|
{
|
this.Qmax = rhs.Qmax;
|
this.Qmin = rhs.Qmin;
|
this.Qspace = rhs.Qspace;
|
this.Hmax = rhs.Hmax;
|
this.Hmin = rhs.Hmin;
|
this.Hspace = rhs.Hspace;
|
this.Items = rhs.RectList?.Select(x => new EtaHeatRectItem(x)).ToList();
|
}
|
|
/// <summary>
|
/// 最大流量
|
/// </summary>
|
public double Qmax { get; set; }
|
|
/// <summary>
|
/// 最小流量
|
/// </summary>
|
public double Qmin { get; set; }
|
|
/// <summary>
|
/// 流量刻度间隔
|
/// </summary>
|
public double Qspace { get; set; }
|
|
/// <summary>
|
/// 最大扬程
|
/// </summary>
|
public double Hmax { get; set; }
|
|
/// <summary>
|
/// 最小扬程
|
/// </summary>
|
public double Hmin { get; set; }
|
|
/// <summary>
|
/// 扬程刻度间隔
|
/// </summary>
|
public double Hspace { get; set; }
|
|
/// <summary>
|
/// 区间项集合
|
/// </summary>
|
public List<EtaHeatRectItem> Items { get; set; }
|
}
|
}
|