ShutdownnewService.java 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  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.model.auto.*;
  8. import com.gyee.generation.model.vo.StatusDetailValue;
  9. import com.gyee.generation.service.auto.IProEconInterruptionService;
  10. import com.gyee.generation.service.auto.IProEconShutdownEvent2Service;
  11. import com.gyee.generation.service.auto.IProEconShutdownEventService;
  12. import com.gyee.generation.service.auto.IProEconWindturbineStatusService;
  13. import com.gyee.generation.util.DateUtils;
  14. import com.gyee.generation.util.StringUtils;
  15. import com.gyee.generation.util.realtimesource.IEdosUtil;
  16. import org.slf4j.Logger;
  17. import org.slf4j.LoggerFactory;
  18. import org.springframework.stereotype.Service;
  19. import javax.annotation.Resource;
  20. import java.util.*;
  21. import java.util.concurrent.Executor;
  22. import java.util.stream.Collectors;
  23. @Service
  24. public class ShutdownnewService {
  25. @Resource
  26. private IEdosUtil edosUtil;
  27. @Resource
  28. private IProEconWindturbineStatusService proEconWindturbineStatusService;
  29. @Resource
  30. private IProEconShutdownEventService proEconShutdownEventService;
  31. @Resource
  32. private IProEconShutdownEvent2Service proEconShutdownEvent2Service;
  33. @Resource
  34. private IProEconInterruptionService proEconInterruptionService;
  35. public static Logger logger = LoggerFactory.getLogger(ShutdownnewService.class);
  36. @Resource
  37. private Executor executor;
  38. public void execShutdown(Date recordDate) throws Exception {
  39. List<String> wtStatusIdLs = new ArrayList<>();
  40. Map<String, PointData> wtStatusMap = new HashMap<>();
  41. Map<String, ProEconWindturbineStatus> oldStatusMap = new HashMap<>();
  42. Map<String, ProEconShutdownEvent> oldShutdownEvent = new HashMap<>();
  43. Map<String, ProEconInterruption> oldInterrup = new HashMap<>();
  44. Map<String, ProEconShutdownEvent2> oldShutdownEvent2 = new HashMap<>();
  45. List<ProBasicEquipment> wtls = new ArrayList<>();
  46. for (ProBasicEquipment wt : CacheContext.wtls) {
  47. if (wt.getWindpowerstationId().contains("GDC")) {
  48. continue;
  49. }
  50. wtls.add(wt);
  51. }
  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. shutdwonEvent = oldShutdownEvent.get(wtId);
  130. }
  131. if (oldShutdownEvent2.containsKey(wtId)) {
  132. shutdwonEvent2 = oldShutdownEvent2.get(wtId);
  133. }
  134. if (oldInterrup.containsKey(wtId)) {
  135. interrup = oldInterrup.get(wtId);
  136. }
  137. if (wtStatusMap.containsKey(wtId)) {
  138. if(wtId.equals("SXJ_KGDL_PTZ_F_WT_0022_EQ"))
  139. {
  140. System.out.println("");
  141. }
  142. PointData wtPoint = wtStatusMap.get(wtId);
  143. //获取当前时间
  144. Date currentTime = recordDate;
  145. if (StringUtils.empty(item)) {
  146. item = new ProEconWindturbineStatus();
  147. initalWindturbineStatus(insertProEconWindturbineStatusls, wtId, wtStatusMap, currentTime, item);
  148. } else if (StringUtils.notEmp(item) && wtPoint.getPointValueInDouble() != item.getSatusCode()) {
  149. finishWindturbineStatus(updateProEconWindturbineStatusls, wtId, currentTime, item);
  150. }
  151. if (wtPoint.getPointValueInDouble() == StatusDetailValue.TXZD.getCode()) {
  152. if (StringUtils.empty(interrup)) {
  153. interrup = new ProEconInterruption();
  154. initalInterruption(insertProEconInterruptionls, wtId, currentTime, interrup);
  155. }
  156. } else if (StringUtils.notEmp(interrup)) {
  157. finishInterruption(updateProEconInterruptionls, wtId, currentTime, interrup);
  158. }
  159. if (wtPoint.getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  160. if (StringUtils.empty(shutdwonEvent)) {
  161. shutdwonEvent = new ProEconShutdownEvent();
  162. initalShutdownEvent(insertProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  163. }
  164. if (StringUtils.empty(shutdwonEvent2)) {
  165. shutdwonEvent2 = new ProEconShutdownEvent2();
  166. initalShutdownEvent2(insertProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  167. }
  168. } else {
  169. if (StringUtils.notEmp(shutdwonEvent) && shutdwonEvent.getStatusCode()!=wtPoint.getPointValueInDouble())
  170. {
  171. finishShutdownEvent(updateProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  172. }
  173. if (StringUtils.notEmp(shutdwonEvent2) && shutdwonEvent.getStatusCode()!=wtPoint.getPointValueInDouble())
  174. {
  175. finishShutdownEvent2(updateProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  176. }
  177. }
  178. if (wtPoint.getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  179. if (StringUtils.empty(shutdwonEvent)) {
  180. shutdwonEvent = new ProEconShutdownEvent();
  181. initalShutdownEvent(insertProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  182. }
  183. if (StringUtils.empty(shutdwonEvent2)) {
  184. shutdwonEvent2 = new ProEconShutdownEvent2();
  185. initalShutdownEvent2(insertProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  186. }
  187. } else {
  188. if (StringUtils.notEmp(shutdwonEvent) && shutdwonEvent.getStatusCode()!=wtPoint.getPointValueInDouble())
  189. {
  190. finishShutdownEvent(updateProEconShutdownEventls, wtId, wtStatusMap, currentTime, shutdwonEvent);
  191. }
  192. if (StringUtils.notEmp(shutdwonEvent2) && shutdwonEvent.getStatusCode()!=wtPoint.getPointValueInDouble())
  193. {
  194. finishShutdownEvent2(updateProEconShutdownEvent2ls, wtId, wtStatusMap, currentTime, shutdwonEvent2);
  195. }
  196. }
  197. }
  198. }
  199. for (ProEconShutdownEvent vo : updateProEconShutdownEventls) {
  200. UpdateWrapper<ProEconShutdownEvent> updateWrapper = new UpdateWrapper<>();
  201. // updateWrapper.set("start_time", vo.getStartTime());
  202. // updateWrapper.set("loss_power", vo.getLossPower());
  203. // updateWrapper.set("stop_hours", vo.getStopHours());
  204. proEconShutdownEventService.update(vo, updateWrapper);
  205. }
  206. for (ProEconShutdownEvent2 vo : updateProEconShutdownEvent2ls) {
  207. UpdateWrapper<ProEconShutdownEvent2> updateWrapper = new UpdateWrapper<>();
  208. // updateWrapper.set("start_time", vo.getStartTime());
  209. // updateWrapper.set("loss_power", vo.getLossPower());
  210. // updateWrapper.set("stop_hours", vo.getStopHours());
  211. proEconShutdownEvent2Service.update(vo, updateWrapper);
  212. }
  213. for (ProEconWindturbineStatus vo : updateProEconWindturbineStatusls) {
  214. UpdateWrapper<ProEconWindturbineStatus> updateWrapper = new UpdateWrapper<>();
  215. // updateWrapper.set("start_time", vo.getStartTime());
  216. // updateWrapper.set("loss_power", vo.getLossPower());
  217. // updateWrapper.set("stop_hours", vo.getStopHours());
  218. proEconWindturbineStatusService.update(vo, updateWrapper);
  219. }
  220. for (ProEconInterruption vo : updateProEconInterruptionls) {
  221. UpdateWrapper<ProEconInterruption> updateWrapper = new UpdateWrapper<>();
  222. // updateWrapper.set("start_time", vo.getStartTime());
  223. // updateWrapper.set("stop_hours", vo.getStopHours());
  224. proEconInterruptionService.update(vo, updateWrapper);
  225. }
  226. List<ProEconWindturbineStatus> temp1ls = new ArrayList<>();
  227. for (ProEconWindturbineStatus vo : insertProEconWindturbineStatusls) {
  228. temp1ls.add(vo);
  229. if (temp1ls.size() == 100) {
  230. proEconWindturbineStatusService.saveBatch(temp1ls);
  231. temp1ls = new ArrayList<>();
  232. }
  233. }
  234. if (!temp1ls.isEmpty()) {
  235. proEconWindturbineStatusService.saveBatch(temp1ls);
  236. }
  237. List<ProEconInterruption> temp2ls = new ArrayList<>();
  238. for (ProEconInterruption vo : insertProEconInterruptionls) {
  239. temp2ls.add(vo);
  240. if (temp2ls.size() == 100) {
  241. proEconInterruptionService.saveBatch(temp2ls);
  242. temp2ls = new ArrayList<>();
  243. }
  244. }
  245. if (!temp2ls.isEmpty()) {
  246. proEconInterruptionService.saveBatch(temp2ls);
  247. }
  248. List<ProEconShutdownEvent> temp3ls = new ArrayList<>();
  249. for (ProEconShutdownEvent vo : insertProEconShutdownEventls) {
  250. temp3ls.add(vo);
  251. if (temp3ls.size() == 100) {
  252. proEconShutdownEventService.saveBatch(temp3ls);
  253. temp3ls = new ArrayList<>();
  254. }
  255. }
  256. if (!temp3ls.isEmpty()) {
  257. proEconShutdownEventService.saveBatch(temp3ls);
  258. }
  259. List<ProEconShutdownEvent2> temp4ls = new ArrayList<>();
  260. for (ProEconShutdownEvent2 vo : insertProEconShutdownEvent2ls) {
  261. temp4ls.add(vo);
  262. if (temp4ls.size() == 100) {
  263. proEconShutdownEvent2Service.saveBatch(temp4ls);
  264. temp4ls = new ArrayList<>();
  265. }
  266. }
  267. if (!temp4ls.isEmpty()) {
  268. proEconShutdownEvent2Service.saveBatch(temp4ls);
  269. }
  270. //******************************************************************************************************/
  271. }
  272. private void finishShutdownEvent(List<ProEconShutdownEvent> updateProEconShutdownEventls,
  273. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent item) throws Exception {
  274. if (item.getStatusCode() != wtStatusMap.get(wtId).getPointValueInDouble()) {
  275. item.setStartTime(currentTime);
  276. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  277. item.setStopHours(timehour);
  278. double losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  279. item.setLossPower(losspower);
  280. updateProEconShutdownEventls.add(item);
  281. }
  282. }
  283. private void finishShutdownEvent2(List<ProEconShutdownEvent2> insertProEconShutdownEvent2ls,
  284. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent2 item) throws Exception {
  285. if (item.getStatusCode() != wtStatusMap.get(wtId).getPointValueInDouble()) {
  286. item.setStartTime(currentTime);
  287. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  288. item.setStopHours(timehour);
  289. double losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  290. item.setLossPower(losspower);
  291. if (timehour <= 24) {
  292. insertProEconShutdownEvent2ls.add(item);
  293. } else {
  294. int days = DateUtils.daysDiff1(item.getStartTime(), item.getStopTime());
  295. Calendar c = Calendar.getInstance();
  296. Date startTime = item.getStartTime();
  297. c.setTime(item.getStopTime());
  298. c.set(Calendar.HOUR_OF_DAY, 23);
  299. c.set(Calendar.MINUTE, 59);
  300. c.set(Calendar.SECOND, 59);
  301. for (int i = 0; i < days; i++) {
  302. if (i == 0) {
  303. item.setStartTime(c.getTime());
  304. losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  305. item.setLossPower(losspower);
  306. insertProEconShutdownEvent2ls.add(item);
  307. } else {
  308. ProEconShutdownEvent2 newto = initalShutdownEventnew2(wtId, wtStatusMap, DateUtils.truncate(c.getTime()));
  309. if (i == days - 1) {
  310. newto.setStartTime(startTime);
  311. } else {
  312. newto.setStartTime(c.getTime());
  313. }
  314. losspower = calLossPower(wtId, newto.getStartTime(), newto.getStopTime());
  315. newto.setLossPower(losspower);
  316. insertProEconShutdownEvent2ls.add(newto);
  317. }
  318. c.add(Calendar.DAY_OF_MONTH, 1);
  319. }
  320. }
  321. }
  322. }
  323. private void initalShutdownEvent2(List<ProEconShutdownEvent2> insertProEconShutdownEvent2ls,
  324. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent2 item) {
  325. item.setId(StringUtils.getUUID());
  326. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  327. item.setStatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  328. item.setStopTime(currentTime);
  329. item.setWinpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  330. item.setWindturbineId(wtId);
  331. if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  332. item.setStopTypeId("gzbmq");
  333. //读取报警记录表前后五分钟数据,选取第一个报警报警类型
  334. // String stopTypeId =newMethod( windturbineId, begin, end);
  335. String stopTypeId = null;
  336. if (StringUtils.notEmp(stopTypeId)) {
  337. item.setStopTypeId(stopTypeId);
  338. }
  339. } else if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  340. item.setStopTypeId("wh");
  341. }
  342. insertProEconShutdownEvent2ls.add(item);
  343. }
  344. private ProEconShutdownEvent2 initalShutdownEventnew2(String wtId, Map<String, PointData> wtStatusMap, Date currentTime) {
  345. ProEconShutdownEvent2 item = new ProEconShutdownEvent2();
  346. item.setId(StringUtils.getUUID());
  347. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  348. item.setStatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  349. item.setStopTime(currentTime);
  350. item.setWinpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  351. item.setWindturbineId(wtId);
  352. if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  353. item.setStopTypeId("gzbmq");
  354. //读取报警记录表前后五分钟数据,选取第一个报警报警类型
  355. // String stopTypeId =newMethod( windturbineId, begin, end);
  356. String stopTypeId = null;
  357. if (StringUtils.notEmp(stopTypeId)) {
  358. item.setStopTypeId(stopTypeId);
  359. }
  360. } else if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  361. item.setStopTypeId("wh");
  362. }
  363. return item;
  364. }
  365. private static void initalShutdownEvent(List<ProEconShutdownEvent> insertProEconShutdownEventls,
  366. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconShutdownEvent item) {
  367. item.setId(StringUtils.getUUID());
  368. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  369. item.setStatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  370. item.setStopTime(currentTime);
  371. item.setWindpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  372. item.setWindturbineId(wtId);
  373. if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  374. item.setStoptypeId("gzbmq");
  375. //读取报警记录表前后五分钟数据,选取第一个报警报警类型
  376. // String stopTypeId =newMethod( windturbineId, begin, end);
  377. String stopTypeId = null;
  378. if (StringUtils.notEmp(stopTypeId)) {
  379. item.setStoptypeId(stopTypeId);
  380. }
  381. } else if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  382. item.setStoptypeId("wh");
  383. }
  384. insertProEconShutdownEventls.add(item);
  385. }
  386. private void initalWindturbineStatus(List<ProEconWindturbineStatus> insertProEconWindturbineStatusls,
  387. String wtId, Map<String, PointData> wtStatusMap, Date currentTime, ProEconWindturbineStatus item) {
  388. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  389. item.setSatusCode((int)wtStatusMap.get(wtId).getPointValueInDouble());
  390. item.setStatusDesc(StatusDetailValue.getNmaeByCode(wtStatusMap.get(wtId).getPointValueInDouble()));
  391. item.setStopTime(currentTime);
  392. item.setWindpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  393. item.setWindturbineId(wtId);
  394. insertProEconWindturbineStatusls.add(item);
  395. }
  396. private void finishWindturbineStatus(List<ProEconWindturbineStatus> updateProEconWindturbineStatusls,
  397. String wtId, Date currentTime, ProEconWindturbineStatus item) throws Exception {
  398. item.setStartTime(currentTime);
  399. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  400. item.setStopHours(timehour);
  401. double losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
  402. item.setLossPower(losspower);
  403. updateProEconWindturbineStatusls.add(item);
  404. }
  405. private void initalInterruption(List<ProEconInterruption> insertProEconWindturbineStatusls,
  406. String wtId, Date currentTime, ProEconInterruption item) {
  407. item.setProjectId(CacheContext.wtmap.get(wtId).getProjectId());
  408. item.setStopTime(currentTime);
  409. item.setWindpowerstationId(CacheContext.wtmap.get(wtId).getWindpowerstationId());
  410. item.setWindturbineId(wtId);
  411. insertProEconWindturbineStatusls.add(item);
  412. }
  413. private void finishInterruption(List<ProEconInterruption> updateProEconWindturbineStatusls,
  414. String wtId, Date currentTime, ProEconInterruption item) {
  415. item.setStartTime(currentTime);
  416. double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
  417. item.setStopHours(timehour);
  418. updateProEconWindturbineStatusls.add(item);
  419. }
  420. private String newMethod(String windturbineId, Date begin, Date end) {
  421. String result = "";
  422. return result;
  423. }
  424. private Double calLossPower(String windturbineId, Date startDate, Date endDate) throws Exception {
  425. double result = 0.0;
  426. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  427. Map<String, ProBasicEquipmentPoint> wtpointmap = wtpAimap.get(windturbineId);
  428. Calendar c1 = Calendar.getInstance();
  429. c1.setTime(startDate);
  430. Calendar c2 = Calendar.getInstance();
  431. c2.setTime(endDate);
  432. //判定限电是否跨年
  433. if (endDate.after(startDate) && c1.get(Calendar.YEAR) == c2.get(Calendar.YEAR)) {
  434. //年故障损失电量
  435. if (wtpointmap.containsKey(ContantXk.NGZSSDL)) {
  436. double beginvalue;
  437. double endvalue;
  438. List<String> pointid = new ArrayList<>();
  439. pointid.add(wtpointmap.get(ContantXk.NGZSSDL).getNemCode());
  440. List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
  441. List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
  442. if (xdbegin.size() == 1 && xdend.size() == 1) {
  443. beginvalue = xdbegin.get(0).getPointValueInDouble();
  444. endvalue = xdend.get(0).getPointValueInDouble();
  445. if (endvalue > beginvalue) {
  446. result = result + (endvalue - beginvalue);
  447. }
  448. }
  449. }
  450. } else {
  451. Calendar c = Calendar.getInstance();
  452. c.setTime(DateUtils.truncate(startDate));
  453. c.add(Calendar.DAY_OF_MONTH, 1);
  454. //获得1月1日零点值
  455. Date endtime = c.getTime();
  456. //年故障损失电量
  457. if (wtpointmap.containsKey(ContantXk.NGZSSDL)) {
  458. double beginvalue;
  459. double endvalue;
  460. List<String> pointid = new ArrayList<>();
  461. pointid.add(wtpointmap.get(ContantXk.NGZSSDL).getNemCode());
  462. List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
  463. List<PointData> xdend = edosUtil.getHistMatrix(pointid, endtime.getTime() / 1000);
  464. if (xdbegin.size() == 1 && xdend.size() == 1) {
  465. beginvalue = xdbegin.get(0).getPointValueInDouble();
  466. endvalue = xdend.get(0).getPointValueInDouble();
  467. if (endvalue > beginvalue) {
  468. result = result + (endvalue - beginvalue);
  469. }
  470. }
  471. }
  472. //日故障损失电量
  473. if (wtpointmap.containsKey(ContantXk.NGZSSDL)) {
  474. double endvalue;
  475. List<String> pointid = new ArrayList<>();
  476. pointid.add(wtpointmap.get(ContantXk.NGZSSDL).getNemCode());
  477. List<PointData> xdend = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
  478. if (xdend.size() == 1) {
  479. endvalue = xdend.get(0).getPointValueInDouble();
  480. if (endvalue > 0) {
  481. result = result + endvalue;
  482. }
  483. }
  484. }
  485. }
  486. return result;
  487. }
  488. }