PhotovoltaicAnalysisController.java 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. package com.gyee.power.fitting.controller.gf;
  2. import cn.hutool.core.date.DateField;
  3. import cn.hutool.core.date.DateRange;
  4. import cn.hutool.core.date.DateTime;
  5. import cn.hutool.core.date.DateUtil;
  6. import cn.hutool.core.util.NumberUtil;
  7. import cn.hutool.core.util.StrUtil;
  8. import com.alibaba.fastjson.JSONObject;
  9. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  10. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  11. import com.gyee.power.fitting.common.result.JsonResult;
  12. import com.gyee.power.fitting.common.result.ResultCode;
  13. import com.gyee.power.fitting.dispersionanalysis.InverterPowerAnalysis2;
  14. import com.gyee.power.fitting.dispersionanalysis.ReliabilityCalculator;
  15. import com.gyee.power.fitting.model.*;
  16. import com.gyee.power.fitting.service.IPhotovoltaicAnalysisService;
  17. import com.gyee.power.fitting.service.IStateCauseService;
  18. import com.gyee.power.fitting.service.ProBasicEquipmentService;
  19. import com.gyee.power.fitting.service.ProBasicPowerstationService;
  20. import org.springframework.web.bind.annotation.GetMapping;
  21. import org.springframework.web.bind.annotation.RequestMapping;
  22. import org.springframework.web.bind.annotation.RequestParam;
  23. import org.springframework.web.bind.annotation.RestController;
  24. import javax.annotation.Resource;
  25. import java.util.*;
  26. import java.util.concurrent.atomic.AtomicReference;
  27. import java.util.function.Function;
  28. import java.util.stream.Collectors;
  29. /**
  30. * <p>
  31. * 光伏分析 前端控制器
  32. * </p>
  33. *
  34. * @author gfhd
  35. * @since 2023-10-13
  36. */
  37. @RestController
  38. @RequestMapping("/photovoltaic")
  39. public class PhotovoltaicAnalysisController {
  40. @Resource
  41. private IPhotovoltaicAnalysisService photovoltaicAnalysisService;
  42. @Resource
  43. private ProBasicEquipmentService proBasicEquipmentService;
  44. @Resource
  45. private IStateCauseService stateCauseService;
  46. @Resource
  47. private InverterPowerAnalysis2 inverterPowerAnalysis;
  48. @Resource
  49. private ProBasicPowerstationService powerstationService;
  50. @Resource
  51. private ReliabilityCalculator reliabilityCalculator;
  52. //状态转换
  53. @GetMapping("/state_transition")
  54. public JSONObject stateTransition(
  55. @RequestParam("stationId") String stationId,
  56. @RequestParam("startTime") Long startTime,
  57. @RequestParam("endTime") Long endTime,
  58. @RequestParam("type") String type,
  59. @RequestParam("pageNum") int pageNum,
  60. @RequestParam("pageSize") int pageSize) {
  61. List<ProBasicEquipment> equipments = proBasicEquipmentService.getStationMap(type).get(stationId);
  62. if (equipments == null) return JsonResult.successData(ResultCode.SUCCESS, new HashMap<>());
  63. Map<String, String> stringMap = equipments.stream().collect(Collectors.toMap(ProBasicEquipment::getId, ProBasicEquipment::getNemCode));
  64. List<String> collect = equipments.stream().map(ProBasicEquipment::getId).collect(Collectors.toList());
  65. List<String> pageItems = collect.subList(pageSize * (pageNum - 1), Math.min(collect.size(), pageSize * pageNum));
  66. QueryWrapper<StateCause> scWrapper = new QueryWrapper<>();
  67. // Page<StateCause> page = new Page<>(pageNum, pageSize);
  68. scWrapper.eq("state_type", "8种状态").in("equipment_id", pageItems)
  69. .ge("start_time", startTime).lt("end_time", endTime)
  70. .orderByAsc("equipment_id,start_time");
  71. List<StateCause> list = stateCauseService.list(scWrapper);
  72. Map<String, List<StateCause>> listMap = list.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId, LinkedHashMap::new, Collectors.toList()));
  73. // PageMap<StateCause> stateCauses = (PageMap<StateCause>) stateCauseService.page(page, scWrapper);
  74. // stateCauses.setRecordMap(stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId)));
  75. // stateCauses.setRecords(Collections.emptyList());
  76. Map<String, Object> map = new HashMap<>();
  77. map.put("total", collect.size());
  78. map.put("size", listMap.size());
  79. map.put("current", pageNum);
  80. map.put("data", listMap);
  81. return JsonResult.successData(ResultCode.SUCCESS, map);
  82. }
  83. //状态时间
  84. @GetMapping("/state_time")
  85. public JSONObject stateTime(
  86. @RequestParam("stationId") String stationId,
  87. @RequestParam("startTime") Long startTime,
  88. @RequestParam("endTime") Long endTime,
  89. @RequestParam("type") String type,
  90. @RequestParam("pageNum") int pageNum,
  91. @RequestParam("pageSize") int pageSize) {
  92. Map<String, List<ProBasicEquipment>> stationMap = proBasicEquipmentService.getStationMap(type);
  93. List<ProBasicEquipment> equipments = stationMap.get(stationId);
  94. if (equipments == null) return JsonResult.successData(ResultCode.SUCCESS, new HashMap<>());
  95. Map<String, String> stringMap = equipments.stream().collect(Collectors.toMap(ProBasicEquipment::getId, ProBasicEquipment::getNemCode));
  96. List<String> collect = equipments.stream().map(ProBasicEquipment::getId).collect(Collectors.toList());
  97. List<String> pageItems = collect.subList(pageSize * (pageNum - 1), Math.min(collect.size(), pageSize * pageNum));
  98. QueryWrapper<StateCause> scWrapper = new QueryWrapper<>();
  99. // Page<StateCause> page = new Page<>(pageNum, pageSize);
  100. scWrapper.select("equipment_id,event,sum(time)/3600 hour");
  101. scWrapper.eq("state_type", "8种状态").in("equipment_id", pageItems)
  102. .ge("start_time", startTime).lt("end_time", endTime);
  103. scWrapper.groupBy("equipment_id,event").orderByAsc("equipment_id");
  104. List<StateCause> causePage = stateCauseService.list(scWrapper);
  105. Map<String, List<StateCause>> listMap = causePage.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId, LinkedHashMap::new, Collectors.toList()));
  106. List<Device> deviceList = statecauses2Devices(listMap);
  107. /*PageMap<StateCause> pageMap = new PageMap<>();
  108. pageMap.
  109. PageMap<StateCause> stateCauses = (PageMap<StateCause>) causePage;
  110. Map<String, Map<Short, Double>> collect = stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId,
  111. Collectors.groupingBy(StateCause::getEvent, Collectors.summingDouble(t -> t.getTime() / (60 * 24.0)))));
  112. stateCauses.setRecordMap(collect);
  113. stateCauses.setRecords(Collections.emptyList());*/
  114. // protected long total;
  115. // protected long size;
  116. // protected long current;
  117. Map<String, Object> map = new HashMap<>();
  118. map.put("total", collect.size());
  119. map.put("size", deviceList.size());
  120. map.put("current", pageNum);
  121. map.put("data", deviceList);
  122. return JsonResult.successData(ResultCode.SUCCESS, map);
  123. }
  124. //MTBF&MTTR
  125. @GetMapping("/mtbf_mttr")
  126. public JSONObject getMtbfAndMttr(
  127. @RequestParam(value = "companyId", required = false) String companyId,
  128. @RequestParam(value = "stationId", required = false) String stationId,
  129. @RequestParam("time") String time,
  130. @RequestParam("type") String type,
  131. @RequestParam("timeType") String timeType,
  132. @RequestParam(value = "pageNum", required = false) Integer pageNum,
  133. @RequestParam(value = "pageSize", required = false) Integer pageSize) {
  134. Date date, startDate, endDate;
  135. DateRange range = null;
  136. if ("year".equals(timeType)) {
  137. date = DateUtil.parse(time, "yyyy");
  138. startDate = DateUtil.beginOfYear(date);
  139. endDate = DateUtil.endOfYear(date);
  140. range = DateUtil.range(startDate, endDate, DateField.MONTH);
  141. } else if ("month".equals(timeType)) {
  142. date = DateUtil.parse(time, "yyyy-MM");
  143. startDate = DateUtil.beginOfMonth(date);
  144. endDate = DateUtil.endOfMonth(date);
  145. } else {
  146. date = DateUtil.parse(time);
  147. startDate = DateUtil.beginOfDay(date);
  148. endDate = DateUtil.endOfDay(date);
  149. }
  150. Map<String, ProBasicPowerstation> stationMap = powerstationService.getCacheList(companyId, type)
  151. .stream().collect(Collectors.toMap(ProBasicPowerstation::getId, Function.identity()));
  152. List<MtbfAndMttr> mttrs = new ArrayList<>();
  153. List<MtbfAndMttr> mtbfs = new ArrayList<>();
  154. for (String stId : stationMap.keySet()) {
  155. MtbfAndMttr mt = new MtbfAndMttr();
  156. mt.setStationId(stId);
  157. mt.setStationName(stationMap.get(stId).getName());
  158. mttrs.add(mt);
  159. MtbfAndMttr mt2 = new MtbfAndMttr();
  160. mt2.setStationId(stId);
  161. mt2.setStationName(stationMap.get(stId).getName());
  162. mtbfs.add(mt2);
  163. }
  164. Map<String, MtbfAndMttr> mttrMap = mttrs.stream().collect(Collectors.toMap(MtbfAndMttr::getStationId, Function.identity()));
  165. Map<String, MtbfAndMttr> mtbfMap = mtbfs.stream().collect(Collectors.toMap(MtbfAndMttr::getStationId, Function.identity()));
  166. for (DateTime dateTime : range) {
  167. DateTime endOfMonth = DateUtil.endOfMonth(dateTime);
  168. //故障
  169. QueryWrapper<StateCause> gzWrapper = new QueryWrapper<>();
  170. gzWrapper.select("station_id,count(*) time");
  171. gzWrapper.eq("state_type", "8种状态").in("station_id", stationMap.keySet())
  172. .eq("event", 2)
  173. .ge("start_time", dateTime).lt("end_time", endOfMonth);
  174. gzWrapper.groupBy("station_id");
  175. // List<StateCause> gzlist = ;
  176. Map<String, StateCause> gzMap = stateCauseService.list(gzWrapper)
  177. .stream().collect(Collectors.toMap(StateCause::getStationId, Function.identity()));
  178. //维修
  179. QueryWrapper<StateCause> wxWrapper = new QueryWrapper<>();
  180. wxWrapper.select("station_id,sum(time)/3600 hour,count(*) time");
  181. wxWrapper.eq("state_type", "8种状态").in("station_id", stationMap.keySet())
  182. .eq("event", 3)
  183. .ge("start_time", dateTime).lt("end_time", endOfMonth);
  184. wxWrapper.groupBy("station_id");
  185. // List<StateCause> wxlist = ;
  186. Map<String, StateCause> wxMap = stateCauseService.list(wxWrapper)
  187. .stream().collect(Collectors.toMap(StateCause::getStationId, Function.identity()));
  188. for (String stId : stationMap.keySet()) {
  189. StateCause wx = wxMap.get(stId);
  190. double wxh = 0, wxt = 0;
  191. if (wx != null) {
  192. wxh = wx.getHour();
  193. wxt = wx.getTime();
  194. }
  195. double mttr = reliabilityCalculator.calculateMTTR(wxh, (int) wxt);
  196. double l = (endOfMonth.getTime() - dateTime.getTime()) / 3600000.0;
  197. double mtbf = reliabilityCalculator.calculateMTBF(l, gzMap.get(stId)==null?0: gzMap.get(stId).getTime().intValue());
  198. if (DateUtil.month(dateTime) == 0) {
  199. mttrMap.get(stId).setCurrentMonth01(mttr);
  200. mtbfMap.get(stId).setCurrentMonth01(mtbf);
  201. } else if (DateUtil.month(dateTime) == 1) {
  202. mttrMap.get(stId).setCurrentMonth02(mttr);
  203. mtbfMap.get(stId).setCurrentMonth02(mtbf);
  204. } else if (DateUtil.month(dateTime) == 2) {
  205. mttrMap.get(stId).setCurrentMonth03(mttr);
  206. mtbfMap.get(stId).setCurrentMonth03(mtbf);
  207. } else if (DateUtil.month(dateTime) == 3) {
  208. mttrMap.get(stId).setCurrentMonth04(mttr);
  209. mtbfMap.get(stId).setCurrentMonth04(mtbf);
  210. } else if (DateUtil.month(dateTime) == 4) {
  211. mttrMap.get(stId).setCurrentMonth05(mttr);
  212. mtbfMap.get(stId).setCurrentMonth05(mtbf);
  213. } else if (DateUtil.month(dateTime) == 5) {
  214. mttrMap.get(stId).setCurrentMonth06(mttr);
  215. mtbfMap.get(stId).setCurrentMonth06(mtbf);
  216. } else if (DateUtil.month(dateTime) == 6) {
  217. mttrMap.get(stId).setCurrentMonth07(mttr);
  218. mtbfMap.get(stId).setCurrentMonth07(mtbf);
  219. } else if (DateUtil.month(dateTime) == 7) {
  220. mttrMap.get(stId).setCurrentMonth08(mttr);
  221. mtbfMap.get(stId).setCurrentMonth08(mtbf);
  222. } else if (DateUtil.month(dateTime) == 8) {
  223. mttrMap.get(stId).setCurrentMonth09(mttr);
  224. mtbfMap.get(stId).setCurrentMonth09(mtbf);
  225. } else if (DateUtil.month(dateTime) == 9) {
  226. mttrMap.get(stId).setCurrentMonth10(mttr);
  227. mtbfMap.get(stId).setCurrentMonth10(mtbf);
  228. } else if (DateUtil.month(dateTime) == 10) {
  229. mttrMap.get(stId).setCurrentMonth11(mttr);
  230. mtbfMap.get(stId).setCurrentMonth11(mtbf);
  231. } else if (DateUtil.month(dateTime) == 11) {
  232. mttrMap.get(stId).setCurrentMonth12(mttr);
  233. mtbfMap.get(stId).setCurrentMonth12(mtbf);
  234. }
  235. }
  236. }
  237. Map<String, Object> map = new HashMap<>();
  238. map.put("MTBF", mtbfs);
  239. map.put("MTTR", mttrs);
  240. return JsonResult.successData(ResultCode.SUCCESS, map);
  241. }
  242. private List<Device> statecauses2Devices(Map<String, List<StateCause>> listMap) {
  243. List<Device> deviceList = new ArrayList<>();
  244. listMap.forEach((wt, scs) -> {
  245. Device device = new Device();
  246. device.setStationId(scs.get(0).getStationId());
  247. device.setDeviceId(wt);
  248. AtomicReference<Double> sum = new AtomicReference<>((double) 0);
  249. scs.forEach(sc -> {
  250. sum.updateAndGet(v -> v + sc.getHour());
  251. switch (sc.getEvent()) {
  252. case 0:
  253. device.setStandbyTime(sc.getHour());
  254. break;
  255. case 1:
  256. device.setGridConnectionTime(sc.getHour());
  257. break;
  258. case 2:
  259. device.setFaultTime(sc.getHour());
  260. break;
  261. case 3:
  262. device.setMaintenanceTime(sc.getHour());
  263. break;
  264. case 4:
  265. device.setPowerLimitTime(sc.getHour());
  266. break;
  267. case 5:
  268. device.setStressedTime(sc.getHour());
  269. break;
  270. case 6:
  271. device.setOfflineTime(sc.getHour());
  272. break;
  273. }
  274. });
  275. device.setTotal(NumberUtil.round(sum.get(), 2).doubleValue());
  276. deviceList.add(device);
  277. });
  278. return deviceList;
  279. }
  280. //性能等级评估
  281. @GetMapping("/analysis")
  282. public JSONObject photovoltaicAnalysis(
  283. @RequestParam("stationId") String stationId,
  284. @RequestParam("time") String time,
  285. @RequestParam("timeType") String timeType,
  286. @RequestParam("pageNum") int pageNum,
  287. @RequestParam("pageSize") int pageSize) {
  288. Date date, startDate, endDate;
  289. if ("year".equals(timeType)) {
  290. date = DateUtil.parse(time, "yyyy");
  291. startDate = DateUtil.beginOfYear(date);
  292. endDate = DateUtil.endOfYear(date);
  293. } else if ("month".equals(timeType)) {
  294. date = DateUtil.parse(time, "yyyy-MM");
  295. startDate = DateUtil.beginOfMonth(date);
  296. endDate = DateUtil.endOfMonth(date);
  297. } else {
  298. date = DateUtil.parse(time);
  299. startDate = DateUtil.beginOfDay(date);
  300. endDate = DateUtil.endOfDay(date);
  301. }
  302. QueryWrapper<PhotovoltaicAnalysis> wrapper = new QueryWrapper<>();
  303. wrapper.select("station_id,equipment_id,avg(scatter) scatter,avg(conversion_efficiency)" +
  304. " conversion_efficiency,sum(equivalent_generating_time) equivalent_generating_time," +
  305. "avg(device_availability) device_availability").between("data_date", startDate, endDate)
  306. .eq("station_id", stationId)
  307. .groupBy("station_id,equipment_id").orderByAsc("equipment_id");
  308. Page<PhotovoltaicAnalysis> page = new Page<>(pageNum, pageSize);
  309. Page<PhotovoltaicAnalysis> list = photovoltaicAnalysisService.page(page, wrapper);
  310. Map<String, String> collect = proBasicEquipmentService.getWtNcMap("IN");
  311. list.setRecords(list.getRecords().stream().peek(pa -> pa.setEquipmentId(collect.get(pa.getEquipmentId()))).collect(Collectors.toList()));
  312. return JsonResult.successData(ResultCode.SUCCESS, list);
  313. }
  314. //逆变器分析
  315. @GetMapping("/analysis/inverter")
  316. public JSONObject photovoltaicInverterAnalysis(
  317. @RequestParam("stationId") String stationId,
  318. @RequestParam("time") String time,
  319. @RequestParam("timeType") String timeType,
  320. @RequestParam("pageNum") int pageNum,
  321. @RequestParam("pageSize") int pageSize) {
  322. Date date, startDate, endDate;
  323. if ("year".equals(timeType)) {
  324. date = DateUtil.parse(time, "yyyy");
  325. startDate = DateUtil.beginOfYear(date);
  326. endDate = DateUtil.endOfYear(date);
  327. } else if ("month".equals(timeType)) {
  328. date = DateUtil.parse(time, "yyyy-MM");
  329. startDate = DateUtil.beginOfMonth(date);
  330. endDate = DateUtil.endOfMonth(date);
  331. } else {
  332. date = DateUtil.parse(time);
  333. startDate = DateUtil.beginOfDay(date);
  334. endDate = DateUtil.endOfDay(date);
  335. }
  336. QueryWrapper<PhotovoltaicAnalysis> wrapper = new QueryWrapper<>();
  337. wrapper.select("station_id,equipment_id,avg(average_light_intensity) average_light_intensity,avg(average_power)" +
  338. " average_power,avg(scatter) scatter,avg(equivalent_generating_time_stan) equivalent_generating_time_stan")
  339. .between("data_date", startDate, endDate)
  340. .eq("station_id", stationId)
  341. .groupBy("station_id,equipment_id").orderByAsc("equipment_id");
  342. Page<PhotovoltaicAnalysis> page = new Page<>(pageNum, pageSize);
  343. Page<PhotovoltaicAnalysis> list = photovoltaicAnalysisService.page(page, wrapper);
  344. Map<String, String> collect = proBasicEquipmentService.getWtNcMap("IN");
  345. list.setRecords(list.getRecords().stream().peek(pa -> {
  346. pa.setEquipmentId(collect.get(pa.getEquipmentId()));
  347. pa.setScatterStatus(inverterPowerAnalysis.analyzeInverterStatus(pa.getScatter(), pa.getAveragePower()));
  348. }).collect(Collectors.toList()));
  349. return JsonResult.successData(ResultCode.SUCCESS, list);
  350. }
  351. }