WindDirectionService.java 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. package com.gyee.runeconomy.service.WindDirection;
  2. import com.gyee.common.contant.ContantXk;
  3. import com.gyee.runeconomy.dto.result.PowerPointData;
  4. import com.gyee.runeconomy.init.CacheContext;
  5. import com.gyee.runeconomy.model.auto.ProBasicEquipment;
  6. import com.gyee.runeconomy.model.auto.ProBasicEquipmentPoint;
  7. import com.gyee.runeconomy.service.auto.IProBasicEquipmentPointService;
  8. import com.gyee.runeconomy.util.DateUtils;
  9. import com.gyee.runeconomy.util.realtimesource.feign.RemoteServiceBuilder;
  10. import com.gyee.runeconomy.util.realtimesource.feign.TsDoubleData;
  11. import org.springframework.stereotype.Service;
  12. import javax.annotation.Resource;
  13. import java.text.ParseException;
  14. import java.util.*;
  15. import java.util.function.Function;
  16. import java.util.stream.Collectors;
  17. @Service
  18. public class WindDirectionService {
  19. @Resource
  20. private IProBasicEquipmentPointService proBasicEquipmentPointService;
  21. @Resource
  22. private RemoteServiceBuilder remoteService;
  23. /**
  24. * 风向玫瑰图\风向频率玫瑰图
  25. *
  26. * @return
  27. */
  28. public Object fxRoses(String wtid, String kssj, String jssj) throws Exception {
  29. Date[] sjcl = DateUtils.sjcl(kssj, jssj);
  30. // 获取 startDate 和 endDate
  31. Date startDate = sjcl[0];
  32. Date endDate = sjcl[1];
  33. List<ProBasicEquipment> list = CacheContext.wtls.stream().filter(wt -> wtid.equals(wt.getId())).collect(Collectors.toList());
  34. if (list == null || list.size() == 0)
  35. return null;
  36. // 初始化设备点
  37. Map<EquipmentPointType, ProBasicEquipmentPoint> points = Arrays.stream(EquipmentPointType.values())
  38. .collect(Collectors.toMap(type -> type, type -> getEquipmentPoint(wtid, type)));
  39. // 获取历史数据
  40. Map<EquipmentPointType, List<TsDoubleData>> historyData = points.entrySet().stream()
  41. .collect(Collectors.toMap(Map.Entry::getKey,
  42. entry -> getSortedHistory(entry.getValue(), startDate.getTime(), endDate.getTime(), 900)));
  43. // 创建时间戳到数据的映射表
  44. Map<Long, TsDoubleData> pjfsMap = historyData.get(EquipmentPointType.PJFS).stream()
  45. .collect(Collectors.toMap(TsDoubleData::getTs, Function.identity(), (a, b) -> a));
  46. Map<Long, TsDoubleData> sbztMap = historyData.get(EquipmentPointType.SBZT).stream()
  47. .collect(Collectors.toMap(TsDoubleData::getTs, Function.identity(), (a, b) -> a));
  48. Map<Long, TsDoubleData> dfwcMap = historyData.get(EquipmentPointType.DFWC).stream()
  49. .collect(Collectors.toMap(TsDoubleData::getTs, Function.identity(), (a, b) -> a));
  50. Map<Long, TsDoubleData> phjdMap = historyData.get(EquipmentPointType.PHJD).stream()
  51. .collect(Collectors.toMap(TsDoubleData::getTs, Function.identity(), (a, b) -> a));
  52. Map<Long, TsDoubleData> glMap = historyData.get(EquipmentPointType.GL).stream()
  53. .collect(Collectors.toMap(TsDoubleData::getTs, Function.identity(), (a, b) -> a));
  54. // 构造结果数据
  55. List<PowerPointData> lslist = new ArrayList<>();
  56. for (TsDoubleData fxData : historyData.get(EquipmentPointType.PJFX)) {
  57. long ts = fxData.getTs();
  58. TsDoubleData fsData = pjfsMap.get(ts);
  59. TsDoubleData ztData = sbztMap.get(ts);
  60. TsDoubleData dfwcData = dfwcMap.get(ts);
  61. TsDoubleData phjdData = phjdMap.get(ts);
  62. TsDoubleData glData = glMap.get(ts);
  63. PowerPointData data = new PowerPointData();
  64. data.setTime(DateUtils.formatTimestamp(ts));
  65. data.setFx(fxData.getDoubleValue());
  66. data.setSpeed(fsData != null ? fsData.getDoubleValue() : 0);
  67. data.setMxzt(ztData != null ? (int) ztData.getDoubleValue() : 0);
  68. data.setDfwc(dfwcData != null ? dfwcData.getDoubleValue() : 0);
  69. data.setAngle(phjdData != null ? phjdData.getDoubleValue() : 0);
  70. data.setPower(glData != null ? glData.getDoubleValue() : 0);
  71. lslist.add(data);
  72. }
  73. List<Object> result = new ArrayList<>();
  74. for (ProBasicEquipment obj : list) {
  75. Map<String, Object> map = new HashMap<>();
  76. map.put("wt", obj.getAname());
  77. map.put("ys", WindALG.fxNewRoses(lslist));//风速、风向
  78. map.put("speeedtime", WindALG.speedtimeNewRoses(lslist));//风速
  79. map.put("roses", WindALG.fxysNewRoses(lslist));//风速、风向
  80. map.put("count", WindALG.fxNewCountRoses(lslist));//风速、风向
  81. map.put("radar", WindALG.fxRadarRoses(lslist));//对风误差
  82. map.put("frequency", WindALG.windDeviationPoint(lslist)); //风速、风向、明细状态、功率、偏航角度
  83. result.add(map);
  84. }
  85. return result;
  86. }
  87. /**
  88. * 对风偏差率
  89. */
  90. public List<Object> windDeviationRatio(String wtid, String kssj, String jssj) throws ParseException {
  91. Date[] sjcl = DateUtils.sjcl(kssj, jssj);
  92. // 获取 startDate 和 endDate
  93. Date startDate = sjcl[0];
  94. Date endDate = sjcl[1];
  95. List<Object> list = new ArrayList<>();
  96. // 初始化设备点
  97. Map<EquipmentPointType, ProBasicEquipmentPoint> points = Arrays.stream(EquipmentPointType.values())
  98. .collect(Collectors.toMap(type -> type, type -> getEquipmentPoint(wtid, type)));
  99. // 获取历史数据
  100. Map<EquipmentPointType, List<TsDoubleData>> historyData = points.entrySet().stream()
  101. .collect(Collectors.toMap(Map.Entry::getKey,
  102. entry -> getSortedHistory(entry.getValue(), startDate.getTime(), endDate.getTime(), 900)));
  103. // 创建时间戳到数据的映射表
  104. Map<Long, TsDoubleData> pjfsMap = historyData.get(EquipmentPointType.PJFS).stream()
  105. .collect(Collectors.toMap(TsDoubleData::getTs, Function.identity(), (a, b) -> a));
  106. Map<Long, TsDoubleData> dfwcMap = historyData.get(EquipmentPointType.DFWC).stream()
  107. .collect(Collectors.toMap(TsDoubleData::getTs, Function.identity(), (a, b) -> a));
  108. // 构造结果数据
  109. List<PowerPointData> lslist = new ArrayList<>();
  110. for (TsDoubleData fxData : historyData.get(EquipmentPointType.PJFX)) {
  111. long ts = fxData.getTs();
  112. TsDoubleData fsData = pjfsMap.get(ts);
  113. TsDoubleData dfwcData = dfwcMap.get(ts);
  114. PowerPointData data = new PowerPointData();
  115. data.setTime(DateUtils.formatTimestamp(ts));
  116. data.setFx(fxData.getDoubleValue());
  117. data.setSpeed(fsData != null ? fsData.getDoubleValue() : 0);
  118. data.setDfwc(dfwcData != null ? dfwcData.getDoubleValue() : 0);
  119. lslist.add(data);
  120. }
  121. List<ProBasicEquipment> listObj = CacheContext.wtls.stream().filter(wt -> wtid.equals(wt.getId())).collect(Collectors.toList());
  122. listObj.forEach(obj -> {
  123. int[] count = WindALG.windDeviationRatio(lslist);//风向、对风误差
  124. List<Point> scatter = WindALG.windDeviationScatter(lslist);//风速、风向、对风误差
  125. Map<String, Object> map = new HashMap<>();
  126. map.put("wtId", obj.getAname());
  127. map.put("count", count);
  128. map.put("scatter", scatter);
  129. list.add(map);
  130. });
  131. return list;
  132. }
  133. // 工具方法:获取设备点
  134. private ProBasicEquipmentPoint getEquipmentPoint(String wtid, EquipmentPointType type) {
  135. return proBasicEquipmentPointService.getEquipmentPoint(wtid, type.getCode());
  136. }
  137. // 工具方法:获取历史数据并排序
  138. private List<TsDoubleData> getSortedHistory(ProBasicEquipmentPoint point, long startTime, long endTime, int interval) {
  139. if (point == null) return new ArrayList<>();
  140. List<TsDoubleData> data = remoteService.adapterfd().getHistorySnap(point.getNemCode(), startTime, endTime, interval);
  141. data.sort(Comparator.comparing(TsDoubleData::getTs));
  142. return data;
  143. }
  144. // 枚举定义
  145. public enum EquipmentPointType {
  146. PJFS(ContantXk.CJ_SSFS),
  147. PJFX(ContantXk.CJ_FX),
  148. SBZT(ContantXk.MXZT),
  149. DFWC(ContantXk.CJ_DFJD),
  150. GL(ContantXk.CJ_SSGL),
  151. PHJD(ContantXk.CJ_PHJD);
  152. private final String code;
  153. EquipmentPointType(String code) {
  154. this.code = code;
  155. }
  156. public String getCode() {
  157. return code;
  158. }
  159. }
  160. }