using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IntelligentControlForsx.Service.AGC.Domain
{
public class AgcPoint
{
///
/// 风场名称
///
public string StationName { set; get; }
///
/// 发电厂类型
///
public string PowerType { set; get; }
///
/// 有功设定限值
///
public string PowerSetTagName { set; get; }
///
/// agc可调上限
///
public string AgcUpTagName { set; get; }
///
/// agc可调下限
///
public string AgcLowerTagName { set; get; }
///
/// 实发有功
///
public string ActualPowerTagName { set; get; }
///
/// 理论功率
///
public string TheoryPowerTagName { set; get; }
///
/// 预测功率
///
public string ForecastPowerTagName { set; get; }
///
/// agc投入
///
public string AgcInTagName { set; get; }
///
/// agc远方
///
public string AgcFarTagName { set; get; }
///
/// 有功增闭锁
///
public string SumLockTagName { set; get; }
///
/// 有功减闭锁
///
public string SubLockTagName { set; get; }
///
/// 理论功率资源法(光伏)
///
public string TheoryPowerResourcesTagName { set; get; }
///
/// 理论功率样板机法(光伏)
///
public string TheoryPowerExampleTagName { set; get; }
///
/// 状态
///
public string StatusTagName { set; get; }
}
}