|
@@ -54,6 +54,7 @@ namespace NEIntelligentControl2.Views.AGC
|
|
|
private TagInfo _ActualPower;
|
|
|
private List<TsData> _PowerSetList;
|
|
|
private List<TsData> _ActualPowerList;
|
|
|
+ private List<TsData> _IdeaPowerList;
|
|
|
private List<TsData> _StatusList;
|
|
|
public AGCCard2()
|
|
|
{
|
|
@@ -132,10 +133,14 @@ namespace NEIntelligentControl2.Views.AGC
|
|
|
_PowerSetList = arg2;
|
|
|
return;
|
|
|
}
|
|
|
- else
|
|
|
+ else if (arg1.Type == TagType.ActualPower)
|
|
|
{
|
|
|
_ActualPowerList = arg2;
|
|
|
}
|
|
|
+ else
|
|
|
+ {
|
|
|
+ _IdeaPowerList = arg2;
|
|
|
+ }
|
|
|
if (Status != 1) return;
|
|
|
InitCurveDeviationRate();
|
|
|
}
|