EquipmentInfo1Service.java 38 KB

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