GoodnessOfFitService.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. package com.gyee.generation.service;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.alibaba.fastjson.TypeReference;
  4. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  5. import com.gyee.common.contant.ContantXk;
  6. import com.gyee.common.model.PointData;
  7. import com.gyee.generation.init.CacheContext;
  8. import com.gyee.generation.model.auto.ProBasicEquipment;
  9. import com.gyee.generation.model.auto.ProBasicEquipmentPoint;
  10. import com.gyee.generation.model.auto.ProEconWtCurveFittingMonth;
  11. import com.gyee.generation.model.vo.CurveType;
  12. import com.gyee.generation.model.vo.FitClassVo;
  13. import com.gyee.generation.model.vo.StatData;
  14. import com.gyee.generation.service.auto.IProEconWtCurveFittingMonthService;
  15. import com.gyee.generation.util.DateUtils;
  16. import com.gyee.generation.util.StringUtils;
  17. import com.gyee.generation.util.realtimesource.IEdosUtil;
  18. import com.gyee.generation.util.redis.RedisService;
  19. import org.springframework.stereotype.Service;
  20. import javax.annotation.Resource;
  21. import java.util.*;
  22. import java.util.concurrent.Executor;
  23. @Service
  24. public class GoodnessOfFitService {
  25. // private static final Logger logger = LoggerFactory.getLogger(GoodnessOfFitService.class);
  26. @Resource
  27. private IEdosUtil edosUtil;
  28. @Resource
  29. private IProEconWtCurveFittingMonthService proEconWtCurveFittingMonthService;
  30. @Resource
  31. private RedisService redisService;
  32. @Resource
  33. private Executor executor;
  34. public Map<String,Map<String,Double>> goodnessOfFit(String wtId,Date nowDate) throws Exception {
  35. Date endDate =DateUtils.truncate(nowDate);
  36. Date startDate = DateUtils.addDays(nowDate,-1);
  37. Calendar c= Calendar.getInstance();
  38. c.setTime(startDate);
  39. String year =String.valueOf(c.get(Calendar.YEAR));
  40. String month = String.valueOf(c.get(Calendar.MONTH)+1);
  41. c.setTime(nowDate);
  42. c.set(Calendar.DAY_OF_MONTH,1);
  43. Date startDateM = c.getTime();
  44. c.set(Calendar.MONTH,0);
  45. Date startDateY = c.getTime();
  46. Map<String,Map<String,Double>> resultmap =new HashMap<>();
  47. Map<String, FitClassVo> theMapY = new HashMap<>();
  48. Map<String, FitClassVo> theMapM = new HashMap<>();
  49. Map<String, FitClassVo> theMapD = new HashMap<>();
  50. List<FitClassVo> theList = new ArrayList<>();
  51. List<ProEconWtCurveFittingMonth> powerList=new ArrayList<>();
  52. if (redisService.hasKey(CurveType.monthCurve.id+"_"+wtId)){
  53. String cp0String = redisService.get(CurveType.monthCurve.id+"_"+wtId);
  54. powerList = JSONObject.parseObject(cp0String, new TypeReference< List<ProEconWtCurveFittingMonth>>() {
  55. });
  56. }else
  57. {
  58. QueryWrapper<ProEconWtCurveFittingMonth> queryWrapper = new QueryWrapper<>();
  59. queryWrapper.eq("year",year).eq("month",month).eq("windturbine_id",wtId);
  60. powerList = proEconWtCurveFittingMonthService.list(queryWrapper);
  61. }
  62. ProBasicEquipment wt=CacheContext.wtmap.get(wtId);
  63. List<FitClassVo> fitsD= new ArrayList<>();
  64. List<FitClassVo> fitsM= new ArrayList<>();
  65. List<FitClassVo> fitsY= new ArrayList<>();
  66. //月数据筛选日分钟间隔
  67. Map<String, ProBasicEquipmentPoint> wtpointmap= CacheContext.wtpAimap.get(wt.getId());
  68. ProBasicEquipmentPoint fspoint=wtpointmap.get(ContantXk.CJ_SSFS);
  69. List<PointData> fsls=edosUtil.getHistStat(fspoint.getNemCode(),startDate.getTime()/1000,endDate.getTime()/1000,null, 900L, StatData.AVG.getValue());
  70. ProBasicEquipmentPoint glpoint=wtpointmap.get(ContantXk.CJ_SSGL);
  71. List<PointData> glls=edosUtil.getHistStat(glpoint.getNemCode(),startDate.getTime()/1000,endDate.getTime()/1000,null,900L, StatData.AVG.getValue());
  72. if(!fsls.isEmpty() && !glls.isEmpty() && fsls.size()==glls.size())
  73. {
  74. for(int i=0;i<fsls.size();i++)
  75. {
  76. PointData fspd=fsls.get(i);
  77. PointData glpd=glls.get(i);
  78. FitClassVo po=new FitClassVo();
  79. po.setWindturbineId(wt.getId());
  80. po.setModelId(wt.getModelId());
  81. po.setWindpowerstationId(wt.getWindpowerstationId());
  82. po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(),2));
  83. po.setPower(StringUtils.round(glpd.getPointValueInDouble(),2));
  84. fitsD.add(po);
  85. }
  86. }
  87. //月数据筛选15分钟间隔
  88. fsls=edosUtil.getHistStat(fspoint.getNemCode(),startDateM.getTime()/1000,endDate.getTime()/1000,null,60*60L, StatData.AVG.getValue());
  89. glls=edosUtil.getHistStat(glpoint.getNemCode(),startDateM.getTime()/1000,endDate.getTime()/1000,null,60*60L, StatData.AVG.getValue());
  90. if(!fsls.isEmpty() && !glls.isEmpty() && fsls.size()==glls.size())
  91. {
  92. for(int i=0;i<fsls.size();i++)
  93. {
  94. PointData fspd=fsls.get(i);
  95. PointData glpd=glls.get(i);
  96. FitClassVo po=new FitClassVo();
  97. po.setWindturbineId(wt.getId());
  98. po.setModelId(wt.getModelId());
  99. po.setWindpowerstationId(wt.getWindpowerstationId());
  100. po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(),2));
  101. po.setPower(StringUtils.round(glpd.getPointValueInDouble(),2));
  102. fitsM.add(po);
  103. }
  104. }
  105. //年数据筛选15分钟间隔
  106. fsls=edosUtil.getHistStat(fspoint.getNemCode(),startDateY.getTime()/1000,endDate.getTime()/1000,null,60*60L*6, StatData.AVG.getValue());
  107. glls=edosUtil.getHistStat(glpoint.getNemCode(),startDateY.getTime()/1000,endDate.getTime()/1000,null,60*60L*6, StatData.AVG.getValue());
  108. if(!fsls.isEmpty() && !glls.isEmpty() && fsls.size()==glls.size())
  109. {
  110. for(int i=0;i<fsls.size();i++)
  111. {
  112. PointData fspd=fsls.get(i);
  113. PointData glpd=glls.get(i);
  114. FitClassVo po=new FitClassVo();
  115. po.setWindturbineId(wt.getId());
  116. po.setModelId(wt.getModelId());
  117. po.setWindpowerstationId(wt.getWindpowerstationId());
  118. po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(),2));
  119. po.setPower(StringUtils.round(glpd.getPointValueInDouble(),2));
  120. fitsY.add(po);
  121. }
  122. }
  123. buildList(theMapY, theList, wt.getWindpowerstationId(), fitsY, powerList);
  124. buildList(theMapM, theList, wt.getWindpowerstationId(), fitsM, powerList);
  125. buildList(theMapD, theList, wt.getWindpowerstationId(), fitsD, powerList);
  126. theMapD.forEach((key,value)->{
  127. if(resultmap.containsKey(key))
  128. {
  129. Map<String,Double> tempmap=resultmap.get(key);
  130. tempmap.put("day",value.getPower() > 1 ? 1 : value.getPower());
  131. resultmap.put(key,tempmap);
  132. }else
  133. {
  134. Map<String,Double> tempmap=new HashMap<>();
  135. tempmap.put("day",value.getPower() > 1 ? 1 : value.getPower());
  136. resultmap.put(key,tempmap);
  137. }
  138. });
  139. theMapM.forEach((key,value)->{
  140. if(resultmap.containsKey(key))
  141. {
  142. Map<String,Double> tempmap=resultmap.get(key);
  143. tempmap.put("month",value.getPower() > 1 ? 1 : value.getPower());
  144. resultmap.put(key,tempmap);
  145. }else
  146. {
  147. Map<String,Double> tempmap=new HashMap<>();
  148. tempmap.put("month",value.getPower() > 1 ? 1 : value.getPower());
  149. resultmap.put(key,tempmap);
  150. }
  151. });
  152. theMapY.forEach((key,value)->{
  153. if(resultmap.containsKey(key))
  154. {
  155. Map<String,Double> tempmap=resultmap.get(key);
  156. tempmap.put("year",value.getPower() > 1 ? 1 : value.getPower());
  157. resultmap.put(key,tempmap);
  158. }else
  159. {
  160. Map<String,Double> tempmap=new HashMap<>();
  161. tempmap.put("year",value.getPower() > 1 ? 1 : value.getPower());
  162. resultmap.put(key,tempmap);
  163. }
  164. });
  165. return resultmap;
  166. }
  167. private void buildList(Map<String, FitClassVo> theMap, List<FitClassVo> theList, String windpowerstationId, List<FitClassVo> fitsY, List<ProEconWtCurveFittingMonth> powerList)
  168. {
  169. for (FitClassVo item : fitsY)
  170. {
  171. Double speed=StringUtils.round(item.getSpeed(), 1);
  172. String windturbineId = item.getWindturbineId();
  173. if (CacheContext.theoreticalPowerMap.containsKey(item.getModelId()))
  174. {
  175. if (CacheContext.theoreticalPowerMap.get(item.getModelId()).size() > 0)
  176. {
  177. if (CacheContext.theoreticalPowerMap.get(item.getModelId()).containsKey(speed))
  178. {
  179. Double epower = CacheContext.theoreticalPowerMap.get(item.getModelId()).get(speed).getEnsurePower();
  180. buildtheMap(theMap, theList, windpowerstationId, item, speed, epower);
  181. }
  182. }
  183. else
  184. {
  185. if (powerList != null && powerList.size()>0)
  186. {
  187. Double finalSpeed = speed;
  188. OptionalDouble tempp=powerList.stream()
  189. .filter(i-> Objects.equals(i.getSpeed(), finalSpeed) && i.getWindturbineId().equals(windturbineId))
  190. .mapToDouble(ProEconWtCurveFittingMonth::getOptimalPower).findFirst();
  191. double p;
  192. if (tempp.isPresent())
  193. {
  194. Double epower = tempp.getAsDouble();
  195. buildtheMap(theMap, theList, windpowerstationId, item, speed, epower);
  196. }
  197. else
  198. {
  199. DoubleSummaryStatistics summaryStatistics=powerList.stream().filter(i->i.getWindturbineId().equals(windturbineId))
  200. .mapToDouble(ProEconWtCurveFittingMonth::getSpeed).summaryStatistics();
  201. double max = summaryStatistics.getMax();
  202. if (speed > max)
  203. {
  204. summaryStatistics=powerList.stream().filter(i->i.getWindturbineId().equals(windturbineId)).mapToDouble(ProEconWtCurveFittingMonth::getActualPower).summaryStatistics();
  205. p = summaryStatistics.getMax();
  206. Double epower = p;
  207. buildtheMap(theMap, theList, windpowerstationId, item, speed, epower);
  208. }
  209. }
  210. }
  211. }
  212. }
  213. }
  214. }
  215. private static void buildtheMap(Map<String, FitClassVo> theMap, List<FitClassVo> theList, String windpowerstationId, FitClassVo item, Double speed, Double epower)
  216. {
  217. Double value1 = item.getPower() - epower;
  218. value1 *= value1;
  219. Double value2 = item.getPower();
  220. value2 *= value2;
  221. if (theMap.containsKey(item.getWindturbineId()))
  222. {
  223. FitClassVo vo= theMap.get(item.getWindturbineId());
  224. int number=vo.getNumber();
  225. vo.setSpeed(item.getSpeed()+speed);
  226. vo.setPower(item.getPower()+value1);
  227. vo.setEpower(epower+value2);
  228. number=number+1;
  229. vo.setNumber(number);
  230. theMap.put(item.getWindturbineId(),vo);
  231. }
  232. else
  233. {
  234. FitClassVo fit = new FitClassVo();
  235. fit.setWindturbineId(item.getWindturbineId());
  236. fit.setWindpowerstationId(windpowerstationId);
  237. fit.setModelId(item.getModelId());
  238. fit.setSpeed(speed);
  239. fit.setPower(value1);
  240. fit.setEpower(value2);
  241. fit.setNumber(1);
  242. theList.add(fit);
  243. theMap.put(item.getWindturbineId(), fit);
  244. }
  245. }
  246. }