EquipmentInfo3Service.java 33 KB

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