EquipmentInfo1Service.java 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  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.mapper.auto.ProEconEquipmentInfoDay1Mapper;
  8. import com.gyee.generation.model.auto.ProBasicEquipment;
  9. import com.gyee.generation.model.auto.ProBasicEquipmentPoint;
  10. import com.gyee.generation.model.auto.ProEconEquipmentInfoDay1;
  11. import com.gyee.generation.model.vo.WpType;
  12. import com.gyee.generation.service.auto.IProEconEquipmentInfoDay1Service;
  13. import com.gyee.generation.task.thread.EquipmentInfo1Thread;
  14. import com.gyee.generation.util.DateUtils;
  15. import com.gyee.generation.util.realtimesource.IEdosUtil;
  16. import org.springframework.stereotype.Service;
  17. import javax.annotation.Resource;
  18. import java.util.*;
  19. import java.util.concurrent.CountDownLatch;
  20. import java.util.concurrent.Executor;
  21. import java.util.stream.Collectors;
  22. @Service
  23. public class EquipmentInfo1Service {
  24. // private static final Logger logger = LoggerFactory.getLogger(EquipmentInfo1Service.class);
  25. @Resource
  26. private IEdosUtil edosUtil;
  27. @Resource
  28. private IProEconEquipmentInfoDay1Service proEconEquipmentInfoDay1Service;
  29. @Resource
  30. private Executor executor;
  31. @Resource
  32. private ProEconEquipmentInfoDay1Mapper proEconEquipmentInfoDay1Mapper;
  33. /**
  34. * 计算设备日信息
  35. */
  36. public void calEquipmentInfoDay(Date recordDate) throws Exception {
  37. Calendar c=Calendar.getInstance();
  38. c.setTime(recordDate);
  39. if(c.get(Calendar.MINUTE)==0)
  40. {
  41. c.add(Calendar.DAY_OF_MONTH,-1);
  42. }
  43. c.set(Calendar.HOUR_OF_DAY, 23);
  44. c.set(Calendar.MINUTE, 59);
  45. c.set(Calendar.SECOND, 59);
  46. Date end=c.getTime();
  47. Date begin= DateUtils.truncate(c.getTime());
  48. Map<String,ProEconEquipmentInfoDay1> pep1map=new HashMap<>();
  49. Calendar cl=Calendar.getInstance();
  50. cl.setTime(DateUtils.truncate(recordDate));
  51. cl.add(Calendar.DAY_OF_MONTH,-1);
  52. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper2 = new QueryWrapper<>();
  53. queryWrapper2.eq("record_date",cl.getTime());
  54. List<ProEconEquipmentInfoDay1> pep1ls = proEconEquipmentInfoDay1Service.list(queryWrapper2);
  55. if(!pep1ls.isEmpty())
  56. {
  57. for(ProEconEquipmentInfoDay1 pep:pep1ls)
  58. {
  59. pep1map.put(pep.getWindturbineId(),pep);
  60. }
  61. }
  62. List<ProEconEquipmentInfoDay1> dayls=new ArrayList<>();
  63. // final CountDownLatch latch = new CountDownLatch(CacheContext.wtls.size());
  64. //
  65. List<String> wpls=new ArrayList<>();
  66. // for(ProBasicEquipment wt:CacheContext.wtls)
  67. // {
  68. // if(!wpls.contains(wt.getWindpowerstationId()))
  69. // {
  70. // wpls.add(wt.getWindpowerstationId());
  71. // }
  72. // new Thread(new EquipmentInfo1Thread(executor, wt, pep1map,
  73. // recordDate, end, begin,dayls,
  74. // edosUtil,latch)).start();
  75. // }
  76. // latch.await();
  77. for (Map.Entry<String, List<ProBasicEquipment>> entry : CacheContext.wpwtmap.entrySet()) {
  78. final CountDownLatch latch = new CountDownLatch(entry.getValue().size());
  79. for (ProBasicEquipment wt : entry.getValue()) {
  80. if (!wpls.contains(wt.getWindpowerstationId())) {
  81. wpls.add(wt.getWindpowerstationId());
  82. }
  83. new Thread(new EquipmentInfo1Thread(executor, wt, pep1map,
  84. recordDate, end, begin,dayls,
  85. edosUtil,latch)).start();
  86. }
  87. latch.await();
  88. }
  89. c=Calendar.getInstance();
  90. c.setTime(recordDate);
  91. c.set(Calendar.HOUR_OF_DAY, 23);
  92. c.set(Calendar.MINUTE, 59);
  93. c.set(Calendar.SECOND, 59);
  94. end=c.getTime();
  95. begin= DateUtils.truncate(c.getTime());
  96. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
  97. queryWrapper.eq("record_date",recordDate);
  98. queryWrapper.in("windpowerstation_id",wpls);
  99. //判断是否有重复记录,先删除重复记录
  100. List<String> idls = proEconEquipmentInfoDay1Service.list(queryWrapper).stream()
  101. .map(ProEconEquipmentInfoDay1::getId)
  102. .collect(Collectors.toList());
  103. List<String> tempids=new ArrayList<>();
  104. for(int i=0;i<idls.size();i++)
  105. {
  106. tempids.add(idls.get(i));
  107. if(tempids.size()==1000)
  108. {
  109. proEconEquipmentInfoDay1Service.removeByIds(tempids);
  110. tempids=new ArrayList<>();
  111. }
  112. }
  113. if(!tempids.isEmpty())
  114. {
  115. proEconEquipmentInfoDay1Service.removeByIds(tempids);
  116. }
  117. List<ProEconEquipmentInfoDay1> templs=new ArrayList<>();
  118. for(ProEconEquipmentInfoDay1 vo:dayls)
  119. {
  120. if(StringUtils.notEmp(vo) && StringUtils.notEmp(vo.getWindturbineId()))
  121. {
  122. templs.add(vo);
  123. if(templs.size()==1000)
  124. {
  125. proEconEquipmentInfoDay1Service.saveBatch(templs);
  126. templs=new ArrayList<>();
  127. }
  128. }
  129. }
  130. if(!templs.isEmpty())
  131. {
  132. proEconEquipmentInfoDay1Service.saveBatch(templs);
  133. }
  134. //
  135. // List<ProEconEquipmentInfoDay1> templs=new ArrayList<>();
  136. // for(ProEconEquipmentInfoDay1 vo:dayls)
  137. // {
  138. // if(StringUtils.notEmp(vo) && StringUtils.notEmp(vo.getWindturbineId()))
  139. // {
  140. // templs.add(vo);
  141. // if(templs.size()==1000)
  142. // {
  143. // proEconEquipmentInfoDay1Mapper.insertOrUpdateBath(templs);
  144. // templs=new ArrayList<>();
  145. // }
  146. // }
  147. //
  148. // }
  149. //
  150. // if(!templs.isEmpty())
  151. // {
  152. // proEconEquipmentInfoDay1Mapper.insertOrUpdateBath(templs);
  153. // }
  154. //
  155. }
  156. private void extracted(Date recordDate, Date end, Date begin,Map<String, ProBasicEquipmentPoint> pointmap, ProEconEquipmentInfoDay1 pewp,List<ProEconEquipmentInfoDay1> pepid1ls) throws Exception {
  157. if(pewp.getWindpowerstationId().contains(WpType.FDC.id))
  158. {
  159. //*******************************************日信息统计*********************************************************/
  160. if(pointmap.containsKey(ContantXk.RPJFS))
  161. {
  162. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RPJFS);
  163. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  164. if(!pointls.isEmpty())
  165. {
  166. DoubleSummaryStatistics summaryStatistics=pointls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
  167. //日最大风速
  168. pewp.setRzdfs(summaryStatistics.getMax());
  169. //日最小风速
  170. pewp.setRzxfs(summaryStatistics.getMin());
  171. //日平均风速
  172. pewp.setRpjfs(summaryStatistics.getAverage());
  173. }
  174. }
  175. }else
  176. {
  177. //*******************************************日信息统计*********************************************************/
  178. if(pointmap.containsKey(ContantXk.RPJGZD))
  179. {
  180. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RPJGZD);
  181. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  182. if(!pointls.isEmpty())
  183. {
  184. DoubleSummaryStatistics summaryStatistics=pointls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
  185. //日最大风速
  186. pewp.setRzdfs(summaryStatistics.getMax());
  187. //日最小风速
  188. pewp.setRzxfs(summaryStatistics.getMin());
  189. //日平均风速
  190. pewp.setRpjfs(summaryStatistics.getAverage());
  191. }
  192. }
  193. }
  194. if(pointmap.containsKey(ContantXk.RPJGL))
  195. {
  196. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RPJGL);
  197. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  198. if(!pointls.isEmpty())
  199. {
  200. DoubleSummaryStatistics summaryStatistics=pointls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
  201. //日最大功率
  202. pewp.setRzdgl(summaryStatistics.getMax());
  203. //日最小功率
  204. pewp.setRzxgl(summaryStatistics.getMin());
  205. //日平均功率
  206. pewp.setRpjgl(summaryStatistics.getSum());
  207. }
  208. }
  209. if(pointmap.containsKey(ContantXk.RFDL))
  210. {
  211. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RFDL);
  212. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  213. if(StringUtils.notEmp(pointValue))
  214. {
  215. //日发电量
  216. pewp.setRfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  217. }
  218. }
  219. if(pointmap.containsKey(ContantXk.RKYDL))
  220. {
  221. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RKYDL);
  222. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  223. if(StringUtils.notEmp(pointValue))
  224. {
  225. //日可用电量
  226. pewp.setRkydl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  227. }
  228. }
  229. if(pointmap.containsKey(ContantXk.RLLFDL))
  230. {
  231. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RLLFDL);
  232. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  233. if(StringUtils.notEmp(pointValue))
  234. {
  235. //日理论发电量
  236. pewp.setRllfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  237. }
  238. }
  239. if(pointmap.containsKey(ContantXk.RGZSSDL))
  240. {
  241. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RGZSSDL);
  242. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  243. if(StringUtils.notEmp(pointValue))
  244. {
  245. //日故障损失电量
  246. pewp.setRgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  247. }
  248. }
  249. if(pointmap.containsKey(ContantXk.RCNSLGZSSDL))
  250. {
  251. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCNSLGZSSDL);
  252. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  253. if(StringUtils.notEmp(pointValue))
  254. {
  255. //日场内受累故障损失电量
  256. pewp.setRcnslgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  257. }
  258. }
  259. if(pointmap.containsKey(ContantXk.RJXSSDL))
  260. {
  261. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RJXSSDL);
  262. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  263. if(StringUtils.notEmp(pointValue))
  264. {
  265. //日检修损失电量
  266. pewp.setRjxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  267. }
  268. }
  269. if(pointmap.containsKey(ContantXk.RCNSLJXSSDL))
  270. {
  271. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCNSLJXSSDL);
  272. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  273. if(StringUtils.notEmp(pointValue))
  274. {
  275. //日场内受累检修损失电量
  276. pewp.setRcnsljxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  277. }
  278. }
  279. if(pointmap.containsKey(ContantXk.RDJSSDL))
  280. {
  281. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RDJSSDL);
  282. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  283. if(StringUtils.notEmp(pointValue))
  284. {
  285. // //日待机损失电量
  286. // pewp.setRdjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  287. pewp.setRdjssdl(0.0);
  288. }
  289. }
  290. if(pointmap.containsKey(ContantXk.RQXJCLSSDL))
  291. {
  292. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RQXJCLSSDL);
  293. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  294. if(StringUtils.notEmp(pointValue))
  295. {
  296. //日缺陷降出力损失电量
  297. // pewp.setRqxjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  298. pewp.setRqxjclssdl(0.0);
  299. }
  300. }
  301. if(pointmap.containsKey(ContantXk.RSDTJSSDL))
  302. {
  303. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RSDTJSSDL);
  304. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  305. if(StringUtils.notEmp(pointValue))
  306. {
  307. //日手动停机损失电量
  308. // pewp.setRsdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  309. pewp.setRsdtjssdl(0.0);
  310. }
  311. }
  312. if(pointmap.containsKey(ContantXk.RXNSSDL))
  313. {
  314. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RXNSSDL);
  315. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  316. if(StringUtils.notEmp(pointValue))
  317. {
  318. //日性能损失电量
  319. pewp.setRxnssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  320. // pewp.setRxnssdl(0.0);
  321. }
  322. }
  323. if(pointmap.containsKey(ContantXk.RXDTJSSDL))
  324. {
  325. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RXDTJSSDL);
  326. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  327. if(StringUtils.notEmp(pointValue))
  328. {
  329. //日限电停机损失电量
  330. pewp.setRxdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  331. pewp.setRxdtjssdl(0.0);
  332. }
  333. }
  334. if(pointmap.containsKey(ContantXk.RXDJCLSSDL))
  335. {
  336. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RXDJCLSSDL);
  337. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  338. if(StringUtils.notEmp(pointValue))
  339. {
  340. //日限电降出力损失电量
  341. pewp.setRxdjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  342. pewp.setRxdjclssdl(0.0);
  343. }
  344. }
  345. if(pointmap.containsKey(ContantXk.RCWSLDWSSDL))
  346. {
  347. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCWSLDWSSDL);
  348. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  349. if(StringUtils.notEmp(pointValue))
  350. {
  351. //日场外受累电网损失电量
  352. pewp.setRcwsldwssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  353. pewp.setRcwsldwssdl(0.0);
  354. }
  355. }
  356. if(pointmap.containsKey(ContantXk.RCWSLTQSSDL))
  357. {
  358. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCWSLTQSSDL);
  359. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  360. if(StringUtils.notEmp(pointValue))
  361. {
  362. //日场外受累天气损失电量
  363. pewp.setRcwsltqssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  364. pewp.setRcwsltqssdl(0.0);
  365. }
  366. }
  367. if(pointmap.containsKey(ContantXk.RZFDL))
  368. {
  369. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RZFDL);
  370. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  371. if(StringUtils.notEmp(pointValue))
  372. {
  373. //日增发电量
  374. pewp.setRzfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  375. }
  376. }
  377. if(pointmap.containsKey(ContantXk.RQFDL))
  378. {
  379. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RQFDL);
  380. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  381. if(StringUtils.notEmp(pointValue))
  382. {
  383. //日欠发电量
  384. pewp.setRqfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  385. }
  386. }
  387. if(pointmap.containsKey(ContantXk.RZHD))
  388. {
  389. ProBasicEquipmentPoint point= pointmap.get(ContantXk.RZHD);
  390. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  391. if(StringUtils.notEmp(pointValue))
  392. {
  393. //日自耗电
  394. pewp.setRzhd(StringUtils.round(pointValue.getPointValueInDouble(),2));
  395. }
  396. }
  397. //*******************************************日信息统计*********************************************************/
  398. //*******************************************月信息统计*********************************************************/
  399. if(pepid1ls.isEmpty())
  400. {
  401. setPowerandSpeedMonth(pewp);
  402. }else
  403. {
  404. if(pointmap.containsKey(ContantXk.YPJFS))
  405. {
  406. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YPJFS);
  407. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  408. if(!pointls.isEmpty())
  409. {
  410. DoubleSummaryStatistics summaryStatistics=pointls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
  411. //月最大风速
  412. pewp.setYzdfs(summaryStatistics.getMax());
  413. //月最小风速
  414. pewp.setYzxfs(summaryStatistics.getMin());
  415. //月平均风速
  416. pewp.setYpjfs(summaryStatistics.getAverage());
  417. }
  418. }
  419. if(pointmap.containsKey(ContantXk.YPJGL))
  420. {
  421. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YPJGL);
  422. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  423. if(!pointls.isEmpty())
  424. {
  425. DoubleSummaryStatistics summaryStatistics=pointls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
  426. //月最大功率
  427. pewp.setYzdgl(summaryStatistics.getMax());
  428. //月最小功率
  429. pewp.setYzxgl(summaryStatistics.getMin());
  430. //月平均功率
  431. pewp.setYpjgl(summaryStatistics.getSum());
  432. }
  433. }
  434. }
  435. if(pointmap.containsKey(ContantXk.YFDL))
  436. {
  437. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YFDL);
  438. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  439. if(StringUtils.notEmp(pointValue))
  440. {
  441. //月发电量
  442. pewp.setYfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  443. }
  444. }
  445. if(pointmap.containsKey(ContantXk.YKYDL))
  446. {
  447. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YKYDL);
  448. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  449. if(StringUtils.notEmp(pointValue))
  450. {
  451. //月可用电量
  452. pewp.setYkydl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  453. }
  454. }
  455. if(pointmap.containsKey(ContantXk.YLLFDL))
  456. {
  457. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YLLFDL);
  458. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  459. if(StringUtils.notEmp(pointValue))
  460. {
  461. //月理论发电量
  462. pewp.setYllfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  463. }
  464. }
  465. if(pointmap.containsKey(ContantXk.YGZSSDL))
  466. {
  467. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YGZSSDL);
  468. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  469. if(StringUtils.notEmp(pointValue))
  470. {
  471. //月故障损失电量
  472. pewp.setYgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  473. }
  474. }
  475. if(pointmap.containsKey(ContantXk.YCNSLGZSSDL))
  476. {
  477. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCNSLGZSSDL);
  478. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  479. if(StringUtils.notEmp(pointValue))
  480. {
  481. //月场内受累故障损失电量
  482. pewp.setYcnslgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  483. }
  484. }
  485. if(pointmap.containsKey(ContantXk.YJXSSDL))
  486. {
  487. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YJXSSDL);
  488. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  489. if(StringUtils.notEmp(pointValue))
  490. {
  491. //月检修损失电量
  492. pewp.setYjxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  493. }
  494. }
  495. if(pointmap.containsKey(ContantXk.YCNSLJXSSDL))
  496. {
  497. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCNSLJXSSDL);
  498. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  499. if(StringUtils.notEmp(pointValue))
  500. {
  501. //月场内受累检修损失电量
  502. pewp.setYcnsljxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  503. }
  504. }
  505. if(pointmap.containsKey(ContantXk.YDJSSDL))
  506. {
  507. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YDJSSDL);
  508. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  509. if(StringUtils.notEmp(pointValue))
  510. {
  511. //月待机损失电量
  512. pewp.setYdjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  513. pewp.setYdjssdl(0.0);
  514. }
  515. }
  516. if(pointmap.containsKey(ContantXk.YQXJCLSSDL))
  517. {
  518. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YQXJCLSSDL);
  519. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  520. if(StringUtils.notEmp(pointValue))
  521. {
  522. //月缺陷降出力损失电量
  523. pewp.setYqxjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  524. pewp.setYqxjclssdl(0.0);
  525. }
  526. }
  527. if(pointmap.containsKey(ContantXk.YSDTJSSDL))
  528. {
  529. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YSDTJSSDL);
  530. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  531. if(StringUtils.notEmp(pointValue))
  532. {
  533. //月手动停机损失电量
  534. pewp.setYsdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  535. pewp.setYsdtjssdl(0.0);
  536. }
  537. }
  538. if(pointmap.containsKey(ContantXk.YXNSSDL))
  539. {
  540. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YXNSSDL);
  541. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  542. if(StringUtils.notEmp(pointValue))
  543. {
  544. //月性能损失电量
  545. pewp.setYxnssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  546. pewp.setYxnssdl(0.0);
  547. }
  548. }
  549. if(pointmap.containsKey(ContantXk.YXDTJSSDL))
  550. {
  551. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YXDTJSSDL);
  552. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  553. if(StringUtils.notEmp(pointValue))
  554. {
  555. //月限电停机损失电量
  556. pewp.setYxdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  557. }
  558. }
  559. if(pointmap.containsKey(ContantXk.YXDJCLSSDL))
  560. {
  561. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YXDJCLSSDL);
  562. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  563. if(StringUtils.notEmp(pointValue))
  564. {
  565. //月限电降出力损失电量
  566. pewp.setYxdjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  567. }
  568. }
  569. if(pointmap.containsKey(ContantXk.YCWSLDWSSDL))
  570. {
  571. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCWSLDWSSDL);
  572. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  573. if(StringUtils.notEmp(pointValue))
  574. {
  575. //月场外受累电网损失电量
  576. pewp.setYcwsldwssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  577. }
  578. }
  579. if(pointmap.containsKey(ContantXk.YCWSLTQSSDL))
  580. {
  581. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCWSLTQSSDL);
  582. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  583. if(StringUtils.notEmp(pointValue))
  584. {
  585. //月场外受累天气损失电量
  586. pewp.setYcwsltqssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  587. }
  588. }
  589. if(pointmap.containsKey(ContantXk.YZFDL))
  590. {
  591. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YZFDL);
  592. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  593. if(StringUtils.notEmp(pointValue))
  594. {
  595. //月增发电量
  596. pewp.setYzfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  597. }
  598. }
  599. if(pointmap.containsKey(ContantXk.YQFDL))
  600. {
  601. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YQFDL);
  602. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  603. if(StringUtils.notEmp(pointValue))
  604. {
  605. //月欠发电量
  606. pewp.setYqfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  607. }
  608. }
  609. if(pointmap.containsKey(ContantXk.YZHD))
  610. {
  611. ProBasicEquipmentPoint point= pointmap.get(ContantXk.YZHD);
  612. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  613. if(StringUtils.notEmp(pointValue))
  614. {
  615. //月自耗电
  616. pewp.setYzhd(StringUtils.round(pointValue.getPointValueInDouble(),2));
  617. }
  618. }
  619. //*******************************************月信息统计*********************************************************/
  620. //*******************************************年信息统计*********************************************************/
  621. if(pepid1ls.isEmpty())
  622. {
  623. setPowerandSpeedYear(pewp);
  624. }else
  625. {
  626. if(pointmap.containsKey(ContantXk.NPJFS))
  627. {
  628. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NPJFS);
  629. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  630. if(!pointls.isEmpty())
  631. {
  632. DoubleSummaryStatistics summaryStatistics=pointls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
  633. //年最大风速
  634. pewp.setNzdfs(summaryStatistics.getMax());
  635. //年最小风速
  636. pewp.setNzxfs(summaryStatistics.getMin());
  637. //年平均风速
  638. pewp.setNpjfs(summaryStatistics.getSum());
  639. }
  640. }
  641. if(pointmap.containsKey(ContantXk.NPJGL))
  642. {
  643. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NPJFS);
  644. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  645. if(!pointls.isEmpty())
  646. {
  647. DoubleSummaryStatistics summaryStatistics=pointls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
  648. //年最大功率
  649. pewp.setNzdgl(summaryStatistics.getMax());
  650. //年最小功率
  651. pewp.setNzxgl(summaryStatistics.getMin());
  652. //年平均功率
  653. pewp.setNpjgl(summaryStatistics.getAverage());
  654. }
  655. }
  656. }
  657. if(pointmap.containsKey(ContantXk.NFDL))
  658. {
  659. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NFDL);
  660. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  661. if(StringUtils.notEmp(pointValue))
  662. {
  663. //年发电量
  664. pewp.setNfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  665. }
  666. }
  667. if(pointmap.containsKey(ContantXk.NKYDL))
  668. {
  669. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NKYDL);
  670. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  671. if(StringUtils.notEmp(pointValue))
  672. {
  673. //年可用电量
  674. pewp.setNkydl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  675. }
  676. }
  677. if(pointmap.containsKey(ContantXk.NLLFDL))
  678. {
  679. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NLLFDL);
  680. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  681. if(StringUtils.notEmp(pointValue))
  682. {
  683. //年理论发电量
  684. pewp.setNllfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  685. }
  686. }
  687. if(pointmap.containsKey(ContantXk.NGZSSDL))
  688. {
  689. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NGZSSDL);
  690. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  691. if(StringUtils.notEmp(pointValue))
  692. {
  693. //年故障损失电量
  694. pewp.setNgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  695. }
  696. }
  697. if(pointmap.containsKey(ContantXk.NCNSLGZSSDL))
  698. {
  699. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCNSLGZSSDL);
  700. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  701. if(StringUtils.notEmp(pointValue))
  702. {
  703. //年场内受累故障损失电量
  704. pewp.setNcnslgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  705. }
  706. }
  707. if(pointmap.containsKey(ContantXk.NJXSSDL))
  708. {
  709. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NJXSSDL);
  710. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  711. if(StringUtils.notEmp(pointValue))
  712. {
  713. //年检修损失电量
  714. pewp.setNjxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  715. }
  716. }
  717. if(pointmap.containsKey(ContantXk.NCNSLJXSSDL))
  718. {
  719. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCNSLJXSSDL);
  720. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  721. if(StringUtils.notEmp(pointValue))
  722. {
  723. //年场内受累检修损失电量
  724. pewp.setNcnsljxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  725. }
  726. }
  727. if(pointmap.containsKey(ContantXk.NDJSSDL))
  728. {
  729. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NDJSSDL);
  730. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  731. if(StringUtils.notEmp(pointValue))
  732. {
  733. //年待机损失电量
  734. // pewp.setNdjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  735. pewp.setNdjssdl(0.0);
  736. }
  737. }
  738. if(pointmap.containsKey(ContantXk.NQXJCLSSDL))
  739. {
  740. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NQXJCLSSDL);
  741. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  742. if(StringUtils.notEmp(pointValue))
  743. {
  744. //年缺陷降出力损失电量
  745. // pewp.setNqxjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  746. pewp.setNqxjclssdl(0.0);
  747. }
  748. }
  749. if(pointmap.containsKey(ContantXk.NSDTJSSDL))
  750. {
  751. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NSDTJSSDL);
  752. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  753. if(StringUtils.notEmp(pointValue))
  754. {
  755. //年手动停机损失电量
  756. pewp.setNsdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  757. pewp.setNsdtjssdl(0.0);
  758. }
  759. }
  760. if(pointmap.containsKey(ContantXk.NXNSSDL))
  761. {
  762. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NXNSSDL);
  763. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  764. if(StringUtils.notEmp(pointValue))
  765. {
  766. //年性能损失电量
  767. pewp.setNxnssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  768. pewp.setNxnssdl(0.0);
  769. }
  770. }
  771. if(pointmap.containsKey(ContantXk.NXDTJSSDL))
  772. {
  773. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NXDTJSSDL);
  774. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  775. if(StringUtils.notEmp(pointValue))
  776. {
  777. //年限电停机损失电量
  778. pewp.setNxdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  779. }
  780. }
  781. if(pointmap.containsKey(ContantXk.NXDJCLSSDL))
  782. {
  783. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NXDJCLSSDL);
  784. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  785. if(StringUtils.notEmp(pointValue))
  786. {
  787. //年限电降出力损失电量
  788. pewp.setNxdjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  789. }
  790. }
  791. if(pointmap.containsKey(ContantXk.NCWSLDWSSDL))
  792. {
  793. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCWSLDWSSDL);
  794. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  795. if(StringUtils.notEmp(pointValue))
  796. {
  797. //年场外受累电网损失电量
  798. pewp.setNcwsldwssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  799. }
  800. }
  801. if(pointmap.containsKey(ContantXk.NCWSLTQSSDL))
  802. {
  803. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCWSLTQSSDL);
  804. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  805. if(StringUtils.notEmp(pointValue))
  806. {
  807. //年场外受累天气损失电量
  808. // pewp.setNcwsltqssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  809. pewp.setNcwsltqssdl(0.0);
  810. }
  811. }
  812. if(pointmap.containsKey(ContantXk.NZFDL))
  813. {
  814. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NZFDL);
  815. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  816. if(StringUtils.notEmp(pointValue))
  817. {
  818. //年增发电量
  819. pewp.setNzfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  820. }
  821. }
  822. if(pointmap.containsKey(ContantXk.NQFDL))
  823. {
  824. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NQFDL);
  825. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  826. if(StringUtils.notEmp(pointValue))
  827. {
  828. //年欠发电量
  829. pewp.setNqfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
  830. }
  831. }
  832. if(pointmap.containsKey(ContantXk.NZHD))
  833. {
  834. ProBasicEquipmentPoint point= pointmap.get(ContantXk.NZHD);
  835. PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
  836. if(StringUtils.notEmp(pointValue))
  837. {
  838. //年自耗电
  839. pewp.setNzhd(StringUtils.round(pointValue.getPointValueInDouble(),2));
  840. }
  841. }
  842. }
  843. private void setPowerandSpeedYear(ProEconEquipmentInfoDay1 pewp) {
  844. //年最大风速
  845. pewp.setNzdfs(pewp.getRzdfs());
  846. //年最小风速
  847. pewp.setNzxfs(pewp.getRzxfs());
  848. //年平均风速
  849. pewp.setNpjfs(pewp.getRpjfs());
  850. //年最大功率
  851. pewp.setNzdgl(pewp.getRzdgl());
  852. //年最小功率
  853. pewp.setNzxgl(pewp.getRzxgl());
  854. //年平均功率
  855. pewp.setNpjgl(pewp.getRpjgl());
  856. }
  857. private void setPowerandSpeedMonth(ProEconEquipmentInfoDay1 pewp) {
  858. //月最大风速
  859. pewp.setYzdfs(pewp.getRzdfs());
  860. //月最小风速
  861. pewp.setYzxfs(pewp.getRzxfs());
  862. //月平均风速
  863. pewp.setYpjfs(pewp.getRpjfs());
  864. //月最大功率
  865. pewp.setYzdgl(pewp.getRzdgl());
  866. //月最小功率
  867. pewp.setYzxgl(pewp.getRzxgl());
  868. //月平均功率
  869. pewp.setYpjgl(pewp.getRpjgl());
  870. }
  871. }