namespace HStation.WinFrmUI
{
public class ReportViewModel
{
public ReportViewModel()
{ }
///
/// 项目名称
///
public string ProjectName { get; set; }
///
/// 项目概述
///
public string Description { get; set; }
///
/// 报告类型
///
public string ReportType { get; set; }
///
/// 设备基本配置
///
public List Equipments { get; set; }
///
/// 泵站运行状况
///
public List PumpStations { get; set; }
///
/// 运行情况及能耗统计
///
public List PowerConsumptionInfos { get; set; }
///
/// 阀门开度
///
public List ValveOpens { get; set; }
///
/// 技改后设备配置情况
///
public List AfterEquipments { get; set; }
///
/// 技改后设备预计运行状况
///
public List AfterPumpStations { get; set; }
///
/// 技改后运行情况及能耗统计
///
public List AfterPowerConsumptionInfos { get; set; }
///
/// 节电计算汇总
///
public List PowerRelatedInfos { get; set; }
///
/// 技改节电表
///
public List AfterEquipmentPowers { get; set; }
}
///
/// 设备基本配置
///
public class ReportEquipmentViewModel
{
public ReportEquipmentViewModel()
{ }
///
/// 设备名称
///
public string EquipmentName { get; set; }
///
/// 设备位号
///
public string EquipmentNumber { get; set; }
///
/// 设备型号
///
public string EquipmentMainName { get; set; }
///
/// 台数
///
public string Count { get; set; }
///
/// 额定流量
///
public string RatedFlow { get; set; }
///
/// 额定扬程
///
public string RatedHead { get; set; }
///
/// 驱动方式
///
public string TypeOfDrive { get; set; }
///
/// 额定电压
///
public string RatedVoltage { get; set; }
///
/// 额定电流
///
public string RatedCurrent { get; set; }
///
/// 额定功率
///
public string RatedPower { get; set; }
///
/// 额定因数
///
public string RatedFactor { get; set; }
///
/// 转速
///
public string Speed { get; set; }
}
///
/// 泵站运行状况
///
public class ReportPumpStationViewModel
{
///
/// 设备名称
///
public string EquipmentName { get; set; }
///
/// 设备位号
///
public string EquipmentNumber { get; set; }
///
/// 出口压力/标高
///
public string OutletPressure { get; set; }
///
/// 出口阀门开度
///
public string OutletValveOpening { get; set; }
///
/// 运行电流
///
public string RunningCurrent { get; set; }
///
/// 功率
///
public string Power { get; set; }
///
/// 总管流量
///
public string TotalFlow { get; set; }
///
/// 供水压力
///
public string SuppyPressure { get; set; }
///
/// 回水压力
///
public string ReturnPressure { get; set; }
}
///
/// 运行情况及能耗统计
///
public class PowerConsumptionInfo
{
///
/// 运行模式
///
public string RunMode { get; set; }
///
/// 技改前实耗功率,单位为kW,
///
public string PreTechPowerConsumption { get; set; }
///
/// 年运行时间,单位为小时,
///
public string AnnualRunningHours { get; set; }
///
/// 年耗电量,单位为万kW·h,
///
public string AnnualPowerConsumption { get; set; }
}
///
/// 阀门开度
///
public class ValveOpen
{
///
/// 开度
///
public string Name { get; set; }
///
/// 系数
///
public string MinorLoss { get; set; }
}
///
/// 节电计算汇总
///
public class PowerRelatedInfo
{
///
/// 运行模式
///
public string RunMode { get; set; }
///
/// 技改前实耗功率
///
public string PreTechPowerConsumption { get; set; }
///
/// 技改后设计功率
///
public string PostTechDesignedPower { get; set; }
///
/// 小时节电量
///
public string HourlyPowerSaving { get; set; }
///
/// 节电率
///
public string PowerSavingRate { get; set; }
///
/// 运行时间
///
public string RunningTime { get; set; }
}
///
/// 技改节电表
///
public class EquipmentPowerInfo
{
///
/// 设备名称
///
public string EquipmentName { get; set; }
///
/// 技改前年耗电量(万度/年)
///
public string PowerConsumptionBeforeTech { get; set; }
///
/// 节电率(%)
///
public string PowerSavingRate { get; set; }
///
/// 改后年节电量(万度/年)
///
public string AnnualPowerSavingAfterTech { get; set; }
}
}