WindMachineService.java 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package com.gyee.runeconomy.service.WindDirection;
  2. import com.gyee.runeconomy.init.CacheContext;
  3. import com.gyee.runeconomy.model.auto.*;
  4. import com.gyee.runeconomy.service.auto.ITurbineInfoDayService;
  5. import org.springframework.stereotype.Service;
  6. import javax.annotation.Resource;
  7. import java.time.LocalDate;
  8. import java.time.format.DateTimeFormatter;
  9. import java.util.*;
  10. import java.util.stream.Collectors;
  11. @Service
  12. public class WindMachineService {
  13. @Resource
  14. private ITurbineInfoDayService turbineInfoDayService;
  15. public Object machine(String wpid) throws Exception {
  16. // 获取当前日期
  17. int currentYear = LocalDate.now().getYear();
  18. List<ProBasicEquipment> collect = CacheContext.wtls.stream()
  19. .filter(wt -> wpid.equals(wt.getWindpowerstationId()))
  20. .collect(Collectors.toList());
  21. Map<String, List> monthlyData = new LinkedHashMap<>();
  22. // 风机循环:每台风机每个月一个 WindData 对象
  23. for (ProBasicEquipment eq : collect) {
  24. // 获取当前年份的开始日期(1月1日)
  25. LocalDate startOfYear = LocalDate.of(currentYear, 1, 1);
  26. // 获取当前年份的结束日期(12月31日)
  27. LocalDate endOfYear = LocalDate.of(currentYear, 12, 31);
  28. // 使用 DateTimeFormatter 格式化日期为字符串
  29. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
  30. // 转换为字符串
  31. String startOfYearStr = startOfYear.format(formatter);
  32. String endOfYearStr = endOfYear.format(formatter);
  33. List<TurbineInfoDay> turbineList = turbineInfoDayService.getTurbineList(eq.getId(), startOfYearStr, endOfYearStr);
  34. List<String> zb = new ArrayList<>();
  35. zb.add("fsavg");
  36. zb.add("cftfsavg");
  37. zb.add("fspc");
  38. zb.add("fxavg");
  39. zb.add("cftfxavg");
  40. zb.add("fxpc");
  41. for (String z : zb) {
  42. // 循环从1月到12月
  43. List<Double> result = new ArrayList<>();
  44. String zbwz = "";
  45. for (int month = 1; month <= 12; month++) {
  46. // 过滤 turbineList 中的记录,筛选出对应月份的数据
  47. int finalMonth = month;
  48. List<TurbineInfoDay> filteredList = turbineList.stream()
  49. .filter(turbine -> {
  50. // 获取 turbineInfoDay 的 recordDate(类型为 LocalDate)
  51. LocalDate recordDate = turbine.getRecordDate();
  52. // 获取记录的月份(注意,月份从 1 开始,1 表示1月)
  53. int recordMonth = recordDate.getMonthValue();
  54. // 判断记录的月份是否等于给定的 time
  55. return recordMonth == finalMonth; // 比较 int 类型的月份和 time 变量
  56. })
  57. .collect(Collectors.toList());
  58. //风速
  59. double fsaverage = filteredList.stream()
  60. .mapToDouble(turbineInfoDay -> turbineInfoDay.getPjfs().doubleValue())
  61. .average()
  62. .orElse(0.0); // 默认值0.0
  63. //风向
  64. double fxaverage = filteredList.stream()
  65. .mapToDouble(turbineInfoDay -> turbineInfoDay.getPjfs().doubleValue())
  66. .average()
  67. .orElse(0.0); // 默认值0.0
  68. //测风塔风速
  69. double cftfsaverage = filteredList.stream()
  70. .mapToDouble(turbineInfoDay -> turbineInfoDay.getPjfs().doubleValue())
  71. .average()
  72. .orElse(0.0); // 默认值0.0
  73. //测风塔风向
  74. double cftfxaverage = filteredList.stream()
  75. .mapToDouble(turbineInfoDay -> turbineInfoDay.getPjfs().doubleValue())
  76. .average()
  77. .orElse(0.0); // 默认值0.0
  78. double zbsj = 0.0;
  79. if (z.toString().equals("fsavg")) {
  80. // 保留两位小数并转换回 double
  81. zbsj = Double.parseDouble(String.format("%.2f", fsaverage));
  82. zbwz = "风速";
  83. } else if (z.toString().equals("fxavg")) {
  84. zbsj = Double.parseDouble(String.format("%.2f", fxaverage));
  85. zbwz = "风向";
  86. } else if (z.toString().equals("cftfsavg")) {
  87. zbsj = Double.parseDouble(String.format("%.2f", cftfsaverage));
  88. zbwz = "测风塔风速";
  89. } else if (z.toString().equals("cftfxavg")) {
  90. zbsj = Double.parseDouble(String.format("%.2f", cftfxaverage));
  91. zbwz = "测风塔风向";
  92. } else if (z.toString().equals("fspc")) {
  93. zbsj = Deviation.calculateSpeedDeviation(
  94. fsaverage,
  95. cftfsaverage
  96. );
  97. zbwz = "风速偏差";
  98. } else if (z.toString().equals("fxpc")) {
  99. zbsj = Deviation.calculateDirectionDeviation(
  100. fxaverage,
  101. cftfxaverage
  102. );
  103. zbwz = "风向偏差";
  104. }
  105. result.add(zbsj);
  106. }
  107. monthlyData.put(eq.getAname() + zbwz, result);
  108. }
  109. }
  110. return monthlyData;
  111. }
  112. }