|
@@ -564,11 +564,13 @@ public class MonitorService {
|
|
|
}else if (wpId.contains(FD)){
|
|
|
//实时功率
|
|
|
ProBasicPowerstationPoint sjglvalue = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
|
|
|
- sjgl = edosUtil.getRealData(sjglvalue).getPointValueInDouble() + (fdlr * 1000);
|
|
|
+ sjgl = edosUtil.getRealData(sjglvalue).getPointValueInDouble()+ (fdlr * 1000);
|
|
|
+ sjgl = sjgl/1000;
|
|
|
}else if (wpId.contains(GF)) {
|
|
|
//实时功率
|
|
|
ProBasicPowerstationPoint sjglvalue = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
|
|
|
sjgl = edosUtil.getRealData(sjglvalue).getPointValueInDouble() + (gflr * 1000);
|
|
|
+ sjgl = sjgl/1000;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -624,10 +626,12 @@ public class MonitorService {
|
|
|
if (wpId.contains(FD)) {
|
|
|
ProBasicPowerstationPoint fdsjglvalue = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
|
|
|
fdsjgl = edosUtil.getRealData(fdsjglvalue).getPointValueInDouble()+ (fdlr * 1000);
|
|
|
+ fdsjgl = fdsjgl/1000;
|
|
|
}
|
|
|
if (wpId.contains(GF)) {
|
|
|
ProBasicPowerstationPoint gfsjglvalue = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
|
|
|
gfsjgl = edosUtil.getRealData(gfsjglvalue).getPointValueInDouble()+ (gflr * 1000);
|
|
|
+ gfsjgl = gfsjgl/1000;
|
|
|
}
|
|
|
|
|
|
for (ProBasicPowerstation wp : wplist) {
|
|
@@ -2067,6 +2071,10 @@ public class MonitorService {
|
|
|
vo.setValue1(0.0); //实际功率
|
|
|
vo.setValue2(0.0); //风电实际功率
|
|
|
vo.setValue3(0.0); //光伏实际功率
|
|
|
+ vo.setValue4(0.0); //实时风速
|
|
|
+ vo.setValue5(0.0); //理论功率
|
|
|
+ vo.setValue6(0.0); //平均光照度
|
|
|
+ vo.setValue7(0.0); //风能利用率
|
|
|
vo.setHours(i); //时间戳
|
|
|
vo.setName(wpId);
|
|
|
vos.add(vo);
|
|
@@ -2104,6 +2112,50 @@ public class MonitorService {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ ProBasicPowerstationPoint ssfs = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSPJFS);
|
|
|
+ ProBasicPowerstationPoint llgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.TPOINT_WP_YCGL); //预测功率
|
|
|
+// ProBasicPowerstationPoint sjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
|
|
|
+ ProBasicPowerstationPoint gzzs = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.RPJGZD);
|
|
|
+ ProBasicPowerstationPoint fnlyl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.FNLYL);
|
|
|
+
|
|
|
+ if (uniformCode.contains("SSPJFS")) {
|
|
|
+
|
|
|
+ List<PointData> ssfsls = edosUtil.getHistoryDatasSnap(ssfs, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
|
|
|
+ double temp4 = 0;
|
|
|
+ for (int i = 0; i < ssfsls.size(); i++) {
|
|
|
+ temp4 = ssfsls.get(i).getPointValueInDouble();
|
|
|
+ vos.get(i).setValue4(StringUtils.round(temp4, 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (uniformCode.contains("SSZLLGL")) {
|
|
|
+ List<PointData> llglls = edosUtil.getHistoryDatasSnap(llgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
|
|
|
+ double temp5 = 0;
|
|
|
+ for (int i = 0; i < llglls.size(); i++) {
|
|
|
+ temp5 = llglls.get(i).getPointValueInDouble();
|
|
|
+ vos.get(i).setValue5(StringUtils.round(temp5 / 1000, 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (uniformCode.contains("RPJGZD")) {
|
|
|
+ List<PointData> gzzsls = edosUtil.getHistoryDatasSnap(gzzs, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
|
|
|
+ double temp6 = 0;
|
|
|
+ for (int i = 0; i < gzzsls.size(); i++) {
|
|
|
+ temp6 = gzzsls.get(i).getPointValueInDouble();
|
|
|
+ vos.get(i).setValue6(StringUtils.round(temp6 / 1000, 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (uniformCode.contains("FNLYL")) {
|
|
|
+ List<PointData> fnlylls = edosUtil.getHistoryDatasSnap(fnlyl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
|
|
|
+ double temp7 = 0;
|
|
|
+ for (int i = 0; i < fnlylls.size(); i++) {
|
|
|
+ temp7 = fnlylls.get(i).getPointValueInDouble();
|
|
|
+ vos.get(i).setValue7(StringUtils.round(temp7, 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return vos;
|
|
|
}
|
|
|
}
|