using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IntelligentControlForsx.Service.AGC.Domain
{
public class AgcEntity
{
///
/// 风场名称
///
public string StationName { set; get; }
///
/// 有功设定限值
///
public double PowerSetValue { set; get; }
///
/// 有功设定统一编码
///
public string PowerSetCode { set; get; }
///
/// agc可调上限
///
public double AgcUp { set; get; }
///
/// agc可调上限统一编码
///
public string AgcUpCode { set; get; }
///
/// agc可调下限
///
public double AgcLower { set; get; }
///
/// agc可调下限统一编码
///
public string AgcLowerCode { set; get; }
///
/// 实发有功
///
public double ActualPowerValue { set; get; }
///
/// 实发有功统一编码
///
public string ActualPowerCode { set; get; }
///
/// 理论功率
///
public double TheoryPower { set; get; }
///
/// 理论功率统一编码
///
public string TheoryPowerCode { set; get; }
///
/// 预测功率
///
public double ForecastPower { set; get; }
///
/// 预测功率统一编码
///
public string ForecastPowerCode { set; get; }
///
/// agc投入
///
public bool AgcIn { set; get; }
///
/// agc远方
///
public bool AgcFar { set; get; }
///
/// 有功增闭锁
///
public bool SumLock { set; get; }
///
/// 有功减闭锁
///
public bool SubLock { set; get; }
///
/// 理论功率资源法(光伏)
///
public double TheoryPowerResources { set; get; }
///
/// 理论功率样板机法(光伏)
///
public double TheoryPowerExample { set; get; }
///
/// 状态
///
public bool Status { set; get; }
}
}