178 lines
4.8 KiB
C#
178 lines
4.8 KiB
C#
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.Models
|
|
{
|
|
/// <summary>
|
|
/// 储能分析
|
|
/// 总充电量和总放电量通过PCS统计
|
|
/// 在储能柜体中加装电表的可以使用这个统计数据信息
|
|
/// </summary>
|
|
public class EsAnalyse : BindableBase
|
|
{
|
|
/// <summary>
|
|
/// 一天的开始0时充电量数据
|
|
/// </summary>
|
|
public double DayStartPointChargPw { get; set; }
|
|
|
|
/// <summary>
|
|
/// 一天的开始0时放电量数据
|
|
/// </summary>
|
|
public double DayStartPointDisChargPw { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 月度的开始1号充电量数据
|
|
/// </summary>
|
|
public double MonthStartPointChargPw { get; set; }
|
|
|
|
/// <summary>
|
|
/// 月度的开始1号充电量数据
|
|
/// </summary>
|
|
public double MonthStartPointDisChargPw { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 年的开始1号充电量数据
|
|
/// </summary>
|
|
public double YearStartPointChargPw { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年的开始1号充电量数据
|
|
/// </summary>
|
|
public double YearStartPointDisChargPw { get; set; }
|
|
|
|
/// <summary>
|
|
/// ////////////////////////////////////收益数据////////////////////////////////////////////
|
|
/// </summary>
|
|
|
|
|
|
private int _DayRevenue;
|
|
/// <summary>
|
|
/// 储能 今日收益
|
|
/// </summary>
|
|
public int DayRevenue
|
|
{
|
|
get { return _DayRevenue; }
|
|
set { _DayRevenue = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private int _MonthRevenue;
|
|
/// <summary>
|
|
/// 储能 本月收益
|
|
/// </summary>
|
|
public int MonthRevenue
|
|
{
|
|
get { return _MonthRevenue; }
|
|
set { _MonthRevenue = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private int _TotalRevenue;
|
|
/// <summary>
|
|
/// 储能 累计收益
|
|
/// </summary>
|
|
public int TotalRevenue
|
|
{
|
|
get { return _TotalRevenue; }
|
|
set { _TotalRevenue = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// ////////////////////////////////////储能充电量////////////////////////////////////////////
|
|
/// </summary>
|
|
|
|
|
|
private double _DayChargPw;
|
|
/// <summary>
|
|
/// 储能 日充电量 kWh
|
|
/// </summary>
|
|
public double DayChargPw
|
|
{
|
|
get { return _DayChargPw; }
|
|
set { _DayChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _MonthChargPw;
|
|
/// <summary>
|
|
/// 储能 月充电量 kWh
|
|
/// </summary>
|
|
public double MonthChargPw
|
|
{
|
|
get { return _MonthChargPw; }
|
|
set { _MonthChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _YearChargPw;
|
|
/// <summary>
|
|
/// 储能 年充电量 kWh
|
|
/// </summary>
|
|
public double YearChargPw
|
|
{
|
|
get { return _YearChargPw; }
|
|
set { _YearChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _TotalChargPw;
|
|
/// <summary>
|
|
/// 储能 总充电量 kWh
|
|
/// </summary>
|
|
public double TotalChargPw
|
|
{
|
|
get { return _TotalChargPw; }
|
|
set { _TotalChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// ////////////////////////////////////储能放电量////////////////////////////////////////////
|
|
/// </summary>
|
|
|
|
|
|
private double _DayDisChargPw;
|
|
/// <summary>
|
|
/// 储能 日放电量 kWh
|
|
/// </summary>
|
|
public double DayDisChargPw
|
|
{
|
|
get { return _DayDisChargPw; }
|
|
set { _DayDisChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _MonthDisChargPw;
|
|
/// <summary>
|
|
/// 储能 月放电量 kWh
|
|
/// </summary>
|
|
public double MonthDisChargPw
|
|
{
|
|
get { return _MonthDisChargPw; }
|
|
set { _MonthDisChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _YearDisChargPw;
|
|
/// <summary>
|
|
/// 储能 年放电量 kWh
|
|
/// </summary>
|
|
public double YearDisChargPw
|
|
{
|
|
get { return _YearDisChargPw; }
|
|
set { _YearDisChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _TotalDisChargPw;
|
|
/// <summary>
|
|
/// 储能 总放电量 kWh
|
|
/// </summary>
|
|
public double TotalDisChargPw
|
|
{
|
|
get { return _TotalDisChargPw; }
|
|
set { _TotalDisChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
}
|
|
}
|