|
@@ -99,8 +99,9 @@ public class RealtimeService {
|
|
|
ssbfPointDate = PointUtil.createPointData(currentDate, ssbf, ssbfPoint.getNemCode(), ssbfPoint.getName());
|
|
|
}
|
|
|
wtResultList.add(ssbfPointDate);
|
|
|
+ double v = DoubleUtils.keepPrecision(ssbf, 2);
|
|
|
if (theoreticalPowerMap.containsKey(wt.getModelId())){
|
|
|
- double v = DoubleUtils.keepPrecision(ssbf, 2);
|
|
|
+// double v = DoubleUtils.keepPrecision(ssbf, 2);
|
|
|
if (theoreticalPowerMap.get(wt.getModelId()).containsKey(v)){
|
|
|
ProBasicModelPowerRd basicModelPowerRd = theoreticalPowerMap.get(wt.getModelId()).get(v);
|
|
|
wtResultList.add(PointUtil.createPointData(currentDate, basicModelPowerRd.getTheoryPower(), llglPoint.getNemCode(), llglPoint.getName()));
|
|
@@ -111,8 +112,8 @@ public class RealtimeService {
|
|
|
}
|
|
|
}
|
|
|
if (curveFittingPowerMap.containsKey(wt.getId())){
|
|
|
- if (curveFittingPowerMap.get(wt.getId()).containsKey(ssbf)){
|
|
|
- ProEconWtPowerCurveFitting wtPowerCurveFitting = curveFittingPowerMap.get(wt.getId()).get(ssbf);
|
|
|
+ if (curveFittingPowerMap.get(wt.getId()).containsKey(v)){
|
|
|
+ ProEconWtPowerCurveFitting wtPowerCurveFitting = curveFittingPowerMap.get(wt.getId()).get(v);
|
|
|
Double actualPower = wtPowerCurveFitting.getActualPower();
|
|
|
double[] underissuanceArray = {0, 1, 2, 3, 8, 9, 11};
|
|
|
double qfzt = 0;
|