EquipmentInfo1Service.java 40 KB

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