|
@@ -1,14 +1,13 @@
|
|
|
package com.gyee.generation.service;//package com.gyee.generation.service;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
-import com.gyee.common.contant.ContantXk;
|
|
|
-import com.gyee.common.model.PointData;
|
|
|
import com.gyee.common.model.StringUtils;
|
|
|
import com.gyee.generation.init.CacheContext;
|
|
|
import com.gyee.generation.model.auto.*;
|
|
|
import com.gyee.generation.model.vo.CompanyType;
|
|
|
import com.gyee.generation.model.vo.Location;
|
|
|
import com.gyee.generation.model.vo.WpType;
|
|
|
+import com.gyee.generation.service.auto.IProEconEquipmentInfoDay2Service;
|
|
|
import com.gyee.generation.service.auto.IProEconPowerstationInfoDay2Service;
|
|
|
import com.gyee.generation.util.DateUtils;
|
|
|
import com.gyee.generation.util.realtimesource.IEdosUtil;
|
|
@@ -16,8 +15,6 @@ import com.gyee.generation.util.statisticcs.Initial;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import java.math.BigDecimal;
|
|
|
-import java.math.RoundingMode;
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
@@ -31,7 +28,8 @@ public class WindPowerInfo2Service {
|
|
|
@Resource
|
|
|
private IProEconPowerstationInfoDay2Service proEconPowerstationInfoDay2Service;
|
|
|
|
|
|
-
|
|
|
+ @Resource
|
|
|
+ private IProEconEquipmentInfoDay2Service proEconEquipmentInfoDay2Service;
|
|
|
/**
|
|
|
* 计算区域日信息
|
|
|
*/
|
|
@@ -400,6 +398,30 @@ public class WindPowerInfo2Service {
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+ Map<String,List<ProEconEquipmentInfoDay2>> pep2map=new HashMap<>();
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper1 = new QueryWrapper<>();
|
|
|
+ queryWrapper1.eq("record_date",DateUtils.truncate(recordDate));
|
|
|
+ List<ProEconEquipmentInfoDay2> pep1ls = proEconEquipmentInfoDay2Service.list(queryWrapper1);
|
|
|
+ if(!pep1ls.isEmpty())
|
|
|
+ {
|
|
|
+ for(ProEconEquipmentInfoDay2 pep:pep1ls)
|
|
|
+ {
|
|
|
+ if(pep2map.containsKey(pep.getWindpowerstationId()))
|
|
|
+ {
|
|
|
+ List<ProEconEquipmentInfoDay2> pepls=pep2map.get(pep.getWindpowerstationId());
|
|
|
+ pepls.add(pep);
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<ProEconEquipmentInfoDay2> pepls=new ArrayList<>();
|
|
|
+ pepls.add(pep);
|
|
|
+ pep2map.put(pep.getWindpowerstationId(),pepls);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
List<String> wpls=new ArrayList<>();
|
|
|
List<ProEconPowerstationInfoDay2> dayls=new ArrayList<>();
|
|
|
for (ProBasicPowerstation wp : CacheContext.wpls) {
|
|
@@ -436,9 +458,9 @@ public class WindPowerInfo2Service {
|
|
|
// )
|
|
|
// .collect(Collectors.toList());
|
|
|
}
|
|
|
- calDetiall(pewp, end, begin, CacheContext.wpwtmap.get(wp.getId()), pepidls);
|
|
|
+ calDetiall(pewp, wp.getId(), pep2map);
|
|
|
|
|
|
- calSimple(pewp, end, begin, CacheContext.wpwtmap.get(wp.getId()), pepidls);
|
|
|
+ calSimple(pewp, wp.getId(), pep2map);
|
|
|
//*******************************************年信息统计*********************************************************/
|
|
|
// wpinfodayls.add(pewp);
|
|
|
dayls.add(pewp);
|
|
@@ -497,6 +519,28 @@ public class WindPowerInfo2Service {
|
|
|
|
|
|
Date begin = DateUtils.truncate(c.getTime());
|
|
|
|
|
|
+
|
|
|
+ Map<String,List<ProEconEquipmentInfoDay2>> pep2map=new HashMap<>();
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper1 = new QueryWrapper<>();
|
|
|
+ queryWrapper1.eq("record_date",DateUtils.truncate(recordDate));
|
|
|
+ List<ProEconEquipmentInfoDay2> pep1ls = proEconEquipmentInfoDay2Service.list(queryWrapper1);
|
|
|
+ if(!pep1ls.isEmpty())
|
|
|
+ {
|
|
|
+ for(ProEconEquipmentInfoDay2 pep:pep1ls)
|
|
|
+ {
|
|
|
+ if(pep2map.containsKey(pep.getProjectId()))
|
|
|
+ {
|
|
|
+ List<ProEconEquipmentInfoDay2> pepls=pep2map.get(pep.getProjectId());
|
|
|
+ pepls.add(pep);
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<ProEconEquipmentInfoDay2> pepls=new ArrayList<>();
|
|
|
+ pepls.add(pep);
|
|
|
+ pep2map.put(pep.getProjectId(),pepls);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
List<String > pjls=new ArrayList<>();
|
|
|
List<ProEconPowerstationInfoDay2> dayls=new ArrayList<>();
|
|
|
for (ProBasicProject pj : CacheContext.pjls) {
|
|
@@ -537,8 +581,11 @@ public class WindPowerInfo2Service {
|
|
|
// )
|
|
|
// .collect(Collectors.toList());
|
|
|
}
|
|
|
- calDetiall(pewp, end, begin, CacheContext.pjwtmap.get(pj.getId()), pepidls);
|
|
|
- calSimple(pewp, end, begin, CacheContext.pjwtmap.get(pj.getId()), pepidls);
|
|
|
+
|
|
|
+
|
|
|
+ calDetiall(pewp, pj.getId(), pep2map);
|
|
|
+
|
|
|
+ calSimple(pewp, pj.getId(), pep2map);
|
|
|
|
|
|
dayls.add(pewp);
|
|
|
// proEconPowerstationInfoDay2Service.save(pewp);
|
|
@@ -595,6 +642,27 @@ public class WindPowerInfo2Service {
|
|
|
|
|
|
Date begin = DateUtils.truncate(c.getTime());
|
|
|
|
|
|
+ Map<String,List<ProEconEquipmentInfoDay2>> pep2map=new HashMap<>();
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper1 = new QueryWrapper<>();
|
|
|
+ queryWrapper1.eq("record_date",DateUtils.truncate(recordDate));
|
|
|
+ List<ProEconEquipmentInfoDay2> pep1ls = proEconEquipmentInfoDay2Service.list(queryWrapper1);
|
|
|
+ if(!pep1ls.isEmpty())
|
|
|
+ {
|
|
|
+ for(ProEconEquipmentInfoDay2 pep:pep1ls)
|
|
|
+ {
|
|
|
+ if(pep2map.containsKey(pep.getLineId()))
|
|
|
+ {
|
|
|
+ List<ProEconEquipmentInfoDay2> pepls=pep2map.get(pep.getLineId());
|
|
|
+ pepls.add(pep);
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<ProEconEquipmentInfoDay2> pepls=new ArrayList<>();
|
|
|
+ pepls.add(pep);
|
|
|
+ pep2map.put(pep.getLineId(),pepls);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
List<String > lnls=new ArrayList<>();
|
|
|
List<ProEconPowerstationInfoDay2> dayls=new ArrayList<>();
|
|
@@ -641,8 +709,9 @@ public class WindPowerInfo2Service {
|
|
|
// )
|
|
|
// .collect(Collectors.toList());
|
|
|
}
|
|
|
- calDetiall(pewp, end, begin, CacheContext.lnwtmap.get(ln.getId()), pepidls);
|
|
|
- calSimple(pewp, end, begin, CacheContext.lnwtmap.get(ln.getId()), pepidls);
|
|
|
+ calDetiall(pewp, ln.getId(), pep2map);
|
|
|
+
|
|
|
+ calSimple(pewp, ln.getId(), pep2map);
|
|
|
dayls.add(pewp);
|
|
|
// proEconPowerstationInfoDay2Service.save(pewp);
|
|
|
if(CacheContext.pjmap.containsKey(ln.getProjectId()))
|
|
@@ -690,7 +759,7 @@ public class WindPowerInfo2Service {
|
|
|
// proEconPowerstationInfoDay2Service.saveBatch(dayls);
|
|
|
}
|
|
|
|
|
|
- private void calDetiall(ProEconPowerstationInfoDay2 pewp, Date end, Date begin, List<ProBasicEquipment> wtls, List<ProEconPowerstationInfoDay2> pepidls) throws Exception {
|
|
|
+ private void calDetiall(ProEconPowerstationInfoDay2 pewp, String id,Map<String,List<ProEconEquipmentInfoDay2>> pep2map) throws Exception {
|
|
|
// // 0 待机
|
|
|
// 1 手动停机
|
|
|
// 2 正常发电
|
|
@@ -723,271 +792,166 @@ public class WindPowerInfo2Service {
|
|
|
double txzdsc = 0;//通讯中断时长
|
|
|
double sblxsc = 0;//设备离线时长
|
|
|
|
|
|
- Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
|
|
|
-
|
|
|
- if(!wtls.isEmpty())
|
|
|
- {
|
|
|
- for (ProBasicEquipment wt : wtls) {
|
|
|
-
|
|
|
- lastState = -1;//上一分钟状态
|
|
|
- Map<String, ProBasicEquipmentPoint> aimap = wtpAimap.get(wt.getId());
|
|
|
- if (aimap.containsKey(ContantXk.MXZT)) {
|
|
|
-
|
|
|
- ProBasicEquipmentPoint point = aimap.get(ContantXk.MXZT);
|
|
|
- //按照分钟时间进行统计状态快照值
|
|
|
- List<PointData> pointls = edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime() / 1000, end.getTime() / 1000);
|
|
|
- if (!pointls.isEmpty()) {
|
|
|
- for (PointData po : pointls) {
|
|
|
-
|
|
|
- if (po.getPointValueInDouble() == 0) {
|
|
|
-
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //待机时长加1分钟
|
|
|
- djsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 1) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //手动停机时长加1分钟
|
|
|
- sdtjsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 2) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //正常发电时长加1分钟
|
|
|
- zcfdsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 3) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //发电降出力时长加1分钟
|
|
|
- fdjclsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 4) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //故障时长加1分钟
|
|
|
- gzsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 5) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //故障受累时长加1分钟
|
|
|
- gzslsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 6) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //检修时长加1分钟
|
|
|
- jxsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 7) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //检修受累时长加1分钟
|
|
|
- jxslsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 8) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //限电降出力时长加1分钟
|
|
|
- xdjclsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 9) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //限电停机时长加1分钟
|
|
|
- xdtjsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 10) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //电网受累时长加1分钟
|
|
|
- dwslsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 11) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //环境受累时长加1分钟
|
|
|
- hjslsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 12) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //通讯中断时长加1分钟
|
|
|
- txzdsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 13) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+ if (pep2map.containsKey(id)) {
|
|
|
+ List<ProEconEquipmentInfoDay2> pep2ls = pep2map.get(id);
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
- //设备离线时长加1分钟
|
|
|
- sblxsc++;
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
+ if (!pep2ls.isEmpty()) {
|
|
|
+ DoubleSummaryStatistics summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRgzxsmx).summaryStatistics();
|
|
|
+ //日合计故障小时(明细)
|
|
|
+ pewp.setRhjgzxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计场内受累故障小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRcnslgzxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjcnslgzxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计检修小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRjxxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjjxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计场内受累检修小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRcnsljxxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjcnsljxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计待机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRdjxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjdjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计缺陷降出力小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRqxjclxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjqxjclxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计手动停机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRsdtjxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjsdtjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计性能小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRbwxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjbwxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计限电停机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRxdtjxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjxdtjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计限电降出力小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRxdjclxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjxdjclxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计场外受累电网小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRcwsldwxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjcwsldwxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计场外受累电网小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRcwsltqxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjcwsltqxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计通讯中断小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRtxzdxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjtxzdxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计离线小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRlxxsmx).summaryStatistics();
|
|
|
+ pewp.setRhjlxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- //日合计故障小时(明细)
|
|
|
- pewp.setRhjgzxsmx(new BigDecimal(gzsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计场内受累故障小时(明细)
|
|
|
- pewp.setRhjcnslgzxsmx(new BigDecimal(gzslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计检修小时(明细)
|
|
|
- pewp.setRhjjxxsmx(new BigDecimal(jxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计场内受累检修小时(明细)
|
|
|
- pewp.setRhjcnsljxxsmx(new BigDecimal(jxslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计待机小时(明细)
|
|
|
- pewp.setRhjdjxsmx(new BigDecimal(djsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计缺陷降出力小时(明细)
|
|
|
- pewp.setRhjqxjclxsmx(new BigDecimal(fdjclsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计手动停机小时(明细)
|
|
|
- pewp.setRhjsdtjxsmx(new BigDecimal(sdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计性能小时(明细)
|
|
|
- pewp.setRhjbwxsmx(new BigDecimal(zcfdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计限电停机小时(明细)
|
|
|
- pewp.setRhjxdtjxsmx(new BigDecimal(xdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计限电降出力小时(明细)
|
|
|
- pewp.setRhjxdjclxsmx(new BigDecimal(xdjclsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计场外受累电网小时(明细)
|
|
|
- pewp.setRhjcwsldwxsmx(new BigDecimal(dwslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计场外受累电网小时(明细)
|
|
|
- pewp.setRhjcwsltqxsmx(new BigDecimal(hjslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计通讯中断小时(明细)
|
|
|
- pewp.setRhjtxzdxsmx(new BigDecimal(txzdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计离线小时(明细)
|
|
|
- pewp.setRhjlxxsmx(new BigDecimal(sblxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
//*******************************************日信息统计*********************************************************/
|
|
|
|
|
|
//*******************************************月信息统计*********************************************************/
|
|
|
|
|
|
- if (pepidls.isEmpty()) {
|
|
|
- setLossHoursMonth(pewp);
|
|
|
-
|
|
|
- } else {
|
|
|
-
|
|
|
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
|
|
|
-
|
|
|
- //月合计故障小时(明细)
|
|
|
- pewp.setYhjgzxsmx(StringUtils.round(pepid.getYhjgzxsmx() + pewp.getRhjgzxsmx(), 2));
|
|
|
- //月合计场内受累故障小时(明细)
|
|
|
- pewp.setYhjcnslgzxsmx(StringUtils.round(pepid.getYhjcnslgzxsmx() + pewp.getRhjcnslgzxsmx(), 2));
|
|
|
- //月合计检修小时(明细)
|
|
|
- pewp.setYhjjxxsmx(StringUtils.round(pepid.getYhjjxxsmx() + pewp.getRhjjxxsmx(), 2));
|
|
|
- //月合计场内受累检修小时(明细)
|
|
|
- pewp.setYhjcnsljxxsmx(StringUtils.round(pepid.getYhjcnsljxxsmx() + pewp.getRhjcnsljxxsmx(), 2));
|
|
|
- //月合计待机小时(明细)
|
|
|
- pewp.setYhjdjxsmx(StringUtils.round(pepid.getYhjdjxsmx() + pewp.getRhjdjxsmx(), 2));
|
|
|
- //月合计缺陷降出力小时(明细)
|
|
|
- pewp.setYhjqxjclxsmx(StringUtils.round(pepid.getYhjqxjclxsmx() + pewp.getRhjqxjclxsmx(), 2));
|
|
|
- //月合计手动停机小时(明细)
|
|
|
- pewp.setYhjsdtjxsmx(StringUtils.round(pepid.getYhjsdtjxsmx() + pewp.getRhjsdtjxsmx(), 2));
|
|
|
- //月合计性能小时(明细)
|
|
|
- pewp.setYhjbwxsmx(StringUtils.round(pepid.getYhjbwxsmx() + pewp.getRhjbwxsmx(), 2));
|
|
|
- //月合计限电停机小时(明细)
|
|
|
- pewp.setYhjxdtjxsmx(StringUtils.round(pepid.getYhjxdtjxsmx() + pewp.getRhjxdtjxsmx(), 2));
|
|
|
- //月合计限电降出力小时(明细)
|
|
|
- pewp.setYhjxdjclxsmx(StringUtils.round(pepid.getYhjxdjclxsmx() + pewp.getRhjxdjclxsmx(), 2));
|
|
|
- //月合计场外受累电网小时(明细)
|
|
|
- pewp.setYhjcwsldwxsmx(StringUtils.round(pepid.getYhjcwsldwxsmx() + pewp.getRhjcwsldwxsmx(), 2));
|
|
|
- //月合计场外受累电网小时(明细)
|
|
|
- pewp.setYhjcwsltqxsmx(StringUtils.round(pepid.getYhjcwsltqxsmx() + pewp.getRhjcwsltqxsmx(), 2));
|
|
|
- //月合计通讯中断小时(明细)
|
|
|
- pewp.setYhjtxzdxsmx(StringUtils.round(pepid.getYhjtxzdxsmx() + pewp.getRhjtxzdxsmx(), 2));
|
|
|
- //月合计离线小时(明细)
|
|
|
- pewp.setYhjlxxsmx(StringUtils.round(pepid.getYhjlxxsmx() + pewp.getRhjlxxsmx(), 2));
|
|
|
+ if (pep2map.containsKey(id)) {
|
|
|
+ List<ProEconEquipmentInfoDay2> pep2ls = pep2map.get(id);
|
|
|
|
|
|
+ if (!pep2ls.isEmpty()) {
|
|
|
+ DoubleSummaryStatistics summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYgzxsmx).summaryStatistics();
|
|
|
+ //月合计故障小时(明细)
|
|
|
+ pewp.setYhjgzxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计场内受累故障小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYcnslgzxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjcnslgzxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计检修小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYjxxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjjxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计场内受累检修小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYcnsljxxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjcnsljxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计待机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYdjxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjdjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计缺陷降出力小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYqxjclxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjqxjclxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计手动停机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYsdtjxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjsdtjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计性能小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYbwxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjbwxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计限电停机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYxdtjxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjxdtjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计限电降出力小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYxdjclxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjxdjclxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计场外受累电网小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYcwsldwxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjcwsldwxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计场外受累电网小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYcwsltqxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjcwsltqxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计通讯中断小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYtxzdxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjtxzdxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计离线小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYlxxsmx).summaryStatistics();
|
|
|
+ pewp.setYhjlxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
|
//*******************************************月信息统计*********************************************************/
|
|
|
|
|
|
//*******************************************年信息统计*********************************************************/
|
|
|
- if (pepidls.isEmpty()) {
|
|
|
- setLossHoursYear(pewp);
|
|
|
- } else {
|
|
|
-
|
|
|
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
|
|
|
-
|
|
|
- //年合计故障小时(明细)
|
|
|
- pewp.setNhjgzxsmx(StringUtils.round(pepid.getNhjgzxsmx() + pewp.getRhjgzxsmx(), 2));
|
|
|
- //年合计场内受累故障小时(明细)
|
|
|
- pewp.setNhjcnslgzxsmx(StringUtils.round(pepid.getNhjcnslgzxsmx() + pewp.getRhjcnslgzxsmx(), 2));
|
|
|
- //年合计检修小时(明细)
|
|
|
- pewp.setNhjjxxsmx(StringUtils.round(pepid.getNhjjxxsmx() + pewp.getRhjjxxsmx(), 2));
|
|
|
- //年合计场内受累检修小时(明细)
|
|
|
- pewp.setNhjcnsljxxsmx(StringUtils.round(pepid.getNhjcnsljxxsmx() + pewp.getRhjcnsljxxsmx(), 2));
|
|
|
- //年合计待机小时(明细)
|
|
|
- pewp.setNhjdjxsmx(StringUtils.round(pepid.getNhjdjxsmx() + pewp.getRhjdjxsmx(), 2));
|
|
|
- //年合计缺陷降出力小时(明细)
|
|
|
- pewp.setNhjqxjclxsmx(StringUtils.round(pepid.getNhjqxjclxsmx() + pewp.getRhjqxjclxsmx(), 2));
|
|
|
- //年合计手动停机小时(明细)
|
|
|
- pewp.setNhjsdtjxsmx(StringUtils.round(pepid.getNhjsdtjxsmx() + pewp.getRhjsdtjxsmx(), 2));
|
|
|
- //年合计性能小时(明细)
|
|
|
- pewp.setNhjbwxsmx(StringUtils.round(pepid.getNhjbwxsmx() + pewp.getRhjbwxsmx(), 2));
|
|
|
- //年合计限电停机小时(明细)
|
|
|
- pewp.setNhjxdtjxsmx(StringUtils.round(pepid.getNhjxdtjxsmx() + pewp.getRhjxdtjxsmx(), 2));
|
|
|
- //年合计限电降出力小时(明细)
|
|
|
- pewp.setNhjxdjclxsmx(StringUtils.round(pepid.getNhjxdjclxsmx() + pewp.getRhjxdjclxsmx(), 2));
|
|
|
- //年合计场外受累电网小时(明细)
|
|
|
- pewp.setNhjcwsldwxsmx(StringUtils.round(pepid.getNhjcwsldwxsmx() + pewp.getRhjcwsldwxsmx(), 2));
|
|
|
- //年合计场外受累电网小时(明细)
|
|
|
- pewp.setNhjcwsltqxsmx(StringUtils.round(pepid.getNhjcwsltqxsmx() + pewp.getRhjcwsltqxsmx(), 2));
|
|
|
- //年合计通讯中断小时(明细)
|
|
|
- pewp.setNhjtxzdxsmx(StringUtils.round(pepid.getNhjtxzdxsmx() + pewp.getRhjtxzdxsmx(), 2));
|
|
|
- //年合计离线小时(明细)
|
|
|
- pewp.setNhjlxxsmx(StringUtils.round(pepid.getNhjlxxsmx() + pewp.getRhjlxxsmx(), 2));
|
|
|
+ if (pep2map.containsKey(id)) {
|
|
|
+ List<ProEconEquipmentInfoDay2> pep2ls = pep2map.get(id);
|
|
|
+
|
|
|
+ if (!pep2ls.isEmpty()) {
|
|
|
+ DoubleSummaryStatistics summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNgzxsmx).summaryStatistics();
|
|
|
+ //年合计故障小时(明细)
|
|
|
+ pewp.setNhjgzxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计场内受累故障小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNcnslgzxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjcnslgzxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计检修小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNjxxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjjxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计场内受累检修小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNcnsljxxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjcnsljxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计待机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNdjxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjdjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计缺陷降出力小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNqxjclxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjqxjclxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计手动停机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNsdtjxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjsdtjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计性能小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNbwxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjbwxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计限电停机小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNxdtjxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjxdtjxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计限电降出力小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNxdjclxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjxdjclxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计场外受累电网小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNcwsldwxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjcwsldwxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计场外受累电网小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNcwsltqxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjcwsltqxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计通讯中断小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNtxzdxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjtxzdxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计离线小时(明细)
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNlxxsmx).summaryStatistics();
|
|
|
+ pewp.setNhjlxxsmx(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -1090,7 +1054,7 @@ public class WindPowerInfo2Service {
|
|
|
pewp.setNhjslxs(pewp.getRhjslxs());
|
|
|
}
|
|
|
|
|
|
- private void calSimple(ProEconPowerstationInfoDay2 pewp, Date end, Date begin, List<ProBasicEquipment> wtls, List<ProEconPowerstationInfoDay2> pepidls) throws Exception {
|
|
|
+ private void calSimple(ProEconPowerstationInfoDay2 pewp, String id,Map<String,List<ProEconEquipmentInfoDay2>> pep2map) throws Exception {
|
|
|
// 0 待机
|
|
|
// 1 运行
|
|
|
// 2 故障
|
|
@@ -1100,175 +1064,94 @@ public class WindPowerInfo2Service {
|
|
|
// 6 离线
|
|
|
//*******************************************日信息统计*********************************************************/
|
|
|
|
|
|
- double lastState = -1;//上一分钟状态
|
|
|
-
|
|
|
-
|
|
|
- double djsc = 0;//待机时长
|
|
|
- double zcfdsc = 0;//正常发电时长
|
|
|
- double gzsc = 0;//故障时长
|
|
|
- double jxsc = 0;//检修时长
|
|
|
- double xdtjsc = 0;//限电停机时长
|
|
|
- double slsc = 0;//受累时长
|
|
|
- double txzdsc = 0;//通讯中断时长
|
|
|
-
|
|
|
-
|
|
|
- Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
|
|
|
-
|
|
|
- for (ProBasicEquipment wt : wtls) {
|
|
|
- Map<String, ProBasicEquipmentPoint> aimap = wtpAimap.get(wt.getId());
|
|
|
- if (aimap.containsKey(ContantXk.SBZT)) {
|
|
|
-
|
|
|
- ProBasicEquipmentPoint point = aimap.get(ContantXk.SBZT);
|
|
|
- //按照分钟时间进行统计状态快照值
|
|
|
- List<PointData> pointls = edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime() / 1000, end.getTime() / 1000);
|
|
|
- if (!pointls.isEmpty()) {
|
|
|
- for (PointData po : pointls) {
|
|
|
-
|
|
|
- if (po.getPointValueInDouble() == 0) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //待机时长加1分钟
|
|
|
- djsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 1) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //正常发电时长加1分钟
|
|
|
- zcfdsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 2) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //故障时长加1分钟
|
|
|
- gzsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 3) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //检修时长加1分钟
|
|
|
- jxsc++;
|
|
|
-
|
|
|
- } else if (po.getPointValueInDouble() == 4) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //限电停机时长加1分钟
|
|
|
- xdtjsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 5) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //受累时长加1分钟
|
|
|
- slsc++;
|
|
|
-
|
|
|
- } else if (po.getPointValueInDouble() == 6) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
- //将当前状态保存到上一分钟状态
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
- //通讯中断时长加1分钟
|
|
|
- txzdsc++;
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
|
|
|
+ if (pep2map.containsKey(id)) {
|
|
|
+ List<ProEconEquipmentInfoDay2> pep2ls = pep2map.get(id);
|
|
|
+
|
|
|
+ if (!pep2ls.isEmpty()) {
|
|
|
+ DoubleSummaryStatistics summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRdjxs).summaryStatistics();
|
|
|
+ //日合计待机小时
|
|
|
+ pewp.setRhjdjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计维护停机小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRjxtjxs).summaryStatistics();
|
|
|
+ pewp.setRhjjxtjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ // 日合计待机小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRdjxs).summaryStatistics();
|
|
|
+ pewp.setRhjdjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计运行小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRyxxs).summaryStatistics();
|
|
|
+ pewp.setRhjyxxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计限电小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRxdxs).summaryStatistics();
|
|
|
+ pewp.setRhjxdxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计通讯中断小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRtxzdxs).summaryStatistics();
|
|
|
+ pewp.setRhjtxzdxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //日合计受累小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getRslxs).summaryStatistics();
|
|
|
+ pewp.setRhjslxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- //日合计待机小时
|
|
|
- pewp.setRhjdjxs(new BigDecimal(gzsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计维护停机小时
|
|
|
- pewp.setRhjjxtjxs(new BigDecimal(jxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- // 日合计待机小时
|
|
|
- pewp.setRhjdjxs(new BigDecimal(djsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计运行小时
|
|
|
- pewp.setRhjyxxs(new BigDecimal(zcfdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计限电小时
|
|
|
- pewp.setRhjxdxs(new BigDecimal(xdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计通讯中断小时
|
|
|
- pewp.setRhjtxzdxs(new BigDecimal(txzdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
- //日合计受累小时
|
|
|
- pewp.setRhjslxs(new BigDecimal(slsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
-
|
|
|
//*******************************************日信息统计*********************************************************/
|
|
|
|
|
|
//*******************************************月信息统计*********************************************************/
|
|
|
- if (pepidls.isEmpty()) {
|
|
|
- setLossHoursMonthSimple(pewp);
|
|
|
-
|
|
|
- } else {
|
|
|
-
|
|
|
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
|
|
|
-
|
|
|
-
|
|
|
- //月合计待机小时
|
|
|
- pewp.setYhjdjxs(StringUtils.round(pepid.getYhjdjxs() + pewp.getRhjdjxs(), 2));
|
|
|
- //月合计维护停机小时
|
|
|
- pewp.setYhjjxtjxs(StringUtils.round(pepid.getYhjjxtjxs() + pewp.getRhjjxtjxs(), 2));
|
|
|
- // 月合计故障小时
|
|
|
- pewp.setYhjgztjxs(StringUtils.round(pepid.getYhjgztjxs() + pewp.getRhjgztjxs(), 2));
|
|
|
- //月合计运行小时
|
|
|
- pewp.setYhjyxxs(StringUtils.round(pepid.getYhjyxxs() + pewp.getRhjyxxs(), 2));
|
|
|
- //月合计限电小时
|
|
|
- pewp.setYhjxdxs(StringUtils.round(pepid.getYhjxdxs() + pewp.getRhjxdxs(), 2));
|
|
|
- //月合计通讯中断小时
|
|
|
- pewp.setYhjtxzdxs(StringUtils.round(pepid.getYhjtxzdxs() + pewp.getRhjtxzdxs(), 2));
|
|
|
- //月合计受累小时
|
|
|
- pewp.setYhjslxs(StringUtils.round(pepid.getYhjslxs() + pewp.getRhjslxs(), 2));
|
|
|
-
|
|
|
+ if (pep2map.containsKey(id)) {
|
|
|
+ List<ProEconEquipmentInfoDay2> pep2ls = pep2map.get(id);
|
|
|
+
|
|
|
+ if (!pep2ls.isEmpty()) {
|
|
|
+ DoubleSummaryStatistics summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYdjxs).summaryStatistics();
|
|
|
+ //月合计待机小时
|
|
|
+ pewp.setYhjdjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计维护停机小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYjxtjxs).summaryStatistics();
|
|
|
+ pewp.setYhjjxtjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ // 月合计待机小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYdjxs).summaryStatistics();
|
|
|
+ pewp.setYhjdjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计运行小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYyxxs).summaryStatistics();
|
|
|
+ pewp.setYhjyxxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计限电小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYxdxs).summaryStatistics();
|
|
|
+ pewp.setYhjxdxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计通讯中断小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYtxzdxs).summaryStatistics();
|
|
|
+ pewp.setYhjtxzdxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //月合计受累小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getYslxs).summaryStatistics();
|
|
|
+ pewp.setYhjslxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ }
|
|
|
}
|
|
|
//*******************************************月信息统计*********************************************************/
|
|
|
|
|
|
//*******************************************年信息统计*********************************************************/
|
|
|
- if (pepidls.isEmpty()) {
|
|
|
- setLossHoursYearSimple(pewp);
|
|
|
-
|
|
|
- } else {
|
|
|
-
|
|
|
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
|
|
|
-
|
|
|
-
|
|
|
- //年合计待机小时
|
|
|
- pewp.setNhjdjxs(StringUtils.round(pepid.getNhjdjxs() + pewp.getRhjdjxs(), 2));
|
|
|
- //年合计维护停机小时
|
|
|
- pewp.setNhjjxtjxs(StringUtils.round(pepid.getNhjjxtjxs() + pewp.getRhjjxtjxs(), 2));
|
|
|
- // 年合计故障小时
|
|
|
- pewp.setNhjgztjxs(StringUtils.round(pepid.getNhjgztjxs() + pewp.getRhjgztjxs(), 2));
|
|
|
- //年合计运行小时
|
|
|
- pewp.setNhjyxxs(StringUtils.round(pepid.getNhjyxxs() + pewp.getRhjyxxs(), 2));
|
|
|
- //年合计限电小时
|
|
|
- pewp.setNhjxdxs(StringUtils.round(pepid.getNhjxdxs() + pewp.getRhjxdxs(), 2));
|
|
|
- //年合计通讯中断小时
|
|
|
- pewp.setNhjtxzdxs(StringUtils.round(pepid.getNhjtxzdxs() + pewp.getRhjtxzdxs(), 2));
|
|
|
- //年合计受累小时
|
|
|
- pewp.setNhjslxs(StringUtils.round(pepid.getNhjslxs() + pewp.getRhjslxs(), 2));
|
|
|
-
|
|
|
+ if (pep2map.containsKey(id)) {
|
|
|
+ List<ProEconEquipmentInfoDay2> pep2ls = pep2map.get(id);
|
|
|
+
|
|
|
+ if (!pep2ls.isEmpty()) {
|
|
|
+ DoubleSummaryStatistics summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNdjxs).summaryStatistics();
|
|
|
+ //年合计待机小时
|
|
|
+ pewp.setNhjdjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计维护停机小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNjxtjxs).summaryStatistics();
|
|
|
+ pewp.setNhjjxtjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ // 年合计待机小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNdjxs).summaryStatistics();
|
|
|
+ pewp.setNhjdjxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计运行小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNyxxs).summaryStatistics();
|
|
|
+ pewp.setNhjyxxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计限电小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNxdxs).summaryStatistics();
|
|
|
+ pewp.setNhjxdxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计通讯中断小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNtxzdxs).summaryStatistics();
|
|
|
+ pewp.setNhjtxzdxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ //年合计受累小时
|
|
|
+ summaryStatistics = pep2ls.stream().mapToDouble(ProEconEquipmentInfoDay2::getNslxs).summaryStatistics();
|
|
|
+ pewp.setNhjslxs(StringUtils.round(summaryStatistics.getSum(), 2));
|
|
|
+ }
|
|
|
}
|
|
|
//*******************************************年信息统计*********************************************************/
|
|
|
}
|