WtAlysisDayService.java 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. package com.gyee.generation.service;//package com.gyee.generation.service;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.gyee.common.contant.ContantXk;
  4. import com.gyee.common.model.PointData;
  5. import com.gyee.common.model.StringUtils;
  6. import com.gyee.generation.init.CacheContext;
  7. import com.gyee.generation.model.auto.*;
  8. import com.gyee.generation.service.auto.*;
  9. import com.gyee.generation.task.thread.EconWtAlysisDayThread;
  10. import com.gyee.generation.util.DateUtils;
  11. import com.gyee.generation.util.realtimesource.IEdosUtil;
  12. import org.springframework.stereotype.Service;
  13. import javax.annotation.Resource;
  14. import java.util.*;
  15. import java.util.concurrent.CountDownLatch;
  16. import java.util.concurrent.Executor;
  17. import java.util.function.Function;
  18. import java.util.stream.Collectors;
  19. @Service
  20. public class WtAlysisDayService {
  21. // private static final Logger logger = LoggerFactory.getLogger(EquipmentInfo1Service.class);
  22. @Resource
  23. private IEdosUtil edosUtil;
  24. @Resource
  25. private IProEconWtAlysisDayService proEconWtAlysisDayService;
  26. @Resource
  27. private IProEconEquipmentInfoDay1Service proEconEquipmentInfoDay1Service;
  28. @Resource
  29. private IProEconEquipmentInfoDay2Service proEconEquipmentInfoDay2Service;
  30. @Resource
  31. private IProEconEquipmentInfoDay3Service proEconEquipmentInfoDay3Service;
  32. @Resource
  33. private IProEconEquipmentInfoDay4Service proEconEquipmentInfoDay4Service;
  34. @Resource
  35. private Executor executor;
  36. private Map<String, ProEconEquipmentInfoDay1> queryEquipmentInfoDay1(Date recordDate) {
  37. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
  38. queryWrapper.eq("record_date",DateUtils.truncate(recordDate));
  39. List<ProEconEquipmentInfoDay1> iostls= proEconEquipmentInfoDay1Service.list(queryWrapper);
  40. // .stream().filter(i-> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
  41. // )
  42. // .collect(Collectors.toList());
  43. //List转map
  44. Map<String, ProEconEquipmentInfoDay1> iostmap=iostls.stream().
  45. collect(Collectors.toMap(ProEconEquipmentInfoDay1::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  46. return iostmap;
  47. }
  48. private Map<String, ProEconEquipmentInfoDay2> queryEquipmentInfoDay2(Date recordDate) {
  49. QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
  50. queryWrapper.eq("record_date",DateUtils.truncate(recordDate));
  51. List<ProEconEquipmentInfoDay2> iostls= proEconEquipmentInfoDay2Service.list(queryWrapper);
  52. // .stream().filter(i-> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
  53. // )
  54. // .collect(Collectors.toList());
  55. //List转map
  56. Map<String, ProEconEquipmentInfoDay2> iostmap=iostls.stream().
  57. collect(Collectors.toMap(ProEconEquipmentInfoDay2::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  58. return iostmap;
  59. }
  60. private Map<String, ProEconEquipmentInfoDay3> queryEquipmentInfoDay3(Date recordDate) {
  61. QueryWrapper<ProEconEquipmentInfoDay3> queryWrapper = new QueryWrapper<>();
  62. queryWrapper.eq("record_date",DateUtils.truncate(recordDate));
  63. List<ProEconEquipmentInfoDay3> iostls= proEconEquipmentInfoDay3Service.list(queryWrapper);
  64. // .stream().filter(i-> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
  65. // )
  66. // .collect(Collectors.toList());
  67. //List转map
  68. Map<String, ProEconEquipmentInfoDay3> iostmap=iostls.stream().
  69. collect(Collectors.toMap(ProEconEquipmentInfoDay3::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  70. return iostmap;
  71. }
  72. private Map<String, ProEconEquipmentInfoDay4> queryEquipmentInfoDay4(Date recordDate) {
  73. QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
  74. queryWrapper.eq("record_date",DateUtils.truncate(recordDate));
  75. List<ProEconEquipmentInfoDay4> iostls= proEconEquipmentInfoDay4Service.list(queryWrapper);
  76. // .stream().filter(i-> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
  77. // )
  78. // .collect(Collectors.toList());
  79. //List转map
  80. Map<String, ProEconEquipmentInfoDay4> iostmap=iostls.stream().
  81. collect(Collectors.toMap(ProEconEquipmentInfoDay4::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  82. return iostmap;
  83. }
  84. /**
  85. * 计算设备日信息
  86. */
  87. public void calEquipmentInfoDay(Date recordDate) throws Exception {
  88. Calendar c=Calendar.getInstance();
  89. c.setTime(recordDate);
  90. Date end=c.getTime();
  91. Date begin= DateUtils.truncate(c.getTime());
  92. //判断是否有重复记录,
  93. QueryWrapper<ProEconWtAlysisDay> queryWrapper = new QueryWrapper<>();
  94. queryWrapper.eq("record_date",DateUtils.truncate(recordDate));
  95. List<Long> idls = proEconWtAlysisDayService.list(queryWrapper).stream()
  96. // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate))==0
  97. // && CacheContext.wtmap.containsKey(i.getWindturbineId()))
  98. .map(ProEconWtAlysisDay::getId)
  99. .collect(Collectors.toList());
  100. if (idls.size() > 0) {
  101. proEconWtAlysisDayService.removeByIds(idls);
  102. }
  103. Map<String, ProEconEquipmentInfoDay1> eqday1map = queryEquipmentInfoDay1(recordDate);
  104. Map<String, ProEconEquipmentInfoDay2> eqday2map = queryEquipmentInfoDay2(recordDate);
  105. Map<String, ProEconEquipmentInfoDay3> eqday3map = queryEquipmentInfoDay3(recordDate);
  106. Map<String, ProEconEquipmentInfoDay4> eqday4map = queryEquipmentInfoDay4(recordDate);
  107. List<ProEconWtAlysisDay> dayls=new ArrayList<>();
  108. final CountDownLatch latch = new CountDownLatch(+CacheContext.wtls.size());
  109. for(ProBasicEquipment wt:CacheContext.wtls)
  110. {
  111. // ProEconWtAlysisDay pewp=new ProEconWtAlysisDay();
  112. // Initial.initial(pewp);
  113. // pewp.setRecordDate(DateUtils.truncate(recordDate));
  114. // pewp.setWindturbineId(wt.getId());
  115. //
  116. // if(eqday1map.containsKey(wt.getId()))
  117. // {
  118. // ProEconEquipmentInfoDay1 dayinfo= eqday1map.get(wt.getId());
  119. //
  120. // pewp.setRfdl(dayinfo.getRfdl());
  121. // pewp.setRpjfs(dayinfo.getRpjfs());
  122. // pewp.setRpjgl(dayinfo.getRpjgl());
  123. // pewp.setRyfdl(dayinfo.getRllfdl());
  124. //
  125. //
  126. // double gzss=dayinfo.getRgzssdl();
  127. // double jxss=dayinfo.getRjxssdl();
  128. // double xnss=dayinfo.getRxnssdl();
  129. // double xdss=dayinfo.getRxdtjssdl()+dayinfo.getRxdjclssdl();
  130. // double slss=dayinfo.getRcwsltqssdl()+dayinfo.getRcwsldwssdl();
  131. //
  132. // double ssdl=gzss+jxss+xnss+xdss+slss;
  133. // pewp.setRssdl(StringUtils.round(ssdl,2));
  134. //
  135. // pewp.setYfdl(dayinfo.getYfdl());
  136. // pewp.setYpjfs(dayinfo.getYpjfs());
  137. // pewp.setYpjgl(dayinfo.getYpjgl());
  138. // pewp.setYyfdl(dayinfo.getYllfdl());
  139. //
  140. //
  141. // gzss=dayinfo.getYgzssdl();
  142. // jxss=dayinfo.getYjxssdl();
  143. // xnss=dayinfo.getYxnssdl();
  144. // xdss=dayinfo.getYxdtjssdl()+dayinfo.getYxdjclssdl();
  145. // slss=dayinfo.getYcwsltqssdl()+dayinfo.getYcwsldwssdl();
  146. //
  147. // ssdl=gzss+jxss+xnss+xdss+slss;
  148. // pewp.setYssdl(StringUtils.round(ssdl,2));
  149. //
  150. // pewp.setNfdl(dayinfo.getNfdl());
  151. // pewp.setNpjfs(dayinfo.getNpjfs());
  152. // pewp.setNpjgl(dayinfo.getNpjgl());
  153. // pewp.setNyfdl(dayinfo.getNllfdl());
  154. //
  155. //
  156. // gzss=dayinfo.getNgzssdl();
  157. // jxss=dayinfo.getNjxssdl();
  158. // xnss=dayinfo.getNxnssdl();
  159. // xdss=dayinfo.getNxdtjssdl()+dayinfo.getNxdjclssdl();
  160. // slss=dayinfo.getNcwsltqssdl()+dayinfo.getNcwsldwssdl();
  161. //
  162. // ssdl=gzss+jxss+xnss+xdss+slss;
  163. // pewp.setNssdl(StringUtils.round(ssdl,2));
  164. //
  165. // }
  166. //
  167. //
  168. // if(eqday2map.containsKey(wt.getId()))
  169. // {
  170. // ProEconEquipmentInfoDay2 dayinfo= eqday2map.get(wt.getId());
  171. // pewp.setRyxxs(dayinfo.getRyxxs());
  172. // pewp.setRgzxs(dayinfo.getRgztjxs());
  173. // pewp.setRjxxs(dayinfo.getRjxtjxs());
  174. // pewp.setRzdxs(dayinfo.getRxdxs());
  175. // pewp.setRzdxs(dayinfo.getRtxzdxs());
  176. //
  177. // int dayTimes=24;
  178. // double sbklyl = new BigDecimal(dayTimes-dayinfo.getRgztjxs()).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//风机平均设备可利用率
  179. // pewp.setRsbklyl(StringUtils.round(sbklyl, 2));
  180. //
  181. // pewp.setYyxxs(dayinfo.getYyxxs());
  182. // pewp.setYgzxs(dayinfo.getYgztjxs());
  183. // pewp.setYjxxs(dayinfo.getYjxtjxs());
  184. // pewp.setYzdxs(dayinfo.getYxdxs());
  185. // pewp.setYzdxs(dayinfo.getYtxzdxs());
  186. // c.setTime(recordDate);
  187. // int days=c.get(Calendar.DAY_OF_MONTH);
  188. // dayTimes=24*days;
  189. // sbklyl = new BigDecimal(dayTimes-dayinfo.getYgztjxs()).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//风机平均设备可利用率
  190. // pewp.setYsbklyl(StringUtils.round(sbklyl, 2));
  191. //
  192. // pewp.setNyxxs(dayinfo.getNyxxs());
  193. // pewp.setNgzxs(dayinfo.getNgztjxs());
  194. // pewp.setNjxxs(dayinfo.getNjxtjxs());
  195. // pewp.setNzdxs(dayinfo.getNxdxs());
  196. // pewp.setNzdxs(dayinfo.getNtxzdxs());
  197. //
  198. // days=c.get(Calendar.DAY_OF_YEAR);
  199. // dayTimes=24*days;
  200. // sbklyl = new BigDecimal(dayTimes-dayinfo.getNgztjxs()).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//风机平均设备可利用率
  201. // pewp.setNsbklyl(StringUtils.round(sbklyl, 2));
  202. // }
  203. //
  204. // if(eqday3map.containsKey(wt.getId()))
  205. // {
  206. // ProEconEquipmentInfoDay3 dayinfo= eqday3map.get(wt.getId());
  207. // pewp.setRtjcs(dayinfo.getRgztjcs()+dayinfo.getRjxtjcs());
  208. // pewp.setYtjcs(dayinfo.getYgztjcs()+dayinfo.getYjxtjcs());
  209. // pewp.setNtjcs(dayinfo.getNgztjcs()+dayinfo.getNjxtjcs());
  210. //
  211. // }
  212. //
  213. // if(eqday4map.containsKey(wt.getId()))
  214. // {
  215. // ProEconEquipmentInfoDay4 dayinfo= eqday4map.get(wt.getId());
  216. // pewp.setRnhyd(dayinfo.getRnhyd());
  217. // pewp.setRsjbz(dayinfo.getRqxpcbbzsj());
  218. // pewp.setRyxfs(dayinfo.getRyxfss());
  219. //
  220. // pewp.setYnhyd(dayinfo.getYnhyd());
  221. // pewp.setYsjbz(dayinfo.getYqxpcbbzsj());
  222. // pewp.setYyxfs(dayinfo.getYyxfss());
  223. //
  224. // pewp.setNnhyd(dayinfo.getNnhyd());
  225. // pewp.setNsjbz(dayinfo.getNqxpcbbzsj());
  226. // pewp.setNyxfs(dayinfo.getNyxfss());
  227. //
  228. // }
  229. // //昨日的统计结果
  230. // List<ProEconWtAlysisDay> pepidls =new ArrayList<>();
  231. // Calendar cl=Calendar.getInstance();
  232. // cl.setTime(recordDate);
  233. // cl.add(Calendar.DAY_OF_MONTH,-1);
  234. // if(cl.get(Calendar.DAY_OF_MONTH)!=1)
  235. // {
  236. // QueryWrapper<ProEconWtAlysisDay> queryWrapper2 = new QueryWrapper<>();
  237. // queryWrapper2.eq("record_date",DateUtils.truncate(cl.getTime())).eq("windTurbine_Id",wt.getId());
  238. // pepidls = proEconWtAlysisDayService.list(queryWrapper2);
  239. //// .stream()
  240. //// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
  241. //// && i.getWindturbineId().equals(wt.getId())
  242. //// )
  243. //// .collect(Collectors.toList());
  244. // }
  245. // calSimple(pewp, end, begin, wt, pepidls);
  246. // dayls.add(pewp);
  247. //
  248. new Thread(new EconWtAlysisDayThread(executor,wt, eqday1map,
  249. eqday2map,
  250. eqday3map,
  251. eqday4map,
  252. recordDate, end, begin, dayls,
  253. edosUtil, c, proEconWtAlysisDayService,latch)).start();
  254. }
  255. latch.await();
  256. List<ProEconWtAlysisDay> templs=new ArrayList<>();
  257. for(ProEconWtAlysisDay vo:dayls)
  258. {
  259. templs.add(vo);
  260. if(templs.size()==100)
  261. {
  262. proEconWtAlysisDayService.saveOrUpdateBatch(templs);
  263. templs=new ArrayList<>();
  264. }
  265. }
  266. if(!templs.isEmpty())
  267. {
  268. proEconWtAlysisDayService.saveOrUpdateBatch(templs);
  269. }
  270. // proEconWtAlysisDayService.saveBatch(dayls);
  271. }
  272. private void calSimple(ProEconWtAlysisDay pewp, Date end, Date begin, ProBasicEquipment wt, List<ProEconWtAlysisDay> pepidls) throws Exception {
  273. //*******************************************日信息统计*********************************************************/
  274. double lastState=-1;//上一分钟状态
  275. double bbhcs=0;//不饱和次数
  276. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  277. Map<String, ProBasicEquipmentPoint> aimap=wtpAimap.get(wt.getId());
  278. if(aimap.containsKey(ContantXk.SSQFZT))
  279. {
  280. ProBasicEquipmentPoint point=aimap.get(ContantXk.SSQFZT);
  281. //按照分钟时间进行统计状态快照值
  282. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  283. if(!pointls.isEmpty()) {
  284. for (PointData po : pointls) {
  285. if (po.getPointValueInDouble() >=3) {
  286. if (lastState != po.getPointValueInDouble()) {
  287. //将当前状态保存到上一分钟状态
  288. lastState = po.getPointValueInDouble();
  289. //实时欠发大于等于3的次数加1
  290. bbhcs++;
  291. }
  292. }
  293. }
  294. }
  295. }
  296. //日不饱和次数
  297. pewp.setRbbhcs(bbhcs);
  298. //*******************************************日信息统计*********************************************************/
  299. //*******************************************月信息统计*********************************************************/
  300. if(pepidls.isEmpty())
  301. {
  302. pewp.setYbbhcs(pewp.getRbbhcs());
  303. }else
  304. {
  305. ProEconWtAlysisDay pepid=pepidls.get(0);
  306. pewp.setYbbhcs(StringUtils.round(pepid.getYbbhcs()+pewp.getRbbhcs(),2));
  307. }
  308. //*******************************************月信息统计*********************************************************/
  309. //*******************************************年信息统计*********************************************************/
  310. if(pepidls.isEmpty())
  311. {
  312. pewp.setNbbhcs(pewp.getRbbhcs());
  313. }else
  314. {
  315. ProEconWtAlysisDay pepid=pepidls.get(0);
  316. pewp.setNbbhcs(StringUtils.round(pepid.getNbbhcs()+pewp.getRbbhcs(),2));
  317. }
  318. //*******************************************年信息统计*********************************************************/
  319. }
  320. }