EquipmentInfo3Service.java 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801
  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.ProEconEquipmentInfoDay3;
  10. import com.gyee.generation.service.auto.IProEconEquipmentInfoDay3Service;
  11. import com.gyee.generation.task.thread.EquipmentInfo3Thread;
  12. import com.gyee.generation.util.DateUtils;
  13. import com.gyee.generation.util.realtimesource.IEdosUtil;
  14. import org.springframework.stereotype.Service;
  15. import javax.annotation.Resource;
  16. import java.util.*;
  17. import java.util.concurrent.CountDownLatch;
  18. import java.util.concurrent.Executor;
  19. import java.util.stream.Collectors;
  20. @Service
  21. public class EquipmentInfo3Service {
  22. // private static final Logger logger = LoggerFactory.getLogger(WindPowerInfo2Service.class);
  23. @Resource
  24. private IEdosUtil edosUtil;
  25. @Resource
  26. private IProEconEquipmentInfoDay3Service proEconEquipmentInfoDay3Service;
  27. @Resource
  28. private Executor executor;
  29. /**
  30. * 计算设备日信息
  31. */
  32. public void calEquipmentInfoDay(Date recordDate) throws Exception {
  33. Calendar c=Calendar.getInstance();
  34. c.setTime(recordDate);
  35. Date end=c.getTime();
  36. Date begin= DateUtils.truncate(c.getTime());
  37. //判断是否有重复记录,先删除重复记录
  38. QueryWrapper<ProEconEquipmentInfoDay3> queryWrapper = new QueryWrapper<>();
  39. queryWrapper.eq("record_date",recordDate);
  40. List<String> idls = proEconEquipmentInfoDay3Service.list(queryWrapper).stream()
  41. .map(ProEconEquipmentInfoDay3::getId)
  42. .collect(Collectors.toList());
  43. // if (idls.size() > 0) {
  44. //
  45. // proEconEquipmentInfoDay3Service.removeByIds(idls);
  46. //
  47. // }
  48. List<String> tempids=new ArrayList<>();
  49. for(int i=0;i<idls.size();i++)
  50. {
  51. tempids.add(idls.get(i));
  52. if(tempids.size()==100)
  53. {
  54. proEconEquipmentInfoDay3Service.removeByIds(tempids);
  55. tempids=new ArrayList<>();
  56. }
  57. }
  58. if(!tempids.isEmpty())
  59. {
  60. proEconEquipmentInfoDay3Service.removeByIds(tempids);
  61. }
  62. Map<String,ProEconEquipmentInfoDay3> pep3map=new HashMap<>();
  63. Calendar cl=Calendar.getInstance();
  64. cl.setTime(recordDate);
  65. cl.add(Calendar.DAY_OF_MONTH,-1);
  66. if(cl.get(Calendar.DAY_OF_MONTH)!=1)
  67. {
  68. QueryWrapper<ProEconEquipmentInfoDay3> queryWrapper2 = new QueryWrapper<>();
  69. queryWrapper2.eq("record_date",cl.getTime());
  70. List<ProEconEquipmentInfoDay3> pep3ls = proEconEquipmentInfoDay3Service.list(queryWrapper2);
  71. if(!pep3ls.isEmpty())
  72. {
  73. for(ProEconEquipmentInfoDay3 pep:pep3ls)
  74. {
  75. pep3map.put(pep.getWindturbineId(),pep);
  76. }
  77. }
  78. }
  79. List<ProEconEquipmentInfoDay3> dayls=new ArrayList<>();
  80. final CountDownLatch latch = new CountDownLatch(+CacheContext.wtls.size());
  81. for(ProBasicEquipment wt:CacheContext.wtls)
  82. {
  83. // if(CacheContext.wtpAimap.containsKey(wt.getId()))
  84. // {
  85. //
  86. //
  87. // ProEconEquipmentInfoDay3 pewp=new ProEconEquipmentInfoDay3();
  88. // Initial.initial(pewp);
  89. // pewp.setCompanyId(wt.getCompanyId());
  90. // pewp.setWindpowerstationId(wt.getWindpowerstationId());
  91. // pewp.setLineId(wt.getLineId());
  92. // pewp.setProjectId(wt.getProjectId());
  93. // pewp.setRegionId(wt.getRegionId());
  94. // pewp.setRecordDate(DateUtils.truncate(recordDate));
  95. // pewp.setWindturbineId(wt.getId());
  96. // //昨日的统计结果
  97. // List<ProEconEquipmentInfoDay3> pepidls =new ArrayList<>();
  98. //// Calendar cl=Calendar.getInstance();
  99. //// cl.setTime(recordDate);
  100. //// cl.add(Calendar.DAY_OF_MONTH,-1);
  101. //// if(cl.get(Calendar.DAY_OF_MONTH)!=1)
  102. ////
  103. //// {
  104. //// QueryWrapper<ProEconEquipmentInfoDay3> queryWrapper2 = new QueryWrapper<>();
  105. //// queryWrapper2.eq("record_date",cl.getTime())
  106. //// .eq("windturbine_Id",wt.getId());
  107. //// pepidls = proEconEquipmentInfoDay3Service.list(queryWrapper2);
  108. ////// .stream()
  109. ////// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
  110. ////// && i.getWindturbineId().equals(wt.getId())
  111. ////// )
  112. ////// .collect(Collectors.toList());
  113. //// }
  114. //
  115. // if(pep3map.containsKey(wt.getId()))
  116. // {
  117. // pepidls.add(pep3map.get(wt.getId()));
  118. // }
  119. // calDetiall( pewp, end, begin,wt,pepidls);
  120. // calSimple( pewp, end, begin, wt,pepidls);
  121. // dayls.add(pewp);
  122. // // proEconEquipmentInfoDay3Service.save(pewp);
  123. //
  124. //
  125. // }
  126. new Thread(new EquipmentInfo3Thread(executor, wt, pep3map,
  127. recordDate, end, begin,dayls,
  128. edosUtil,latch)).start();
  129. }
  130. latch.await();
  131. List<ProEconEquipmentInfoDay3> templs=new ArrayList<>();
  132. for(ProEconEquipmentInfoDay3 vo:dayls)
  133. {
  134. if(StringUtils.notEmp(vo) && StringUtils.notEmp(vo.getWindturbineId()))
  135. {
  136. templs.add(vo);
  137. if(templs.size()==100)
  138. {
  139. proEconEquipmentInfoDay3Service.saveBatch(templs);
  140. templs=new ArrayList<>();
  141. }
  142. }
  143. }
  144. if(!templs.isEmpty())
  145. {
  146. proEconEquipmentInfoDay3Service.saveBatch(templs);
  147. }
  148. // proEconEquipmentInfoDay3Service.saveBatch(dayls);
  149. }
  150. private void calDetiall(ProEconEquipmentInfoDay3 pewp, Date end, Date begin, ProBasicEquipment wt, List<ProEconEquipmentInfoDay3> pepidls) throws Exception {
  151. // // 0 待机
  152. // 1 手动停机
  153. // 2 正常发电
  154. // 3 发电降出力
  155. // 4 故障
  156. // 5 故障受累
  157. // 6 检修
  158. // 7 检修受累
  159. // 8 限电降出力
  160. // 9 限电停机
  161. // 10 电网受累
  162. // 11 环境受累
  163. // 12 通讯中断
  164. // 13 设备离线
  165. double lastState;//上一分钟状态
  166. double djcs=0;//待机时长
  167. double sdtjcs=0;//手动停机时长
  168. double zcfdcs=0;//正常发电时长
  169. double fdjclcs=0;//发电降出力时长
  170. double gzcs=0;//故障时长
  171. double gzslcs=0;//故障受累时长
  172. double jxcs=0;//检修时长
  173. double jxslcs=0;//检修受累时长
  174. double xdjclcs=0;//限电降出力时长
  175. double xdtjcs=0;//限电停机时长
  176. double dwslcs=0;//电网受累时长
  177. double hjslcs=0;//环境受累时长
  178. double txzdcs=0;//通讯中断时长
  179. double sblxcs=0;//设备离线时长
  180. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  181. lastState=-1;//上一分钟状态
  182. Map<String, ProBasicEquipmentPoint> aimap=wtpAimap.get(wt.getId());
  183. if(aimap.containsKey(ContantXk.MXZT))
  184. {
  185. ProBasicEquipmentPoint point=aimap.get(ContantXk.MXZT);
  186. //按照分钟时间进行统计状态快照值
  187. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  188. if(!pointls.isEmpty())
  189. {
  190. for(PointData po :pointls)
  191. {
  192. if(po.getPointValueInDouble()==0)
  193. {
  194. if(lastState!=po.getPointValueInDouble())
  195. {
  196. //将当前状态保存到上一分钟状态
  197. lastState=po.getPointValueInDouble();
  198. //待机时长加1
  199. djcs++;
  200. }
  201. }else if(po.getPointValueInDouble()==1)
  202. {
  203. if(lastState!=po.getPointValueInDouble())
  204. {
  205. //将当前状态保存到上一分钟状态
  206. lastState=po.getPointValueInDouble();
  207. //手动停机时长加1
  208. sdtjcs++;
  209. }
  210. }else if(po.getPointValueInDouble()==2)
  211. {
  212. if(lastState!=po.getPointValueInDouble())
  213. {
  214. //将当前状态保存到上一分钟状态
  215. lastState=po.getPointValueInDouble();
  216. //正常发电时长加1
  217. zcfdcs++;
  218. }
  219. }else if(po.getPointValueInDouble()==3)
  220. {
  221. if(lastState!=po.getPointValueInDouble())
  222. {
  223. //将当前状态保存到上一分钟状态
  224. lastState=po.getPointValueInDouble();
  225. //发电降出力时长加1
  226. fdjclcs++;
  227. }
  228. }else if(po.getPointValueInDouble()==4)
  229. {
  230. if(lastState!=po.getPointValueInDouble())
  231. {
  232. //将当前状态保存到上一分钟状态
  233. lastState=po.getPointValueInDouble();
  234. //故障时长加1
  235. gzcs++;
  236. }
  237. }else if(po.getPointValueInDouble()==5)
  238. {
  239. if(lastState!=po.getPointValueInDouble())
  240. {
  241. //将当前状态保存到上一分钟状态
  242. lastState=po.getPointValueInDouble();
  243. //故障受累时长加1
  244. gzslcs++;
  245. }
  246. }else if(po.getPointValueInDouble()==6)
  247. {
  248. if(lastState!=po.getPointValueInDouble())
  249. {
  250. //将当前状态保存到上一分钟状态
  251. lastState=po.getPointValueInDouble();
  252. //检修时长加1
  253. jxcs++;
  254. }
  255. }else if(po.getPointValueInDouble()==7)
  256. {
  257. if(lastState!=po.getPointValueInDouble())
  258. {
  259. //将当前状态保存到上一分钟状态
  260. lastState=po.getPointValueInDouble();
  261. //检修受累时长加1
  262. jxslcs++;
  263. }
  264. }else if(po.getPointValueInDouble()==8)
  265. {
  266. if(lastState!=po.getPointValueInDouble())
  267. {
  268. //将当前状态保存到上一分钟状态
  269. lastState=po.getPointValueInDouble();
  270. //限电降出力时长加1
  271. xdjclcs++;
  272. }
  273. }else if(po.getPointValueInDouble()==9)
  274. {
  275. if(lastState!=po.getPointValueInDouble())
  276. {
  277. //将当前状态保存到上一分钟状态
  278. lastState=po.getPointValueInDouble();
  279. //限电停机时长加1
  280. xdtjcs++;
  281. }
  282. //限电停机时长加1
  283. xdtjcs++;
  284. }else if(po.getPointValueInDouble()==10)
  285. {
  286. if(lastState!=po.getPointValueInDouble())
  287. {
  288. //将当前状态保存到上一分钟状态
  289. lastState=po.getPointValueInDouble();
  290. //电网受累时长加1
  291. dwslcs++;
  292. }
  293. }else if(po.getPointValueInDouble()==11)
  294. {
  295. if(lastState!=po.getPointValueInDouble())
  296. {
  297. //将当前状态保存到上一分钟状态
  298. lastState=po.getPointValueInDouble();
  299. //环境受累时长加1
  300. hjslcs++;
  301. }
  302. }else if(po.getPointValueInDouble()==12)
  303. {
  304. if(lastState!=po.getPointValueInDouble())
  305. {
  306. //将当前状态保存到上一分钟状态
  307. lastState=po.getPointValueInDouble();
  308. //通讯中断时长加1
  309. txzdcs++;
  310. }
  311. }else if(po.getPointValueInDouble()==13)
  312. {
  313. if(lastState!=po.getPointValueInDouble())
  314. {
  315. //将当前状态保存到上一分钟状态
  316. lastState=po.getPointValueInDouble();
  317. //设备离线时长加1
  318. sblxcs++;
  319. }
  320. }
  321. }
  322. }
  323. }
  324. //日合计故障次数(明细)
  325. pewp.setRgzcsmx(gzcs);
  326. //日合计场内受累故障次数(明细)
  327. pewp.setRcnslgzcsmx(gzslcs);
  328. //日合计检修次数(明细)
  329. pewp.setRjxcsmx(jxcs);
  330. //日合计场内受累检修次数(明细)
  331. pewp.setRcnsljxcsmx(jxslcs);
  332. //日合计待机次数(明细)
  333. pewp.setRdjcsmx(djcs);
  334. //日合计缺陷降出力次数(明细)
  335. pewp.setRqxjclcsmx(fdjclcs);
  336. //日合计手动停机次数(明细)
  337. pewp.setRsdtjcsmx(sdtjcs);
  338. //日合计性能次数(明细)
  339. pewp.setRbwcsmx(zcfdcs);
  340. //日合计限电停机次数(明细)
  341. pewp.setRxdtjcsmx(xdtjcs);
  342. //日合计限电降出力次数(明细)
  343. pewp.setRxdjclcsmx(xdjclcs);
  344. //日合计场外受累电网次数(明细)
  345. pewp.setRcwsldwcsmx(dwslcs);
  346. //日合计场外受累电网次数(明细)
  347. pewp.setRcwsltqcsmx(hjslcs);
  348. //日合计通讯中断次数(明细)
  349. pewp.setRtxzdcsmx(txzdcs);
  350. //日合计离线次数(明细)
  351. pewp.setRlxcsmx(sblxcs);
  352. //*******************************************日信息统计*********************************************************/
  353. //*******************************************月信息统计*********************************************************/
  354. if(pepidls.isEmpty())
  355. {
  356. setLossHoursMonth(pewp);
  357. }else
  358. {
  359. ProEconEquipmentInfoDay3 pepid=pepidls.get(0);
  360. //月合计故障次数(明细)
  361. pewp.setYgzcsmx(StringUtils.round(pepid.getYgzcsmx()+pewp.getRgzcsmx(),2));
  362. //月合计场内受累故障次数(明细)
  363. pewp.setYcnslgzcsmx(StringUtils.round(pepid.getYcnslgzcsmx()+pewp.getRcnslgzcsmx(),2));
  364. //月合计检修次数(明细)
  365. pewp.setYjxcsmx(StringUtils.round(pepid.getYjxcsmx()+pewp.getRjxcsmx(),2));
  366. //月合计场内受累检修次数(明细)
  367. pewp.setYcnsljxcsmx(StringUtils.round( pepid.getYcnsljxcsmx()+pewp.getRcnsljxcsmx(),2));
  368. //月合计待机次数(明细)
  369. pewp.setYdjcsmx(StringUtils.round(pepid.getYdjcsmx()+pewp.getRdjcsmx(),2));
  370. //月合计缺陷降出力次数(明细)
  371. pewp.setYqxjclcsmx(StringUtils.round(pepid.getYqxjclcsmx()+pewp.getRqxjclcsmx(),2));
  372. //月合计手动停机次数(明细)
  373. pewp.setYsdtjcsmx(StringUtils.round(pepid.getYsdtjcsmx()+pewp.getRsdtjcsmx(),2));
  374. //月合计性能次数(明细)
  375. pewp.setYbwcsmx(StringUtils.round(pepid.getYbwcsmx()+pewp.getRbwcsmx(),2));
  376. //月合计限电停机次数(明细)
  377. pewp.setYxdtjcsmx(StringUtils.round(pepid.getYxdtjcsmx()+pewp.getRxdtjcsmx(),2));
  378. //月合计限电降出力次数(明细)
  379. pewp.setYxdjclcsmx(StringUtils.round(pepid.getYxdjclcsmx()+pewp.getRxdjclcsmx(),2));
  380. //月合计场外受累电网次数(明细)
  381. pewp.setYcwsldwcsmx(StringUtils.round(pepid.getYcwsldwcsmx()+pewp.getRcwsldwcsmx(),2));
  382. //月合计场外受累电网次数(明细)
  383. pewp.setYcwsltqcsmx(StringUtils.round(pepid.getYcwsltqcsmx()+pewp.getRcwsltqcsmx(),2));
  384. //月合计通讯中断次数(明细)
  385. pewp.setYtxzdcsmx(StringUtils.round(pepid.getYtxzdcsmx()+pewp.getRtxzdcsmx(),2));
  386. //月合计离线次数(明细)
  387. pewp.setYlxcsmx(StringUtils.round(pepid.getYlxcsmx()+pewp.getRlxcsmx(),2));
  388. }
  389. //*******************************************月信息统计*********************************************************/
  390. //*******************************************年信息统计*********************************************************/
  391. if(pepidls.isEmpty())
  392. {
  393. setLossHoursYear(pewp);
  394. }else
  395. {
  396. ProEconEquipmentInfoDay3 pepid=pepidls.get(0);
  397. //年合计故障次数(明细)
  398. pewp.setNgzcsmx(StringUtils.round(pepid.getNgzcsmx()+pewp.getRgzcsmx(),2));
  399. //年合计场内受累故障次数(明细)
  400. pewp.setNcnslgzcsmx(StringUtils.round(pepid.getNcnslgzcsmx()+pewp.getRcnslgzcsmx(),2));
  401. //年合计检修次数(明细)
  402. pewp.setNjxcsmx(StringUtils.round(pepid.getNjxcsmx()+pewp.getRjxcsmx(),2));
  403. //年合计场内受累检修次数(明细)
  404. pewp.setNcnsljxcsmx(StringUtils.round( pepid.getNcnsljxcsmx()+pewp.getRcnsljxcsmx(),2));
  405. //年合计待机次数(明细)
  406. pewp.setNdjcsmx(StringUtils.round(pepid.getNdjcsmx()+pewp.getRdjcsmx(),2));
  407. //年合计缺陷降出力次数(明细)
  408. pewp.setNqxjclcsmx(StringUtils.round(pepid.getNqxjclcsmx()+pewp.getRqxjclcsmx(),2));
  409. //年合计手动停机次数(明细)
  410. pewp.setNsdtjcsmx(StringUtils.round(pepid.getNsdtjcsmx()+pewp.getRsdtjcsmx(),2));
  411. //年合计性能次数(明细)
  412. pewp.setNbwcsmx(StringUtils.round(pepid.getNbwcsmx()+pewp.getRbwcsmx(),2));
  413. //年合计限电停机次数(明细)
  414. pewp.setNxdtjcsmx(StringUtils.round(pepid.getNxdtjcsmx()+pewp.getRxdtjcsmx(),2));
  415. //年合计限电降出力次数(明细)
  416. pewp.setNxdjclcsmx(StringUtils.round(pepid.getNxdjclcsmx()+pewp.getRxdjclcsmx(),2));
  417. //年合计场外受累电网次数(明细)
  418. pewp.setNcwsldwcsmx(StringUtils.round(pepid.getNcwsldwcsmx()+pewp.getRcwsldwcsmx(),2));
  419. //年合计场外受累电网次数(明细)
  420. pewp.setNcwsltqcsmx(StringUtils.round(pepid.getNcwsltqcsmx()+pewp.getRcwsltqcsmx(),2));
  421. //年合计通讯中断次数(明细)
  422. pewp.setNtxzdcsmx(StringUtils.round(pepid.getNtxzdcsmx()+pewp.getRtxzdcsmx(),2));
  423. //年合计离线次数(明细)
  424. pewp.setNlxcsmx(StringUtils.round(pepid.getNlxcsmx()+pewp.getRlxcsmx(),2));
  425. }
  426. }
  427. private static void setLossHoursYear(ProEconEquipmentInfoDay3 pewp) {
  428. //年合计故障次数(明细)
  429. pewp.setNgzcsmx(pewp.getRgzcsmx());
  430. //年合计场内受累故障次数(明细)
  431. pewp.setNcnslgzcsmx(pewp.getRcnslgzcsmx());
  432. //年合计检修次数(明细)
  433. pewp.setNjxcsmx(pewp.getRjxcsmx());
  434. //年合计场内受累检修次数(明细)
  435. pewp.setNcnsljxcsmx(pewp.getRcnsljxcsmx());
  436. //年合计待机次数(明细)
  437. pewp.setNdjcsmx(pewp.getRdjcsmx());
  438. //年合计缺陷降出力次数(明细)
  439. pewp.setNqxjclcsmx(pewp.getRqxjclcsmx());
  440. //年合计手动停机次数(明细)
  441. pewp.setNsdtjcsmx(pewp.getRsdtjcsmx());
  442. //年合计性能次数(明细)
  443. pewp.setNbwcsmx(pewp.getRbwcsmx());
  444. //年合计限电停机次数(明细)
  445. pewp.setNxdtjcsmx(pewp.getRxdtjcsmx());
  446. //年合计限电降出力次数(明细)
  447. pewp.setNxdjclcsmx(pewp.getRxdjclcsmx());
  448. //年合计场外受累电网次数(明细)
  449. pewp.setNcwsldwcsmx(pewp.getRcwsldwcsmx());
  450. //年合计场外受累电网次数(明细)
  451. pewp.setNcwsltqcsmx(pewp.getRcwsltqcsmx());
  452. //年合计通讯中断次数(明细)
  453. pewp.setNtxzdcsmx(pewp.getRtxzdcsmx());
  454. //年合计离线次数(明细)
  455. pewp.setNlxcsmx(pewp.getRlxcsmx());
  456. }
  457. private static void setLossHoursMonth(ProEconEquipmentInfoDay3 pewp) {
  458. //月合计故障次数(明细)
  459. pewp.setYgzcsmx(pewp.getRgzcsmx());
  460. //月合计场内受累故障次数(明细)
  461. pewp.setYcnslgzcsmx(pewp.getRcnslgzcsmx());
  462. //月合计检修次数(明细)
  463. pewp.setYjxcsmx(pewp.getRjxcsmx());
  464. //月合计场内受累检修次数(明细)
  465. pewp.setYcnsljxcsmx(pewp.getRcnsljxcsmx());
  466. //月合计待机次数(明细)
  467. pewp.setYdjcsmx(pewp.getRdjcsmx());
  468. //月合计缺陷降出力次数(明细)
  469. pewp.setYqxjclcsmx(pewp.getRqxjclcsmx());
  470. //月合计手动停机次数(明细)
  471. pewp.setYsdtjcsmx(pewp.getRsdtjcsmx());
  472. //月合计性能次数(明细)
  473. pewp.setYbwcsmx(pewp.getRbwcsmx());
  474. //月合计限电停机次数(明细)
  475. pewp.setYxdtjcsmx(pewp.getRxdtjcsmx());
  476. //月合计限电降出力次数(明细)
  477. pewp.setYxdjclcsmx(pewp.getRxdjclcsmx());
  478. //月合计场外受累电网次数(明细)
  479. pewp.setYcwsldwcsmx(pewp.getRcwsldwcsmx());
  480. //月合计场外受累电网次数(明细)
  481. pewp.setYcwsltqcsmx(pewp.getRcwsltqcsmx());
  482. //月合计通讯中断次数(明细)
  483. pewp.setYtxzdcsmx(pewp.getRtxzdcsmx());
  484. //月合计离线次数(明细)
  485. pewp.setYlxcsmx(pewp.getRlxcsmx());
  486. }
  487. private static void setLossHoursMonthSimple(ProEconEquipmentInfoDay3 pewp) {
  488. //月合计待机次数
  489. pewp.setYdjcs(pewp.getRdjcs());
  490. //月合计维护停机次数
  491. pewp.setYjxtjcs(pewp.getRjxtjcs());
  492. // 月合计故障停机次数
  493. pewp.setYgztjcs(pewp.getRgztjcs());
  494. //月合计运行次数
  495. pewp.setYyxcs(pewp.getRyxcs());
  496. //月合计限电次数
  497. pewp.setYxdcs(pewp.getRxdcs());
  498. //月合计通讯中断次数
  499. pewp.setYtxzdcs(pewp.getRtxzdcs());
  500. //月合计受累次数
  501. pewp.setYslcs(pewp.getRslcs());
  502. }
  503. private static void setLossHoursYearSimple(ProEconEquipmentInfoDay3 pewp) {
  504. //年合计待机次数
  505. pewp.setNdjcs(pewp.getRdjcs());
  506. //年合计维护停机次数
  507. pewp.setNjxtjcs(pewp.getRjxtjcs());
  508. // 年合计故障次数
  509. pewp.setNgztjcs(pewp.getRgztjcs());
  510. //年合计运行次数
  511. pewp.setNyxcs(pewp.getRyxcs());
  512. //年合计限电次数
  513. pewp.setNxdcs(pewp.getRxdcs());
  514. //年合计通讯中断次数
  515. pewp.setNtxzdcs(pewp.getRtxzdcs());
  516. //年合计受累次数
  517. pewp.setNslcs(pewp.getRslcs());
  518. }
  519. private void calSimple(ProEconEquipmentInfoDay3 pewp, Date end, Date begin, ProBasicEquipment wt, List<ProEconEquipmentInfoDay3> pepidls) throws Exception {
  520. // 0 待机
  521. // 1 运行
  522. // 2 故障
  523. // 3 检修
  524. // 4 限电
  525. // 5 受累
  526. // 6 离线
  527. //*******************************************日信息统计*********************************************************/
  528. double lastState=-1;//上一分钟状态
  529. double djcs=0;//待机时长
  530. double zcfdcs=0;//正常发电时长
  531. double gzcs=0;//故障时长
  532. double jxcs=0;//检修时长
  533. double xdtjcs=0;//限电停机时长
  534. double slsc=0;//受累时长
  535. double txzdcs=0;//通讯中断时长
  536. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  537. Map<String, ProBasicEquipmentPoint> aimap=wtpAimap.get(wt.getId());
  538. if(aimap.containsKey(ContantXk.SBZT))
  539. {
  540. ProBasicEquipmentPoint point=aimap.get(ContantXk.SBZT);
  541. //按照分钟时间进行统计状态快照值
  542. List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
  543. if(!pointls.isEmpty()) {
  544. for (PointData po : pointls) {
  545. if (po.getPointValueInDouble() == 0) {
  546. if (lastState != po.getPointValueInDouble()) {
  547. //将当前状态保存到上一分钟状态
  548. lastState = po.getPointValueInDouble();
  549. //待机时长加1
  550. djcs++;
  551. }
  552. } else if (po.getPointValueInDouble() == 1) {
  553. if (lastState != po.getPointValueInDouble()) {
  554. //将当前状态保存到上一分钟状态
  555. lastState = po.getPointValueInDouble();
  556. //正常发电时长加1
  557. zcfdcs++;
  558. }
  559. } else if (po.getPointValueInDouble() == 2) {
  560. if (lastState != po.getPointValueInDouble()) {
  561. //将当前状态保存到上一分钟状态
  562. lastState = po.getPointValueInDouble();
  563. //故障时长加1
  564. gzcs++;
  565. }
  566. } else if (po.getPointValueInDouble() == 3) {
  567. if (lastState != po.getPointValueInDouble()) {
  568. //将当前状态保存到上一分钟状态
  569. lastState = po.getPointValueInDouble();
  570. //检修时长加1
  571. jxcs++;
  572. }
  573. } else if (po.getPointValueInDouble() == 4) {
  574. if (lastState != po.getPointValueInDouble()) {
  575. //将当前状态保存到上一分钟状态
  576. lastState = po.getPointValueInDouble();
  577. //限电停机时长加1
  578. xdtjcs++;
  579. }
  580. } else if (po.getPointValueInDouble() == 5) {
  581. if (lastState != po.getPointValueInDouble()) {
  582. //将当前状态保存到上一分钟状态
  583. lastState = po.getPointValueInDouble();
  584. //受累时长加1
  585. slsc++;
  586. }
  587. } else if (po.getPointValueInDouble() == 6) {
  588. if (lastState != po.getPointValueInDouble()) {
  589. //将当前状态保存到上一分钟状态
  590. lastState = po.getPointValueInDouble();
  591. //通讯中断时长加1
  592. txzdcs++;
  593. }
  594. }
  595. }
  596. }
  597. }
  598. //日合计待机次数
  599. pewp.setRdjcs(gzcs);
  600. //日合计维护停机次数
  601. pewp.setRjxtjcs(jxcs);
  602. // 日合计待机次数
  603. pewp.setRdjcs(djcs);
  604. //日合计运行次数
  605. pewp.setRyxcs(zcfdcs);
  606. //日合计限电次数
  607. pewp.setRxdcs(xdtjcs);
  608. //日合计通讯中断次数
  609. pewp.setRtxzdcs(txzdcs);
  610. //日合计受累次数
  611. pewp.setRslcs(slsc);
  612. //*******************************************日信息统计*********************************************************/
  613. //*******************************************月信息统计*********************************************************/
  614. if(pepidls.isEmpty())
  615. {
  616. setLossHoursMonthSimple(pewp);
  617. }else
  618. {
  619. ProEconEquipmentInfoDay3 pepid=pepidls.get(0);
  620. //月合计待机次数
  621. pewp.setYdjcs(StringUtils.round(pepid.getYdjcs()+pewp.getRdjcs(),2));
  622. //月合计维护停机次数
  623. pewp.setYjxtjcs(StringUtils.round(pepid.getYjxtjcs()+pewp.getRjxtjcs(),2));
  624. // 月合计故障次数
  625. pewp.setYgztjcs(StringUtils.round(pepid.getYgztjcs()+pewp.getRgztjcs(),2));
  626. //月合计运行次数
  627. pewp.setYyxcs(StringUtils.round(pepid.getYyxcs()+pewp.getRyxcs(),2));
  628. //月合计限电次数
  629. pewp.setYxdcs(StringUtils.round(pepid.getYxdcs()+pewp.getRxdcs(),2));
  630. //月合计通讯中断次数
  631. pewp.setYtxzdcs(StringUtils.round(pepid.getYtxzdcs()+pewp.getRtxzdcs(),2));
  632. //月合计受累次数
  633. pewp.setYslcs(StringUtils.round(pepid.getYslcs()+pewp.getRslcs(),2));
  634. }
  635. //*******************************************月信息统计*********************************************************/
  636. //*******************************************年信息统计*********************************************************/
  637. if(pepidls.isEmpty())
  638. {
  639. setLossHoursYearSimple(pewp);
  640. }else
  641. {
  642. ProEconEquipmentInfoDay3 pepid=pepidls.get(0);
  643. //年合计待机次数
  644. pewp.setNdjcs(StringUtils.round(pepid.getNdjcs()+pewp.getRdjcs(),2));
  645. //年合计维护停机次数
  646. pewp.setNjxtjcs(StringUtils.round(pepid.getNjxtjcs()+pewp.getRjxtjcs(),2));
  647. // 年合计故障次数
  648. pewp.setNgztjcs(StringUtils.round(pepid.getNgztjcs()+pewp.getRgztjcs(),2));
  649. //年合计运行次数
  650. pewp.setNyxcs(StringUtils.round(pepid.getNyxcs()+pewp.getRyxcs(),2));
  651. //年合计限电次数
  652. pewp.setNxdcs(StringUtils.round(pepid.getNxdcs()+pewp.getRxdcs(),2));
  653. //年合计通讯中断次数
  654. pewp.setNtxzdcs(StringUtils.round(pepid.getNtxzdcs()+pewp.getRtxzdcs(),2));
  655. //年合计受累次数
  656. pewp.setNslcs(StringUtils.round(pepid.getNslcs()+pewp.getRslcs(),2));
  657. }
  658. //*******************************************年信息统计*********************************************************/
  659. }
  660. }