ShutdownnewService.java 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696
  1. package com.gyee.generation.service;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
  4. import com.gyee.common.contant.ContantXk;
  5. import com.gyee.common.model.PointData;
  6. import com.gyee.generation.init.CacheContext;
  7. import com.gyee.generation.mapper.auto.AlarmTsMapper;
  8. import com.gyee.generation.model.auto.*;
  9. import com.gyee.generation.model.vo.AlarmSuperTalbeType;
  10. import com.gyee.generation.model.vo.AlarmVo;
  11. import com.gyee.generation.model.vo.StatusDetailValue;
  12. import com.gyee.generation.service.auto.IProEconInterruptionService;
  13. import com.gyee.generation.service.auto.IProEconShutdownEvent2Service;
  14. import com.gyee.generation.service.auto.IProEconShutdownEventService;
  15. import com.gyee.generation.service.auto.IProEconWindturbineStatusService;
  16. import com.gyee.generation.util.DateUtils;
  17. import com.gyee.generation.util.StringUtils;
  18. import com.gyee.generation.util.realtimesource.IEdosUtil;
  19. import org.slf4j.Logger;
  20. import org.slf4j.LoggerFactory;
  21. import org.springframework.stereotype.Service;
  22. import javax.annotation.Resource;
  23. import java.util.*;
  24. import java.util.concurrent.Executor;
  25. import java.util.stream.Collectors;
  26. @Service
  27. public class ShutdownnewService {
  28. @Resource
  29. private IEdosUtil edosUtil;
  30. @Resource
  31. private IProEconWindturbineStatusService proEconWindturbineStatusService;
  32. @Resource
  33. private IProEconShutdownEventService proEconShutdownEventService;
  34. @Resource
  35. private IProEconShutdownEvent2Service proEconShutdownEvent2Service;
  36. @Resource
  37. private IProEconInterruptionService proEconInterruptionService;
  38. @Resource
  39. private AlarmTsMapper alarmTsMapper;
  40. public static Logger logger = LoggerFactory.getLogger(ShutdownnewService.class);
  41. @Resource
  42. private Executor executor;
  43. public void execShutdown(Date recordDate) throws Exception {
  44. List<String> wtStatusIdLs = new ArrayList<>();
  45. Map<String, PointData> wtStatusMap = new HashMap<>();
  46. Map<String, ProEconWindturbineStatus> oldStatusMap = new HashMap<>();
  47. Map<String, ProEconShutdownEvent> oldShutdownEvent = new HashMap<>();
  48. Map<String, ProEconInterruption> oldInterrup = new HashMap<>();
  49. Map<String, ProEconShutdownEvent2> oldShutdownEvent2 = new HashMap<>();
  50. List<ProBasicEquipment> wtls = new ArrayList<>();
  51. wtls.addAll(CacheContext.wtls);
  52. for (ProBasicEquipment wt : wtls ) {
  53. Map<String, ProBasicEquipmentPoint> windturbinetestingpointnewMap = CacheContext.wtpAimap.get(wt.getId());
  54. //取实时状态数据 赋值给status
  55. if (windturbinetestingpointnewMap.containsKey(ContantXk.MXZT)) {
  56. ProBasicEquipmentPoint mxztPoint = windturbinetestingpointnewMap.get(ContantXk.MXZT);
  57. wtStatusIdLs.add(mxztPoint.getNemCode());
  58. }
  59. //初始化将所有风机编号作为key,value全部赋值为null
  60. oldStatusMap.put(wt.getId(), null);
  61. oldShutdownEvent.put(wt.getId(), null);
  62. oldInterrup.put(wt.getId(), null);
  63. oldShutdownEvent2.put(wt.getId(), null);
  64. }
  65. List<PointData> wtStatusLs = edosUtil.getHistMatrix(wtStatusIdLs,recordDate.getTime()/1000);
  66. if (wtStatusLs.size() == wtls.size()) {
  67. for (int i = 0; i < wtls.size(); i++) {
  68. ProBasicEquipment wt = wtls.get(i);
  69. wtStatusMap.put(wt.getId(), wtStatusLs.get(i));
  70. }
  71. }
  72. //******************************************************************************************************/
  73. //读取数据库存在的恢复时间为NULL的数据,并通过风机编号把数据遍历到对应的map
  74. QueryWrapper<ProEconWindturbineStatus> queryWrapper = new QueryWrapper<>();
  75. queryWrapper.isNull("start_Time");
  76. queryWrapper.orderByDesc("stop_Time");
  77. List<ProEconWindturbineStatus> oldStatusQuery = proEconWindturbineStatusService.list(queryWrapper).stream().collect(Collectors.toList());
  78. for (ProEconWindturbineStatus oldStatus : oldStatusQuery) {
  79. if (oldStatusMap.containsKey(oldStatus.getWindturbineId())) {
  80. oldStatusMap.put(oldStatus.getWindturbineId(), oldStatus);
  81. }
  82. }
  83. QueryWrapper<ProEconShutdownEvent> queryWrapper2 = new QueryWrapper<>();
  84. queryWrapper2.isNull("start_Time");
  85. queryWrapper2.orderByDesc("stop_Time");
  86. List<ProEconShutdownEvent> oldShutdwonQuery = proEconShutdownEventService.list(queryWrapper2).stream().collect(Collectors.toList());
  87. for (ProEconShutdownEvent shutdown : oldShutdwonQuery) {
  88. if (oldShutdownEvent.containsKey(shutdown.getWindturbineId())) {
  89. oldShutdownEvent.put(shutdown.getWindturbineId(), shutdown);
  90. }
  91. }
  92. QueryWrapper<ProEconInterruption> queryWrapper3 = new QueryWrapper<>();
  93. queryWrapper3.isNull("start_Time");
  94. queryWrapper3.orderByDesc("stop_Time");
  95. List<ProEconInterruption> oldInterrupQuery = proEconInterruptionService.list(queryWrapper3).stream().collect(Collectors.toList());
  96. for (ProEconInterruption interrup : oldInterrupQuery) {
  97. if (oldInterrup.containsKey(interrup.getWindturbineId())) {
  98. oldInterrup.put(interrup.getWindturbineId(), interrup);
  99. }
  100. }
  101. QueryWrapper<ProEconShutdownEvent2> queryWrapper4 = new QueryWrapper<>();
  102. queryWrapper4.isNull("start_Time");
  103. queryWrapper4.orderByDesc("stop_Time");
  104. List<ProEconShutdownEvent2> oldShutdwonQuery2 = proEconShutdownEvent2Service.list(queryWrapper4).stream().collect(Collectors.toList());
  105. for (ProEconShutdownEvent2 shutdown : oldShutdwonQuery2) {
  106. if (oldShutdownEvent2.containsKey(shutdown.getWindturbineId())) {
  107. oldShutdownEvent2.put(shutdown.getWindturbineId(), shutdown);
  108. }
  109. }
  110. //******************************************************************************************************/
  111. List<ProEconShutdownEvent> updateProEconShutdownEventls = new ArrayList<>();
  112. List<ProEconShutdownEvent2> updateProEconShutdownEvent2ls = new ArrayList<>();
  113. List<ProEconInterruption> updateProEconInterruptionls = new ArrayList<>();
  114. List<ProEconWindturbineStatus> updateProEconWindturbineStatusls = new ArrayList<>();
  115. List<ProEconShutdownEvent> insertProEconShutdownEventls = new ArrayList<>();
  116. List<ProEconShutdownEvent2> insertProEconShutdownEvent2ls = new ArrayList<>();
  117. List<ProEconInterruption> insertProEconInterruptionls = new ArrayList<>();
  118. List<ProEconWindturbineStatus> insertProEconWindturbineStatusls = new ArrayList<>();
  119. //遍历PG数据库中存在的记录,恢复时间为空的集合
  120. for (String wtId : oldStatusMap.keySet()) {
  121. ProEconShutdownEvent shutdwonEvent = null;
  122. ProEconInterruption interrup = null;
  123. ProEconShutdownEvent2 shutdwonEvent2 = null;
  124. ProEconWindturbineStatus item = null;
  125. if (oldStatusMap.containsKey(wtId)) {
  126. item = oldStatusMap.get(wtId);
  127. }
  128. if (oldShutdownEvent.containsKey(wtId)) {
  129. // if(wtId.equals("SXJ_KGDL_HSM_F_WT_0021_EQ"))
  130. // {
  131. // System.out.println("");
  132. // }
  133. shutdwonEvent = oldShutdownEvent.get(wtId);
  134. }
  135. if (oldShutdownEvent2.containsKey(wtId)) {
  136. shutdwonEvent2 = oldShutdownEvent2.get(wtId);
  137. }
  138. if (oldInterrup.containsKey(wtId)) {
  139. interrup = oldInterrup.get(wtId);
  140. }
  141. if (wtStatusMap.containsKey(wtId)) {
  142. // if(wtId.equals("SXJ_KGDL_YF_F_WT_0043_EQ"))
  143. // {
  144. // System.out.println("");
  145. // }
  146. PointData wtPoint = wtStatusMap.get(wtId);
  147. //获取当前时间
  148. Date currentTime = recordDate;
  149. if (StringUtils.empty(item)) {
  150. item = new ProEconWindturbineStatus();
  151. initalWindturbineStatus(insertProEconWindturbineStatusls, wtId, wtStatusMap, currentTime, item);
  152. } else if (StringUtils.notEmp(item) && wtPoint.getPointValueInDouble() != item.getSatusCode()) {
  153. finishWindturbineStatus(updateProEconWindturbineStatusls, wtId, currentTime, item);
  154. }
  155. if (wtPoint.getPointValueInDouble() == StatusDetailValue.TXZD.getCode()) {
  156. if (StringUtils.empty(interrup)) {
  157. interrup = new ProEconInterruption();
  158. initalInterruption(insertProEconInterruptionls, wtId, currentTime, interrup);
  159. }
  160. } else if (StringUtils.notEmp(interrup)) {
  161. finishInterruption(updateProEconInterruptionls, wtId, currentTime, interrup);
  162. }
  163. if (wtPoint.getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  164. if (StringUtils.empty(shutdwonEvent)) {
  165. shutdwonEvent = new ProEconShutdownEvent();
  166. initalShutdownEvent(insertProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  167. }
  168. if (StringUtils.empty(shutdwonEvent2)) {
  169. shutdwonEvent2 = new ProEconShutdownEvent2();
  170. initalShutdownEvent2(insertProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  171. }
  172. } else {
  173. if (StringUtils.notEmp(shutdwonEvent) && shutdwonEvent.getStatusCode()!=wtPoint.getPointValueInDouble())
  174. {
  175. finishShutdownEvent(updateProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  176. }
  177. if (StringUtils.notEmp(shutdwonEvent2) && shutdwonEvent2.getStatusCode()!=wtPoint.getPointValueInDouble())
  178. {
  179. finishShutdownEvent2(updateProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  180. }
  181. }
  182. if (wtPoint.getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  183. if (StringUtils.empty(shutdwonEvent)) {
  184. shutdwonEvent = new ProEconShutdownEvent();
  185. initalShutdownEvent(insertProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  186. }
  187. if (StringUtils.empty(shutdwonEvent2)) {
  188. shutdwonEvent2 = new ProEconShutdownEvent2();
  189. initalShutdownEvent2(insertProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  190. }
  191. } else {
  192. if (StringUtils.notEmp(shutdwonEvent) && shutdwonEvent.getStatusCode()!=wtPoint.getPointValueInDouble())
  193. {
  194. finishShutdownEvent(updateProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  195. }
  196. if (StringUtils.notEmp(shutdwonEvent2) && shutdwonEvent2.getStatusCode()!=wtPoint.getPointValueInDouble())
  197. {
  198. finishShutdownEvent2(updateProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  199. }
  200. }
  201. }
  202. }
  203. for (ProEconShutdownEvent vo : updateProEconShutdownEventls) {
  204. UpdateWrapper<ProEconShutdownEvent> updateWrapper = new UpdateWrapper<>();
  205. // updateWrapper.set("start_time", vo.getStartTime());
  206. // updateWrapper.set("loss_power", vo.getLossPower());
  207. // updateWrapper.set("stop_hours", vo.getStopHours());
  208. // proEconShutdownEventService.update(vo, updateWrapper);
  209. proEconShutdownEventService.updateShutdownevent(vo.getStartTime(),vo.getLossPower(),vo.getStopHours(),vo.getId());
  210. }
  211. for (ProEconShutdownEvent2 vo : updateProEconShutdownEvent2ls) {
  212. UpdateWrapper<ProEconShutdownEvent2> updateWrapper = new UpdateWrapper<>();
  213. // updateWrapper.set("start_time", vo.getStartTime());
  214. // updateWrapper.set("loss_power", vo.getLossPower());
  215. // updateWrapper.set("stop_hours", vo.getStopHours());
  216. // proEconShutdownEvent2Service.update(vo, updateWrapper);
  217. proEconShutdownEvent2Service.updateShutdownevent2(vo.getStartTime(),vo.getLossPower(),vo.getStopHours(),vo.getId());
  218. }
  219. for (ProEconWindturbineStatus vo : updateProEconWindturbineStatusls) {
  220. UpdateWrapper<ProEconWindturbineStatus> updateWrapper = new UpdateWrapper<>();
  221. // updateWrapper.set("start_time", vo.getStartTime());
  222. // updateWrapper.set("loss_power", vo.getLossPower());
  223. // updateWrapper.set("stop_hours", vo.getStopHours());
  224. // proEconWindturbineStatusService.update(vo, updateWrapper);
  225. proEconWindturbineStatusService.updateWindturbineStatus(vo.getStartTime(),vo.getLossPower(),vo.getStopHours(),vo.getId());
  226. }
  227. for (ProEconInterruption vo : updateProEconInterruptionls) {
  228. UpdateWrapper<ProEconInterruption> updateWrapper = new UpdateWrapper<>();
  229. // updateWrapper.set("start_time", vo.getStartTime());
  230. // updateWrapper.set("stop_hours", vo.getStopHours());
  231. // proEconInterruptionService.update(vo, updateWrapper);
  232. proEconInterruptionService.updateInterruption(vo.getStartTime(),vo.getStopHours(),vo.getId());
  233. }
  234. List<ProEconWindturbineStatus> temp1ls = new ArrayList<>();
  235. for (ProEconWindturbineStatus vo : insertProEconWindturbineStatusls) {
  236. temp1ls.add(vo);
  237. if (temp1ls.size() == 100) {
  238. proEconWindturbineStatusService.saveBatch(temp1ls);
  239. temp1ls = new ArrayList<>();
  240. }
  241. }
  242. if (!temp1ls.isEmpty()) {
  243. proEconWindturbineStatusService.saveBatch(temp1ls);
  244. }
  245. List<ProEconInterruption> temp2ls = new ArrayList<>();
  246. for (ProEconInterruption vo : insertProEconInterruptionls) {
  247. temp2ls.add(vo);
  248. if (temp2ls.size() == 100) {
  249. proEconInterruptionService.saveBatch(temp2ls);
  250. temp2ls = new ArrayList<>();
  251. }
  252. }
  253. if (!temp2ls.isEmpty()) {
  254. proEconInterruptionService.saveBatch(temp2ls);
  255. }
  256. List<ProEconShutdownEvent> temp3ls = new ArrayList<>();
  257. for (ProEconShutdownEvent vo : insertProEconShutdownEventls) {
  258. temp3ls.add(vo);
  259. if (temp3ls.size() == 100) {
  260. proEconShutdownEventService.saveBatch(temp3ls);
  261. temp3ls = new ArrayList<>();
  262. }
  263. }
  264. if (!temp3ls.isEmpty()) {
  265. proEconShutdownEventService.saveBatch(temp3ls);
  266. }
  267. List<ProEconShutdownEvent2> temp4ls = new ArrayList<>();
  268. for (ProEconShutdownEvent2 vo : insertProEconShutdownEvent2ls) {
  269. temp4ls.add(vo);
  270. if (temp4ls.size() == 100) {
  271. proEconShutdownEvent2Service.saveBatch(temp4ls);
  272. temp4ls = new ArrayList<>();
  273. }
  274. }
  275. if (!temp4ls.isEmpty()) {
  276. proEconShutdownEvent2Service.saveBatch(temp4ls);
  277. }
  278. //******************************************************************************************************/
  279. }
  280. private void finishShutdownEvent(List<ProEconShutdownEvent> updateProEconShutdownEventls,
  281. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent item) throws Exception {
  282. if (item.getStatusCode() != wtStatusMap.get(wtId).getPointValueInDouble()) {
  283. item.setStartTime(currentTime);
  284. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  285. item.setStopHours(timehour);
  286. double losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  287. item.setLossPower(losspower);
  288. updateProEconShutdownEventls.add(item);
  289. }
  290. }
  291. private void finishShutdownEvent2(List<ProEconShutdownEvent2> insertProEconShutdownEvent2ls,
  292. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent2 item) throws Exception {
  293. if (item.getStatusCode() != wtStatusMap.get(wtId).getPointValueInDouble()) {
  294. item.setStartTime(currentTime);
  295. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  296. item.setStopHours(timehour);
  297. double losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  298. item.setLossPower(losspower);
  299. if (timehour <= 24) {
  300. insertProEconShutdownEvent2ls.add(item);
  301. } else {
  302. int days = DateUtils.daysDiff1(item.getStartTime(), item.getStopTime());
  303. Calendar c = Calendar.getInstance();
  304. Date startTime = item.getStartTime();
  305. c.setTime(item.getStopTime());
  306. c.set(Calendar.HOUR_OF_DAY, 23);
  307. c.set(Calendar.MINUTE, 59);
  308. c.set(Calendar.SECOND, 59);
  309. for (int i = 0; i < days; i++) {
  310. if (i == 0) {
  311. item.setStartTime(c.getTime());
  312. losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  313. item.setLossPower(losspower);
  314. insertProEconShutdownEvent2ls.add(item);
  315. } else {
  316. ProEconShutdownEvent2 newto = initalShutdownEventnew2(wtId, wtStatusMap, DateUtils.truncate(c.getTime()));
  317. if (i == days - 1) {
  318. newto.setStartTime(startTime);
  319. } else {
  320. newto.setStartTime(c.getTime());
  321. }
  322. losspower = calLossPower(wtId, newto.getStartTime(), newto.getStopTime());
  323. newto.setLossPower(losspower);
  324. insertProEconShutdownEvent2ls.add(newto);
  325. }
  326. c.add(Calendar.DAY_OF_MONTH, 1);
  327. }
  328. }
  329. }
  330. }
  331. private void initalShutdownEvent2(List<ProEconShutdownEvent2> insertProEconShutdownEvent2ls,
  332. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent2 item) {
  333. item.setId(StringUtils.getUUID());
  334. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  335. item.setStatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  336. item.setStopTime(currentTime);
  337. item.setWinpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  338. item.setWindturbineId(wtId);
  339. if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  340. item.setStopTypeId("gz");
  341. //读取报警记录表前后五分钟数据,选取第一个报警报警类型
  342. List<AlarmVo> vos=alarmTsMapper.selectLastRowByDeviceid(AlarmSuperTalbeType.WT.getCode(),wtId);
  343. if(!vos.isEmpty())
  344. {
  345. AlarmVo vo=vos.get(0);
  346. if(StringUtils.notEmp(vo.getAlarmid()))
  347. {
  348. item.setWarningId(vo.getAlarmid());
  349. }
  350. if(StringUtils.notEmp(vo.getDescription()))
  351. {
  352. item.setFaultView(vo.getDescription());
  353. }
  354. if(StringUtils.notEmp(vo.getFaultCause()))
  355. {
  356. item.setFaultView(vo.getFaultCause());
  357. }
  358. if(StringUtils.notEmp(vo.getResolvent()))
  359. {
  360. item.setHandleWay(vo.getResolvent());
  361. }
  362. }
  363. } else if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  364. item.setStopTypeId("wh");
  365. }
  366. insertProEconShutdownEvent2ls.add(item);
  367. }
  368. private ProEconShutdownEvent2 initalShutdownEventnew2(String wtId, Map<String, PointData> wtStatusMap, Date currentTime) {
  369. ProEconShutdownEvent2 item = new ProEconShutdownEvent2();
  370. item.setId(StringUtils.getUUID());
  371. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  372. item.setStatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  373. item.setStopTime(currentTime);
  374. item.setWinpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  375. item.setWindturbineId(wtId);
  376. if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  377. item.setStopTypeId("gz");
  378. //读取报警记录表前后五分钟数据,选取第一个报警报警类型
  379. List<AlarmVo> vos=alarmTsMapper.selectLastRowByDeviceid(AlarmSuperTalbeType.WT.getCode(),wtId);
  380. if(!vos.isEmpty())
  381. {
  382. AlarmVo vo=vos.get(0);
  383. if(StringUtils.notEmp(vo.getAlarmid()))
  384. {
  385. item.setWarningId(vo.getAlarmid());
  386. }
  387. if(StringUtils.notEmp(vo.getDescription()))
  388. {
  389. item.setFaultView(vo.getDescription());
  390. }
  391. if(StringUtils.notEmp(vo.getFaultCause()))
  392. {
  393. item.setFaultView(vo.getFaultCause());
  394. }
  395. if(StringUtils.notEmp(vo.getResolvent()))
  396. {
  397. item.setHandleWay(vo.getResolvent());
  398. }
  399. }
  400. } else if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  401. item.setStopTypeId("wh");
  402. }
  403. return item;
  404. }
  405. private void initalShutdownEvent(List<ProEconShutdownEvent> insertProEconShutdownEventls,
  406. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent item) {
  407. item.setId(StringUtils.getUUID());
  408. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  409. item.setStatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  410. item.setStopTime(currentTime);
  411. item.setWindpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  412. item.setWindturbineId(wtId);
  413. if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  414. item.setStoptypeId("gz");
  415. //读取报警记录表前后五分钟数据,选取第一个报警报警类型
  416. List<AlarmVo> vos=alarmTsMapper.selectLastRowByDeviceid(AlarmSuperTalbeType.WT.getCode(),wtId);
  417. if(!vos.isEmpty())
  418. {
  419. AlarmVo vo=vos.get(0);
  420. if(StringUtils.notEmp(vo.getAlarmid()))
  421. {
  422. item.setWarningId(vo.getAlarmid());
  423. }
  424. if(StringUtils.notEmp(vo.getDescription()))
  425. {
  426. item.setFaultView(vo.getDescription());
  427. }
  428. if(StringUtils.notEmp(vo.getFaultCause()))
  429. {
  430. item.setFaultView(vo.getFaultCause());
  431. }
  432. if(StringUtils.notEmp(vo.getResolvent()))
  433. {
  434. item.setHandleWay(vo.getResolvent());
  435. }
  436. }
  437. } else if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  438. item.setStoptypeId("wh");
  439. }
  440. insertProEconShutdownEventls.add(item);
  441. }
  442. private void initalWindturbineStatus(List<ProEconWindturbineStatus> insertProEconWindturbineStatusls,
  443. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconWindturbineStatus item) {
  444. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  445. item.setSatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  446. item.setStatusDesc(StatusDetailValue.getNmaeByCode(wtStatusMap.get(wtId).getPointValueInDouble()));
  447. item.setStopTime(currentTime);
  448. item.setWindpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  449. item.setWindturbineId(wtId);
  450. insertProEconWindturbineStatusls.add(item);
  451. }
  452. private void finishWindturbineStatus(List<ProEconWindturbineStatus> updateProEconWindturbineStatusls,
  453. String wtId, Date currentTime, ProEconWindturbineStatus item) throws Exception {
  454. item.setStartTime(currentTime);
  455. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  456. item.setStopHours(timehour);
  457. double losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  458. item.setLossPower(losspower);
  459. updateProEconWindturbineStatusls.add(item);
  460. }
  461. private void initalInterruption(List<ProEconInterruption> insertProEconWindturbineStatusls,
  462. String wtId, Date currentTime, ProEconInterruption item) {
  463. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  464. item.setStopTime(currentTime);
  465. item.setWindpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  466. item.setWindturbineId(wtId);
  467. insertProEconWindturbineStatusls.add(item);
  468. }
  469. private void finishInterruption(List<ProEconInterruption> updateProEconWindturbineStatusls,
  470. String wtId, Date currentTime, ProEconInterruption item) {
  471. item.setStartTime(currentTime);
  472. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  473. item.setStopHours(timehour);
  474. updateProEconWindturbineStatusls.add(item);
  475. }
  476. private Double calLossPower(String windturbineId, Date startDate, Date endDate) throws Exception {
  477. double result = 0.0;
  478. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  479. Map<String, ProBasicEquipmentPoint> wtpointmap = wtpAimap.get(windturbineId);
  480. Calendar c1 = Calendar.getInstance();
  481. c1.setTime(startDate);
  482. Calendar c2 = Calendar.getInstance();
  483. c2.setTime(endDate);
  484. //判定限电是否跨年
  485. if (endDate.after(startDate) && c1.get(Calendar.YEAR) == c2.get(Calendar.YEAR)) {
  486. //年故障损失电量
  487. if (wtpointmap.containsKey(ContantXk.NGZSSDL)) {
  488. double beginvalue;
  489. double endvalue;
  490. List<String> pointid = new ArrayList<>();
  491. pointid.add(wtpointmap.get(ContantXk.NGZSSDL).getNemCode());
  492. List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
  493. List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
  494. if (xdbegin.size() == 1 && xdend.size() == 1) {
  495. beginvalue = xdbegin.get(0).getPointValueInDouble();
  496. endvalue = xdend.get(0).getPointValueInDouble();
  497. if (endvalue > beginvalue) {
  498. result = result + (endvalue - beginvalue);
  499. }
  500. }
  501. }
  502. } else {
  503. Calendar c = Calendar.getInstance();
  504. c.setTime(DateUtils.truncate(startDate));
  505. c.add(Calendar.DAY_OF_MONTH, 1);
  506. //获得1月1日零点值
  507. Date endtime = c.getTime();
  508. //年故障损失电量
  509. if (wtpointmap.containsKey(ContantXk.NGZSSDL)) {
  510. double beginvalue;
  511. double endvalue;
  512. List<String> pointid = new ArrayList<>();
  513. pointid.add(wtpointmap.get(ContantXk.NGZSSDL).getNemCode());
  514. List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
  515. List<PointData> xdend = edosUtil.getHistMatrix(pointid, endtime.getTime() / 1000);
  516. if (xdbegin.size() == 1 && xdend.size() == 1) {
  517. beginvalue = xdbegin.get(0).getPointValueInDouble();
  518. endvalue = xdend.get(0).getPointValueInDouble();
  519. if (endvalue > beginvalue) {
  520. result = result + (endvalue - beginvalue);
  521. }
  522. }
  523. }
  524. //日故障损失电量
  525. if (wtpointmap.containsKey(ContantXk.NGZSSDL)) {
  526. double endvalue;
  527. List<String> pointid = new ArrayList<>();
  528. pointid.add(wtpointmap.get(ContantXk.NGZSSDL).getNemCode());
  529. List<PointData> xdend = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
  530. if (xdend.size() == 1) {
  531. endvalue = xdend.get(0).getPointValueInDouble();
  532. if (endvalue > 0) {
  533. result = result + endvalue;
  534. }
  535. }
  536. }
  537. }
  538. return result;
  539. }
  540. }