|
@@ -1,20 +1,23 @@
|
|
|
package com.gyee.power.fitting.controller.gf;
|
|
|
|
|
|
+import cn.hutool.core.date.DateField;
|
|
|
+import cn.hutool.core.date.DateRange;
|
|
|
+import cn.hutool.core.date.DateTime;
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
import cn.hutool.core.util.NumberUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.gyee.power.fitting.common.result.JsonResult;
|
|
|
import com.gyee.power.fitting.common.result.ResultCode;
|
|
|
import com.gyee.power.fitting.dispersionanalysis.InverterPowerAnalysis2;
|
|
|
-import com.gyee.power.fitting.model.Device;
|
|
|
-import com.gyee.power.fitting.model.PhotovoltaicAnalysis;
|
|
|
-import com.gyee.power.fitting.model.ProBasicEquipment;
|
|
|
-import com.gyee.power.fitting.model.StateCause;
|
|
|
+import com.gyee.power.fitting.dispersionanalysis.ReliabilityCalculator;
|
|
|
+import com.gyee.power.fitting.model.*;
|
|
|
import com.gyee.power.fitting.service.IPhotovoltaicAnalysisService;
|
|
|
import com.gyee.power.fitting.service.IStateCauseService;
|
|
|
import com.gyee.power.fitting.service.ProBasicEquipmentService;
|
|
|
+import com.gyee.power.fitting.service.ProBasicPowerstationService;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
@@ -23,6 +26,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
import javax.annotation.Resource;
|
|
|
import java.util.*;
|
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
|
+import java.util.function.Function;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
@@ -45,6 +49,10 @@ public class PhotovoltaicAnalysisController {
|
|
|
private IStateCauseService stateCauseService;
|
|
|
@Resource
|
|
|
private InverterPowerAnalysis2 inverterPowerAnalysis;
|
|
|
+ @Resource
|
|
|
+ private ProBasicPowerstationService powerstationService;
|
|
|
+ @Resource
|
|
|
+ private ReliabilityCalculator reliabilityCalculator;
|
|
|
|
|
|
//状态转换
|
|
|
@GetMapping("/state_transition")
|
|
@@ -69,7 +77,7 @@ public class PhotovoltaicAnalysisController {
|
|
|
.ge("start_time", startTime).lt("end_time", endTime)
|
|
|
.orderByAsc("equipment_id,start_time");
|
|
|
List<StateCause> list = stateCauseService.list(scWrapper);
|
|
|
- Map<String, List<StateCause>> listMap = list.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId,LinkedHashMap::new,Collectors.toList()));
|
|
|
+ Map<String, List<StateCause>> listMap = list.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId, LinkedHashMap::new, Collectors.toList()));
|
|
|
// PageMap<StateCause> stateCauses = (PageMap<StateCause>) stateCauseService.page(page, scWrapper);
|
|
|
|
|
|
// stateCauses.setRecordMap(stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId)));
|
|
@@ -108,7 +116,7 @@ public class PhotovoltaicAnalysisController {
|
|
|
.ge("start_time", startTime).lt("end_time", endTime);
|
|
|
scWrapper.groupBy("equipment_id,event").orderByAsc("equipment_id");
|
|
|
List<StateCause> causePage = stateCauseService.list(scWrapper);
|
|
|
- Map<String, List<StateCause>> listMap = causePage.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId,LinkedHashMap::new,Collectors.toList()));
|
|
|
+ Map<String, List<StateCause>> listMap = causePage.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId, LinkedHashMap::new, Collectors.toList()));
|
|
|
List<Device> deviceList = statecauses2Devices(listMap);
|
|
|
/*PageMap<StateCause> pageMap = new PageMap<>();
|
|
|
pageMap.
|
|
@@ -131,6 +139,132 @@ public class PhotovoltaicAnalysisController {
|
|
|
return JsonResult.successData(ResultCode.SUCCESS, map);
|
|
|
}
|
|
|
|
|
|
+ //MTBF&MTTR
|
|
|
+ @GetMapping("/mtbf_mttr")
|
|
|
+ public JSONObject getMtbfAndMttr(
|
|
|
+ @RequestParam(value = "companyId", required = false) String companyId,
|
|
|
+ @RequestParam(value = "stationId", required = false) String stationId,
|
|
|
+ @RequestParam("time") String time,
|
|
|
+ @RequestParam("type") String type,
|
|
|
+ @RequestParam("timeType") String timeType,
|
|
|
+ @RequestParam(value = "pageNum", required = false) Integer pageNum,
|
|
|
+ @RequestParam(value = "pageSize", required = false) Integer pageSize) {
|
|
|
+
|
|
|
+ Date date, startDate, endDate;
|
|
|
+ DateRange range = null;
|
|
|
+ if ("year".equals(timeType)) {
|
|
|
+ date = DateUtil.parse(time, "yyyy");
|
|
|
+ startDate = DateUtil.beginOfYear(date);
|
|
|
+ endDate = DateUtil.endOfYear(date);
|
|
|
+ range = DateUtil.range(startDate, endDate, DateField.MONTH);
|
|
|
+ } else if ("month".equals(timeType)) {
|
|
|
+ date = DateUtil.parse(time, "yyyy-MM");
|
|
|
+ startDate = DateUtil.beginOfMonth(date);
|
|
|
+ endDate = DateUtil.endOfMonth(date);
|
|
|
+ } else {
|
|
|
+ date = DateUtil.parse(time);
|
|
|
+ startDate = DateUtil.beginOfDay(date);
|
|
|
+ endDate = DateUtil.endOfDay(date);
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, ProBasicPowerstation> stationMap = powerstationService.getCacheList(companyId, type)
|
|
|
+ .stream().collect(Collectors.toMap(ProBasicPowerstation::getId, Function.identity()));
|
|
|
+ List<MtbfAndMttr> mttrs = new ArrayList<>();
|
|
|
+ List<MtbfAndMttr> mtbfs = new ArrayList<>();
|
|
|
+ for (String stId : stationMap.keySet()) {
|
|
|
+ MtbfAndMttr mt = new MtbfAndMttr();
|
|
|
+ mt.setStationId(stId);
|
|
|
+ mt.setStationName(stationMap.get(stId).getName());
|
|
|
+ mttrs.add(mt);
|
|
|
+ MtbfAndMttr mt2 = new MtbfAndMttr();
|
|
|
+ mt2.setStationId(stId);
|
|
|
+ mt2.setStationName(stationMap.get(stId).getName());
|
|
|
+ mtbfs.add(mt2);
|
|
|
+ }
|
|
|
+ Map<String, MtbfAndMttr> mttrMap = mttrs.stream().collect(Collectors.toMap(MtbfAndMttr::getStationId, Function.identity()));
|
|
|
+ Map<String, MtbfAndMttr> mtbfMap = mtbfs.stream().collect(Collectors.toMap(MtbfAndMttr::getStationId, Function.identity()));
|
|
|
+
|
|
|
+ for (DateTime dateTime : range) {
|
|
|
+ DateTime endOfMonth = DateUtil.endOfMonth(dateTime);
|
|
|
+
|
|
|
+ //故障
|
|
|
+ QueryWrapper<StateCause> gzWrapper = new QueryWrapper<>();
|
|
|
+ gzWrapper.select("station_id,count(*) time");
|
|
|
+ gzWrapper.eq("state_type", "8种状态").in("station_id", stationMap.keySet())
|
|
|
+ .eq("event", 2)
|
|
|
+ .ge("start_time", dateTime).lt("end_time", endOfMonth);
|
|
|
+ gzWrapper.groupBy("station_id");
|
|
|
+// List<StateCause> gzlist = ;
|
|
|
+ Map<String, StateCause> gzMap = stateCauseService.list(gzWrapper)
|
|
|
+ .stream().collect(Collectors.toMap(StateCause::getStationId, Function.identity()));
|
|
|
+
|
|
|
+ //维修
|
|
|
+ QueryWrapper<StateCause> wxWrapper = new QueryWrapper<>();
|
|
|
+ wxWrapper.select("station_id,sum(time)/3600 hour,count(*) time");
|
|
|
+ wxWrapper.eq("state_type", "8种状态").in("station_id", stationMap.keySet())
|
|
|
+ .eq("event", 3)
|
|
|
+ .ge("start_time", dateTime).lt("end_time", endOfMonth);
|
|
|
+ wxWrapper.groupBy("station_id");
|
|
|
+// List<StateCause> wxlist = ;
|
|
|
+ Map<String, StateCause> wxMap = stateCauseService.list(wxWrapper)
|
|
|
+ .stream().collect(Collectors.toMap(StateCause::getStationId, Function.identity()));
|
|
|
+
|
|
|
+ for (String stId : stationMap.keySet()) {
|
|
|
+ StateCause wx = wxMap.get(stId);
|
|
|
+ double wxh = 0, wxt = 0;
|
|
|
+ if (wx != null) {
|
|
|
+ wxh = wx.getHour();
|
|
|
+ wxt = wx.getTime();
|
|
|
+ }
|
|
|
+ double mttr = reliabilityCalculator.calculateMTTR(wxh, (int) wxt);
|
|
|
+ double l = (endOfMonth.getTime() - dateTime.getTime()) / 3600000.0;
|
|
|
+ double mtbf = reliabilityCalculator.calculateMTBF(l, gzMap.get(stId)==null?0: gzMap.get(stId).getTime().intValue());
|
|
|
+ if (DateUtil.month(dateTime) == 0) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth01(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth01(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 1) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth02(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth02(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 2) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth03(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth03(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 3) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth04(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth04(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 4) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth05(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth05(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 5) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth06(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth06(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 6) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth07(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth07(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 7) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth08(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth08(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 8) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth09(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth09(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 9) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth10(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth10(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 10) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth11(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth11(mtbf);
|
|
|
+ } else if (DateUtil.month(dateTime) == 11) {
|
|
|
+ mttrMap.get(stId).setCurrentMonth12(mttr);
|
|
|
+ mtbfMap.get(stId).setCurrentMonth12(mtbf);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("MTBF", mtbfs);
|
|
|
+ map.put("MTTR", mttrs);
|
|
|
+
|
|
|
+ return JsonResult.successData(ResultCode.SUCCESS, map);
|
|
|
+ }
|
|
|
+
|
|
|
private List<Device> statecauses2Devices(Map<String, List<StateCause>> listMap) {
|
|
|
List<Device> deviceList = new ArrayList<>();
|
|
|
listMap.forEach((wt, scs) -> {
|
|
@@ -164,7 +298,7 @@ public class PhotovoltaicAnalysisController {
|
|
|
break;
|
|
|
}
|
|
|
});
|
|
|
- device.setTotal(NumberUtil.round(sum.get(),2).doubleValue());
|
|
|
+ device.setTotal(NumberUtil.round(sum.get(), 2).doubleValue());
|
|
|
deviceList.add(device);
|
|
|
});
|
|
|
return deviceList;
|
|
@@ -247,7 +381,7 @@ public class PhotovoltaicAnalysisController {
|
|
|
|
|
|
list.setRecords(list.getRecords().stream().peek(pa -> {
|
|
|
pa.setEquipmentId(collect.get(pa.getEquipmentId()));
|
|
|
- pa.setScatterStatus(inverterPowerAnalysis.analyzeInverterStatus(pa.getScatter(),pa.getAveragePower()));
|
|
|
+ pa.setScatterStatus(inverterPowerAnalysis.analyzeInverterStatus(pa.getScatter(), pa.getAveragePower()));
|
|
|
}).collect(Collectors.toList()));
|
|
|
return JsonResult.successData(ResultCode.SUCCESS, list);
|
|
|
}
|