|
@@ -171,81 +171,82 @@ public class RealPowerPushService {
|
|
|
/***************************************************************超短期功率预测***************************************************************************/
|
|
|
WindPowerStationTestingPoint2 ycgl1 = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycPoints1[0]);
|
|
|
|
|
|
- if (null != ycgl1) {
|
|
|
- List<PointData> datas = realApiUtil.getHistoryDatasSnap(ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
- if (!datas.isEmpty()) {
|
|
|
+ try{
|
|
|
+ if (null != ycgl1) {
|
|
|
+ List<PointData> datas = realApiUtil.getHistoryDatasSnap(ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ if (!datas.isEmpty()) {
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
- if (ycmap.containsKey("cdq1")) {
|
|
|
- String qs3_ycgl1 = (String) ycmap.get("cdq1");
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
+ if (ycmap.containsKey("cdq1")) {
|
|
|
+ String qs3_ycgl1 = (String) ycmap.get("cdq1");
|
|
|
|
|
|
- List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
- vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
- vos.get(j).setValue4(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
+ vos.get(j).setValue4(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- } else {
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ } else {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
- vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
+ vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
|
|
|
- double ycgl = (vos.get(j).getValue4() == null ? 0.0 : vos.get(j).getValue4()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
+ double ycgl = (vos.get(j).getValue4() == null ? 0.0 : vos.get(j).getValue4()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
|
|
|
- vos.get(j).setValue4(StringUtils.round(ycgl, 2));
|
|
|
+ vos.get(j).setValue4(StringUtils.round(ycgl, 2));
|
|
|
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- int subresult = 0;
|
|
|
- int total = 0;
|
|
|
+ int subresult = 0;
|
|
|
+ int total = 0;
|
|
|
|
|
|
- if (length > datas.size()) {
|
|
|
- subresult = length - datas.size();
|
|
|
- if (subresult >= cdqyc) {
|
|
|
- subresult = cdqyc;
|
|
|
- }
|
|
|
+ if (length > datas.size()) {
|
|
|
+ subresult = length - datas.size();
|
|
|
+ if (subresult >= cdqyc) {
|
|
|
+ subresult = cdqyc;
|
|
|
+ }
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
- if (ycmap.containsKey("cdq2")) {
|
|
|
- String[] ycPoints3 = (String[]) ycmap.get("cdq2");
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
- vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
- String qs3_ycgl = ycPoints3[i];
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycPoints2[i]);
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
+ if (ycmap.containsKey("cdq2")) {
|
|
|
+ String[] ycPoints3 = (String[]) ycmap.get("cdq2");
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ String qs3_ycgl = ycPoints3[i];
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycPoints2[i]);
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue4(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
- }
|
|
|
- }
|
|
|
+ vos.get(datas.size() + i).setValue4(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- } else {
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
- vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ } else {
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycPoints2[i]);
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycPoints2[i]);
|
|
|
|
|
|
- double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
+ double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
|
|
|
- ycgl = (vos.get(datas.size() + i).getValue4() == null ? 0.0 : vos.get(datas.size() + i).getValue4()) + ycgl;
|
|
|
+ ycgl = (vos.get(datas.size() + i).getValue4() == null ? 0.0 : vos.get(datas.size() + i).getValue4()) + ycgl;
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue4(StringUtils.round(ycgl, 2));
|
|
|
- }
|
|
|
- }
|
|
|
+ vos.get(datas.size() + i).setValue4(StringUtils.round(ycgl, 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
// total = datas.size() + subresult;
|
|
@@ -257,92 +258,94 @@ public class RealPowerPushService {
|
|
|
// vos.get(total + i).setTime(cal.getTime().getTime());
|
|
|
// vos.get(total + i).setValue4(null);
|
|
|
// }
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
+ }catch (Exception e){}
|
|
|
/***************************************************************超短期功率预测***************************************************************************/
|
|
|
|
|
|
|
|
|
/***************************************************************短期功率预测***************************************************************************/
|
|
|
WindPowerStationTestingPoint2 dqgl1 = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycDqPoints1[0]);
|
|
|
|
|
|
- if (null != dqgl1) {
|
|
|
- List<PointData> datas = realApiUtil.getHistoryDatasSnap(dqgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
- if (!datas.isEmpty()) {
|
|
|
+ try{
|
|
|
+ if (null != dqgl1) {
|
|
|
+ List<PointData> datas = realApiUtil.getHistoryDatasSnap(dqgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ if (!datas.isEmpty()) {
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
- if (ycmap.containsKey("dq1")) {
|
|
|
- String qs3_ycgl1 = (String) ycmap.get("dq1");
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
+ if (ycmap.containsKey("dq1")) {
|
|
|
+ String qs3_ycgl1 = (String) ycmap.get("dq1");
|
|
|
|
|
|
- List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
- vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
- vos.get(j).setValue7(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
+ vos.get(j).setValue7(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
|
|
|
- } else {
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ } else {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
- vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
+ vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
|
|
|
- double ycgl = (vos.get(j).getValue7() == null ? 0.0 : vos.get(j).getValue7()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
+ double ycgl = (vos.get(j).getValue7() == null ? 0.0 : vos.get(j).getValue7()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
|
|
|
- vos.get(j).setValue7(StringUtils.round(ycgl, 2));
|
|
|
+ vos.get(j).setValue7(StringUtils.round(ycgl, 2));
|
|
|
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- int subresult = 0;
|
|
|
- int total = 0;
|
|
|
|
|
|
- if (length > datas.size()) {
|
|
|
- subresult = length - datas.size();
|
|
|
- if (subresult >= dqyc) {
|
|
|
- subresult = dqyc;
|
|
|
- }
|
|
|
+ int subresult = 0;
|
|
|
+ int total = 0;
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
- if (ycmap.containsKey("dq2")) {
|
|
|
- String[] ycPoints3 = (String[]) ycmap.get("dq2");
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
- vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
- String qs3_ycgl = ycPoints3[i];
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycDqPoints2[i]);
|
|
|
+ if (length > datas.size()) {
|
|
|
+ subresult = length - datas.size();
|
|
|
+ if (subresult >= dqyc) {
|
|
|
+ subresult = dqyc;
|
|
|
+ }
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue7(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(station.getId())) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(station.getId());
|
|
|
+ if (ycmap.containsKey("dq2")) {
|
|
|
+ String[] ycPoints3 = (String[]) ycmap.get("dq2");
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ String qs3_ycgl = ycPoints3[i];
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycDqPoints2[i]);
|
|
|
+
|
|
|
+ vos.get(datas.size() + i).setValue7(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
|
|
|
- } else {
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
- vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ } else {
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycDqPoints2[i]);
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(station.getId(), ycDqPoints2[i]);
|
|
|
|
|
|
- double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
+ double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
|
|
|
- ycgl = (vos.get(datas.size() + i).getValue7() == null ? 0.0 : vos.get(datas.size() + i).getValue7()) + ycgl;
|
|
|
+ ycgl = (vos.get(datas.size() + i).getValue7() == null ? 0.0 : vos.get(datas.size() + i).getValue7()) + ycgl;
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue7(StringUtils.round(ycgl, 2));
|
|
|
+ vos.get(datas.size() + i).setValue7(StringUtils.round(ycgl, 2));
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
|
|
|
// total = datas.size() + subresult;
|
|
@@ -354,11 +357,12 @@ public class RealPowerPushService {
|
|
|
// vos.get(total + i).setTime(cal.getTime().getTime());
|
|
|
// vos.get(total + i).setValue7(null);
|
|
|
// }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|
|
|
-
|
|
|
- }
|
|
|
+ }catch (Exception e){}
|
|
|
/***************************************************************短期功率预测***************************************************************************/
|
|
|
|
|
|
|
|
@@ -585,176 +589,179 @@ public class RealPowerPushService {
|
|
|
/***************************************************************超短期功率预测***************************************************************************/
|
|
|
WindPowerStationTestingPoint2 ycgl1 = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycPoints1[0]);
|
|
|
|
|
|
- if (null != ycgl1) {
|
|
|
- List<PointData> datas = realApiUtil.getHistoryDatasSnap(ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
- if (!datas.isEmpty()) {
|
|
|
+ try{
|
|
|
+ if (null != ycgl1) {
|
|
|
+ List<PointData> datas = realApiUtil.getHistoryDatasSnap(ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ if (!datas.isEmpty()) {
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
- if (ycmap.containsKey("cdq1")) {
|
|
|
- String qs3_ycgl1 = (String) ycmap.get("cdq1");
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
+ if (ycmap.containsKey("cdq1")) {
|
|
|
+ String qs3_ycgl1 = (String) ycmap.get("cdq1");
|
|
|
|
|
|
- List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
// vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
- vos.get(j).setValue4(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ vos.get(j).setValue4(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- } else {
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ } else {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
// vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
|
|
|
- double ycgl = (vos.get(j).getValue4() == null ? 0.0 : vos.get(j).getValue4()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
+ double ycgl = (vos.get(j).getValue4() == null ? 0.0 : vos.get(j).getValue4()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
|
|
|
- vos.get(j).setValue4(StringUtils.round(ycgl, 2));
|
|
|
+ vos.get(j).setValue4(StringUtils.round(ycgl, 2));
|
|
|
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- int subresult = 0;
|
|
|
- int total = 0;
|
|
|
+ int subresult = 0;
|
|
|
+ int total = 0;
|
|
|
|
|
|
- if (length > datas.size()) {
|
|
|
- subresult = length - datas.size();
|
|
|
- if (subresult >= cdqyc) {
|
|
|
- subresult = cdqyc;
|
|
|
- }
|
|
|
+ if (length > datas.size()) {
|
|
|
+ subresult = length - datas.size();
|
|
|
+ if (subresult >= cdqyc) {
|
|
|
+ subresult = cdqyc;
|
|
|
+ }
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
- if (ycmap.containsKey("cdq2")) {
|
|
|
- String[] ycPoints3 = (String[]) ycmap.get("cdq2");
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
+ if (ycmap.containsKey("cdq2")) {
|
|
|
+ String[] ycPoints3 = (String[]) ycmap.get("cdq2");
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ String qs3_ycgl = ycPoints3[i];
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycPoints2[i]);
|
|
|
+
|
|
|
+ vos.get(datas.size() + i).setValue4(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
for (int i = 0; i < subresult; i++) {
|
|
|
cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+
|
|
|
vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
- String qs3_ycgl = ycPoints3[i];
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycPoints2[i]);
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue4(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
- }
|
|
|
- }
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycPoints2[i]);
|
|
|
|
|
|
- } else {
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
|
|
|
- vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ ycgl = (vos.get(datas.size() + i).getValue4() == null ? 0.0 : vos.get(datas.size() + i).getValue4()) + ycgl;
|
|
|
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycPoints2[i]);
|
|
|
+ vos.get(datas.size() + i).setValue4(StringUtils.round(ycgl, 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
|
|
|
- ycgl = (vos.get(datas.size() + i).getValue4() == null ? 0.0 : vos.get(datas.size() + i).getValue4()) + ycgl;
|
|
|
+ total = datas.size() + subresult;
|
|
|
+ subresult = length - (total);
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue4(StringUtils.round(ycgl, 2));
|
|
|
- }
|
|
|
+ if (subresult > 0)
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ vos.get(total + i).setTime(cal.getTime().getTime());
|
|
|
+ vos.get(total + i).setValue4(null);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- total = datas.size() + subresult;
|
|
|
- subresult = length - (total);
|
|
|
-
|
|
|
- if (subresult > 0)
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
- vos.get(total + i).setTime(cal.getTime().getTime());
|
|
|
- vos.get(total + i).setValue4(null);
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
}
|
|
|
-
|
|
|
- }
|
|
|
+ } catch (Exception e){}
|
|
|
/***************************************************************超短期功率预测***************************************************************************/
|
|
|
|
|
|
|
|
|
/***************************************************************短期功率预测***************************************************************************/
|
|
|
WindPowerStationTestingPoint2 dqgl1 = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycDqPoints1[0]);
|
|
|
|
|
|
- if (null != dqgl1) {
|
|
|
- List<PointData> datas = realApiUtil.getHistoryDatasSnap(dqgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
- if (!datas.isEmpty()) {
|
|
|
+ try{
|
|
|
+ if (null != dqgl1) {
|
|
|
+ List<PointData> datas = realApiUtil.getHistoryDatasSnap(dqgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ if (!datas.isEmpty()) {
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
- if (ycmap.containsKey("dq1")) {
|
|
|
- String qs3_ycgl1 = (String) ycmap.get("dq1");
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
+ if (ycmap.containsKey("dq1")) {
|
|
|
+ String qs3_ycgl1 = (String) ycmap.get("dq1");
|
|
|
|
|
|
- List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
+ List<PointData> qs3_datas = realApiUtil.getHistoryDatasSnap(qs3_ycgl1, beginDate.getTime() / 1000, endDate.getTime() / 1000, num, pried);
|
|
|
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
- vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
- vos.get(j).setValue7(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
+ vos.get(j).setValue7(StringUtils.round(datas.get(j).getPointValueInDouble() + qs3_datas.get(j).getPointValueInDouble(), 2));
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- } else {
|
|
|
- for (int j = 0; j < datas.size(); j++) {
|
|
|
+ } else {
|
|
|
+ for (int j = 0; j < datas.size(); j++) {
|
|
|
|
|
|
- vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
+ vos.get(j).setTime(datas.get(j).getPointTime() * 1000);
|
|
|
|
|
|
- double ycgl = (vos.get(j).getValue7() == null ? 0.0 : vos.get(j).getValue7()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
+ double ycgl = (vos.get(j).getValue7() == null ? 0.0 : vos.get(j).getValue7()) + (datas.get(j) == null ? 0.0 : datas.get(j).getPointValueInDouble());
|
|
|
|
|
|
- vos.get(j).setValue7(StringUtils.round(ycgl, 2));
|
|
|
+ vos.get(j).setValue7(StringUtils.round(ycgl, 2));
|
|
|
|
|
|
- if (j == datas.size() - 1) {
|
|
|
- cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ if (j == datas.size() - 1) {
|
|
|
+ cal.setTime(new Date(datas.get(j).getPointTime() * 1000));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- int subresult = 0;
|
|
|
- int total = 0;
|
|
|
+ int subresult = 0;
|
|
|
+ int total = 0;
|
|
|
|
|
|
- if (length > datas.size()) {
|
|
|
- subresult = length - datas.size();
|
|
|
- if (subresult >= dqyc) {
|
|
|
- subresult = dqyc;
|
|
|
- }
|
|
|
+ if (length > datas.size()) {
|
|
|
+ subresult = length - datas.size();
|
|
|
+ if (subresult >= dqyc) {
|
|
|
+ subresult = dqyc;
|
|
|
+ }
|
|
|
|
|
|
- if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
- Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
- if (ycmap.containsKey("dq2")) {
|
|
|
- String[] ycPoints3 = (String[]) ycmap.get("dq2");
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
- vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
- String qs3_ycgl = ycPoints3[i];
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycDqPoints2[i]);
|
|
|
+ if (InitialRunner.appendYcglMap.containsKey(id)) {
|
|
|
+ Map<String, Object> ycmap = InitialRunner.appendYcglMap.get(id);
|
|
|
+ if (ycmap.containsKey("dq2")) {
|
|
|
+ String[] ycPoints3 = (String[]) ycmap.get("dq2");
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ String qs3_ycgl = ycPoints3[i];
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycDqPoints2[i]);
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue7(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
- }
|
|
|
- }
|
|
|
+ vos.get(datas.size() + i).setValue7(StringUtils.round(realApiUtil.getRealData(ycglpoint).getPointValueInDouble() + realApiUtil.getRealData(qs3_ycgl).getPointValueInDouble(), 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- } else {
|
|
|
- for (int i = 0; i < subresult; i++) {
|
|
|
- cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
+ } else {
|
|
|
+ for (int i = 0; i < subresult; i++) {
|
|
|
+ cal.add(Calendar.HOUR_OF_DAY, 1);
|
|
|
|
|
|
- vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
+ vos.get(datas.size() + i).setTime(cal.getTime().getTime());
|
|
|
|
|
|
- WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycDqPoints2[i]);
|
|
|
+ WindPowerStationTestingPoint2 ycglpoint = windPowerstationTestingPoint2Service.getWindPowerStationTestingPoint2(id, ycDqPoints2[i]);
|
|
|
|
|
|
- double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
+ double ycgl = realApiUtil.getRealData(ycglpoint).getPointValueInDouble();
|
|
|
|
|
|
- ycgl = (vos.get(datas.size() + i).getValue7() == null ? 0.0 : vos.get(datas.size() + i).getValue7()) + ycgl;
|
|
|
+ ycgl = (vos.get(datas.size() + i).getValue7() == null ? 0.0 : vos.get(datas.size() + i).getValue7()) + ycgl;
|
|
|
|
|
|
- vos.get(datas.size() + i).setValue7(StringUtils.round(ycgl, 2));
|
|
|
- }
|
|
|
- }
|
|
|
+ vos.get(datas.size() + i).setValue7(StringUtils.round(ycgl, 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
// total = datas.size() + subresult;
|
|
@@ -766,11 +773,12 @@ public class RealPowerPushService {
|
|
|
// vos.get(total + i).setTime(cal.getTime().getTime());
|
|
|
// vos.get(total + i).setValue7(null);
|
|
|
// }
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
+ }catch (Exception e){}
|
|
|
/***************************************************************短期功率预测***************************************************************************/
|
|
|
}
|
|
|
}
|