ElectricityMeteringService.java 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. package com.gyee.generation.service.realtimelibrary;
  2. /*
  3. @author 谢生杰
  4. @date 2022/11/1-9:38
  5. */
  6. import com.gyee.common.contant.ContantXk;
  7. import com.gyee.common.model.PointData;
  8. import com.gyee.common.util.DateUtils;
  9. import com.gyee.generation.init.CacheContext;
  10. import com.gyee.generation.model.auto.*;
  11. import com.gyee.generation.service.auto.IProBasicMeterPointService;
  12. import com.gyee.generation.util.PointUtil;
  13. import com.gyee.generation.util.StringUtils;
  14. import com.gyee.generation.util.realtimesource.IEdosUtil;
  15. import lombok.extern.slf4j.Slf4j;
  16. import org.springframework.stereotype.Service;
  17. import javax.annotation.Resource;
  18. import java.math.BigDecimal;
  19. import java.math.RoundingMode;
  20. import java.util.*;
  21. import java.util.concurrent.atomic.AtomicReference;
  22. import java.util.stream.Collectors;
  23. @Service
  24. @Slf4j
  25. public class ElectricityMeteringService {
  26. @Resource
  27. private IProBasicMeterPointService meterPointService;
  28. @Resource
  29. private IEdosUtil edosUtil;
  30. /**
  31. * 存储电计量实时数据
  32. *
  33. * @throws Exception
  34. */
  35. public void saveGenerationDatas() throws Exception {
  36. List<ProBasicLine> lnls = CacheContext.lnls;
  37. List<ProBasicMeterPoint> meterpoint = CacheContext.meterpoints;
  38. List<ProBasicProject> projects = CacheContext.pjls;
  39. List<ProBasicPowerstation> wpls = CacheContext.wpls;
  40. Map<String, Map<String, ProBasicPowerstationPoint>> linepointmap = CacheContext.linepointmap;
  41. Map<String, Map<String, ProBasicPowerstationPoint>> propointmap = CacheContext.propointmap;
  42. Map<String, Map<String, ProBasicPowerstationPoint>> wppointmap = CacheContext.wppointmap;
  43. Map<String, List<ProBasicLine>> prolinemap = CacheContext.prolinemap;
  44. Map<String, List<ProBasicProject>> wppromap = CacheContext.wppromap;
  45. Date samedayZero = DateUtils.getSamedayZero();
  46. Date monthFirstZero = DateUtils.getMonthFirstZero();
  47. Date yearFirstZero = DateUtils.getYearFirstZero();
  48. Date currentDate = DateUtils.getCurrentDate();
  49. Date tomorrow = DateUtils.addDays(samedayZero, 1);
  50. Date date = DateUtils.addSeconds(currentDate, -1);
  51. List<PointData> lineResultList = new ArrayList<>();
  52. lnls.stream().forEach(line -> {
  53. Map<String, ProBasicPowerstationPoint> proBasicWppointMap = linepointmap.get(line.getId());
  54. //线路发电量
  55. log.info(line.getName() + "电计量电量计算开始!");
  56. List<ProBasicMeterPoint> meterpoints = meterpoint.stream().filter(me -> null != me.getLineId()).collect(Collectors.toList());
  57. Optional<ProBasicMeterPoint> fdlOptional = meterpoints.stream().filter(me -> me.getLineId().equals(line.getId()) && "ZXYG".equals(me.getUniformCode()) && "进线".equals(me.getMeterType()) && "主".equals(me.getMeterSort())).findFirst();
  58. getLineFdl(line.getId(), samedayZero, monthFirstZero, yearFirstZero, date, currentDate, lineResultList, proBasicWppointMap, fdlOptional);
  59. log.info(line.getName() + "电计量电量计算完毕!");
  60. //线路上网电量
  61. log.info(line.getName() + "电计量上网电量计算开始!");
  62. List<PointData> fdlList = new ArrayList<>();
  63. Optional<ProBasicMeterPoint> swdlOptional = meterpoints.stream().filter(me -> me.getUniformCode().equals("ZXYG") && me.getMeterType().equals("出线") && me.getMeterSort().equals("主") && me.getLineId().contains(line.getId())).findFirst();
  64. getLineOtherFdl(linepointmap, samedayZero, monthFirstZero, yearFirstZero, date, currentDate, lineResultList, line, proBasicWppointMap, fdlOptional, fdlList, swdlOptional);
  65. log.info(line.getName() + "电计量上网电量计算完毕!");
  66. //线路购网电量
  67. log.info(line.getName() + "电计量购网电量计算开始!");
  68. Optional<ProBasicMeterPoint> gwdlOptional = meterpoints.stream().filter(me -> me.getUniformCode().equals("FXYG") && me.getMeterType().equals("出线") && me.getMeterSort().equals("主") && me.getLineId().contains(line.getId())).findFirst();
  69. getLineOtherFdl(linepointmap, samedayZero, monthFirstZero, yearFirstZero, date, currentDate, lineResultList, line, proBasicWppointMap, fdlOptional, fdlList, gwdlOptional);
  70. log.info(line.getName() + "电计量购网电量计算完毕!");
  71. //线路厂用电量
  72. log.info(line.getName() + "电计量厂用电量计算开始!");
  73. Optional<ProBasicMeterPoint> zybOptional = meterpoints.stream().filter(me -> me.getUniformCode().equals("ZXYG") && me.getMeterType().equals("站用变") && me.getMeterSort().equals("主") && me.getLineId().contains(line.getId())).findFirst();
  74. getLineOtherFdl(linepointmap, samedayZero, monthFirstZero, yearFirstZero, date, currentDate, lineResultList, line, proBasicWppointMap, fdlOptional, fdlList, zybOptional);
  75. log.info(line.getName() + "电计量厂用电量计算完毕!");
  76. //农网购网电量
  77. log.info(line.getName() + "农网购网电量计算开始!");
  78. setZero(lineResultList, date, currentDate, proBasicWppointMap, ContantXk.RNWGWDL, ContantXk.YNWGWDL, ContantXk.NNWGWDL);
  79. log.info(line.getName() + "农网购网电量计算完毕!");
  80. });
  81. //线路存储
  82. edosUtil.sendMultiPoint(lineResultList);
  83. List<PointData> proResultList = new ArrayList<>();
  84. projects.stream().forEach(pro -> {
  85. Map<String, ProBasicPowerstationPoint> proBasicWppointMap = propointmap.get(pro.getId());
  86. List<ProBasicLine> proBasicLines = prolinemap.get(pro.getId());
  87. AtomicReference<Double> rfdl = new AtomicReference<>((double) 0);
  88. AtomicReference<Double> yfdl = new AtomicReference<>((double) 0);
  89. AtomicReference<Double> nfdl = new AtomicReference<>((double) 0);
  90. AtomicReference<Double> rswdl = new AtomicReference<>((double) 0);
  91. AtomicReference<Double> yswdl = new AtomicReference<>((double) 0);
  92. AtomicReference<Double> nswdl = new AtomicReference<>((double) 0);
  93. AtomicReference<Double> rgwgwdl = new AtomicReference<>((double) 0);
  94. AtomicReference<Double> ygwgwdl = new AtomicReference<>((double) 0);
  95. AtomicReference<Double> ngwgwdl = new AtomicReference<>((double) 0);
  96. AtomicReference<Double> rnwgwdl = new AtomicReference<>((double) 0);
  97. AtomicReference<Double> ynwgwdl = new AtomicReference<>((double) 0);
  98. AtomicReference<Double> nnwgwdl = new AtomicReference<>((double) 0);
  99. AtomicReference<Double> rcydl = new AtomicReference<>((double) 0);
  100. AtomicReference<Double> ycydl = new AtomicReference<>((double) 0);
  101. AtomicReference<Double> ncydl = new AtomicReference<>((double) 0);
  102. proBasicLines.stream().forEach(line -> {
  103. try {
  104. double linerfdl = getLineValue(line.getId(), ContantXk.RFDLSYZ, currentDate, linepointmap);
  105. rfdl.updateAndGet(v -> new Double((double) (v + linerfdl)));
  106. double lineyfdl = getLineValue(line.getId(), ContantXk.YFDLSYZ, currentDate, linepointmap);
  107. yfdl.updateAndGet(v -> new Double((double) (v + lineyfdl)));
  108. double linenfdl = getLineValue(line.getId(), ContantXk.NFDLSYZ, currentDate, linepointmap);
  109. nfdl.updateAndGet(v -> new Double((double) (v + linenfdl)));
  110. double linerswdl = getLineValue(line.getId(), ContantXk.RSWDL, currentDate, linepointmap);
  111. rswdl.updateAndGet(v -> new Double((double) (v + linerswdl)));
  112. double lineyswdl = getLineValue(line.getId(), ContantXk.YSWDL, currentDate, linepointmap);
  113. yswdl.updateAndGet(v -> new Double((double) (v + lineyswdl)));
  114. double linenswdl = getLineValue(line.getId(), ContantXk.NSWDL, currentDate, linepointmap);
  115. nswdl.updateAndGet(v -> new Double((double) (v + linenswdl)));
  116. double linergwgwdl = getLineValue(line.getId(), ContantXk.RGWGWDL, currentDate, linepointmap);
  117. rgwgwdl.updateAndGet(v -> new Double((double) (v + linergwgwdl)));
  118. double lineygwgwdl = getLineValue(line.getId(), ContantXk.YGWGWDL, currentDate, linepointmap);
  119. ygwgwdl.updateAndGet(v -> new Double((double) (v + lineygwgwdl)));
  120. double linengwgwdl = getLineValue(line.getId(), ContantXk.NGWGWDL, currentDate, linepointmap);
  121. ngwgwdl.updateAndGet(v -> new Double((double) (v + linengwgwdl)));
  122. double linernwgwdl = getLineValue(line.getId(), ContantXk.RNWGWDL, currentDate, linepointmap);
  123. rnwgwdl.updateAndGet(v -> new Double((double) (v + linernwgwdl)));
  124. double lineynwgwdl = getLineValue(line.getId(), ContantXk.YNWGWDL, currentDate, linepointmap);
  125. ynwgwdl.updateAndGet(v -> new Double((double) (v + lineynwgwdl)));
  126. double linennwgwdl = getLineValue(line.getId(), ContantXk.NNWGWDL, currentDate, linepointmap);
  127. nnwgwdl.updateAndGet(v -> new Double((double) (v + linennwgwdl)));
  128. double linercydl = getLineValue(line.getId(), ContantXk.RCYDL, currentDate, linepointmap);
  129. rcydl.updateAndGet(v -> new Double((double) (v + linercydl)));
  130. double lineycydl = getLineValue(line.getId(), ContantXk.YCYDL, currentDate, linepointmap);
  131. ycydl.updateAndGet(v -> new Double((double) (v + lineycydl)));
  132. double linencydl = getLineValue(line.getId(), ContantXk.NCYDL, currentDate, linepointmap);
  133. ncydl.updateAndGet(v -> new Double((double) (v + linencydl)));
  134. } catch (Exception e) {
  135. e.printStackTrace();
  136. }
  137. });
  138. ProBasicPowerstationPoint rfdlpoint = proBasicWppointMap.get(ContantXk.RFDLSYZ);
  139. proResultList.add(PointUtil.createPointData(date, rfdl.get(), rfdlpoint.getNemCode(), rfdlpoint.getName()));
  140. ProBasicPowerstationPoint yfdlpoint = proBasicWppointMap.get(ContantXk.YFDLSYZ);
  141. proResultList.add(PointUtil.createPointData(date, yfdl.get(), yfdlpoint.getNemCode(), yfdlpoint.getName()));
  142. ProBasicPowerstationPoint nfdlpoint = proBasicWppointMap.get(ContantXk.NFDLSYZ);
  143. proResultList.add(PointUtil.createPointData(date, nfdl.get(), nfdlpoint.getNemCode(), nfdlpoint.getName()));
  144. ProBasicPowerstationPoint rswdlpoint = proBasicWppointMap.get(ContantXk.RSWDL);
  145. proResultList.add(PointUtil.createPointData(date, rswdl.get(), rswdlpoint.getNemCode(), rswdlpoint.getName()));
  146. ProBasicPowerstationPoint yswdlpoint = proBasicWppointMap.get(ContantXk.YSWDL);
  147. proResultList.add(PointUtil.createPointData(date, yswdl.get(), yswdlpoint.getNemCode(), yswdlpoint.getName()));
  148. ProBasicPowerstationPoint nswdlpoint = proBasicWppointMap.get(ContantXk.NSWDL);
  149. proResultList.add(PointUtil.createPointData(date, nswdl.get(), nswdlpoint.getNemCode(), nswdlpoint.getName()));
  150. ProBasicPowerstationPoint rgwgwdlpoint = proBasicWppointMap.get(ContantXk.RGWGWDL);
  151. proResultList.add(PointUtil.createPointData(date, rgwgwdl.get(), rgwgwdlpoint.getNemCode(), rgwgwdlpoint.getName()));
  152. ProBasicPowerstationPoint ygwgwdlpoint = proBasicWppointMap.get(ContantXk.YGWGWDL);
  153. proResultList.add(PointUtil.createPointData(date, ygwgwdl.get(), ygwgwdlpoint.getNemCode(), ygwgwdlpoint.getName()));
  154. ProBasicPowerstationPoint ngwgwdlpoint = proBasicWppointMap.get(ContantXk.NGWGWDL);
  155. proResultList.add(PointUtil.createPointData(date, ngwgwdl.get(), ngwgwdlpoint.getNemCode(), ngwgwdlpoint.getName()));
  156. ProBasicPowerstationPoint rnwgwdlpoint = proBasicWppointMap.get(ContantXk.RNWGWDL);
  157. proResultList.add(PointUtil.createPointData(date, rnwgwdl.get(), rnwgwdlpoint.getNemCode(), rnwgwdlpoint.getName()));
  158. ProBasicPowerstationPoint ynwgwdlpoint = proBasicWppointMap.get(ContantXk.YNWGWDL);
  159. proResultList.add(PointUtil.createPointData(date, ynwgwdl.get(), ynwgwdlpoint.getNemCode(), ynwgwdlpoint.getName()));
  160. ProBasicPowerstationPoint nnwgwdlpoint = proBasicWppointMap.get(ContantXk.NNWGWDL);
  161. proResultList.add(PointUtil.createPointData(date, nnwgwdl.get(), nnwgwdlpoint.getNemCode(), nnwgwdlpoint.getName()));
  162. ProBasicPowerstationPoint rcydlpoint = proBasicWppointMap.get(ContantXk.RCYDL);
  163. proResultList.add(PointUtil.createPointData(date, rcydl.get(), rcydlpoint.getNemCode(), rcydlpoint.getName()));
  164. ProBasicPowerstationPoint ycydlpoint = proBasicWppointMap.get(ContantXk.YCYDL);
  165. proResultList.add(PointUtil.createPointData(date, ycydl.get(), ycydlpoint.getNemCode(), ycydlpoint.getName()));
  166. ProBasicPowerstationPoint ncydlpoint = proBasicWppointMap.get(ContantXk.NCYDL);
  167. proResultList.add(PointUtil.createPointData(date, ncydl.get(), ncydlpoint.getNemCode(), ncydlpoint.getName()));
  168. });
  169. //期次存储
  170. edosUtil.sendMultiPoint(proResultList);
  171. List<PointData> wpResultList = new ArrayList<>();
  172. wpls.stream().forEach(wp -> {
  173. Map<String, ProBasicPowerstationPoint> wpBasicWppointMap = wppointmap.get(wp.getId());
  174. List<ProBasicProject> proBasicPros = wppromap.get(wp.getId());
  175. AtomicReference<Double> rfdl = new AtomicReference<>((double) 0);
  176. AtomicReference<Double> yfdl = new AtomicReference<>((double) 0);
  177. AtomicReference<Double> nfdl = new AtomicReference<>((double) 0);
  178. AtomicReference<Double> rswdl = new AtomicReference<>((double) 0);
  179. AtomicReference<Double> yswdl = new AtomicReference<>((double) 0);
  180. AtomicReference<Double> nswdl = new AtomicReference<>((double) 0);
  181. AtomicReference<Double> rgwgwdl = new AtomicReference<>((double) 0);
  182. AtomicReference<Double> ygwgwdl = new AtomicReference<>((double) 0);
  183. AtomicReference<Double> ngwgwdl = new AtomicReference<>((double) 0);
  184. AtomicReference<Double> rnwgwdl = new AtomicReference<>((double) 0);
  185. AtomicReference<Double> ynwgwdl = new AtomicReference<>((double) 0);
  186. AtomicReference<Double> nnwgwdl = new AtomicReference<>((double) 0);
  187. AtomicReference<Double> rcydl = new AtomicReference<>((double) 0);
  188. AtomicReference<Double> ycydl = new AtomicReference<>((double) 0);
  189. AtomicReference<Double> ncydl = new AtomicReference<>((double) 0);
  190. proBasicPros.stream().forEach(line -> { //期次
  191. try {
  192. double linerfdl = getLineValue(line.getId(), ContantXk.RFDLSYZ, currentDate, propointmap);
  193. rfdl.updateAndGet(v -> new Double((double) (v + linerfdl)));
  194. double lineyfdl = getLineValue(line.getId(), ContantXk.YFDLSYZ, currentDate, propointmap);
  195. yfdl.updateAndGet(v -> new Double((double) (v + lineyfdl)));
  196. double linenfdl = getLineValue(line.getId(), ContantXk.NFDLSYZ, currentDate, propointmap);
  197. nfdl.updateAndGet(v -> new Double((double) (v + linenfdl)));
  198. double linerswdl = getLineValue(line.getId(), ContantXk.RSWDL, currentDate, propointmap);
  199. rswdl.updateAndGet(v -> new Double((double) (v + linerswdl)));
  200. double lineyswdl = getLineValue(line.getId(), ContantXk.YSWDL, currentDate, propointmap);
  201. yswdl.updateAndGet(v -> new Double((double) (v + lineyswdl)));
  202. double linenswdl = getLineValue(line.getId(), ContantXk.NSWDL, currentDate, propointmap);
  203. nswdl.updateAndGet(v -> new Double((double) (v + linenswdl)));
  204. double linergwgwdl = getLineValue(line.getId(), ContantXk.RGWGWDL, currentDate, propointmap);
  205. rgwgwdl.updateAndGet(v -> new Double((double) (v + linergwgwdl)));
  206. double lineygwgwdl = getLineValue(line.getId(), ContantXk.YGWGWDL, currentDate, propointmap);
  207. ygwgwdl.updateAndGet(v -> new Double((double) (v + lineygwgwdl)));
  208. double linengwgwdl = getLineValue(line.getId(), ContantXk.NGWGWDL, currentDate, propointmap);
  209. ngwgwdl.updateAndGet(v -> new Double((double) (v + linengwgwdl)));
  210. double linernwgwdl = getLineValue(line.getId(), ContantXk.RNWGWDL, currentDate, propointmap);
  211. rnwgwdl.updateAndGet(v -> new Double((double) (v + linernwgwdl)));
  212. double lineynwgwdl = getLineValue(line.getId(), ContantXk.YNWGWDL, currentDate, propointmap);
  213. ynwgwdl.updateAndGet(v -> new Double((double) (v + lineynwgwdl)));
  214. double linennwgwdl = getLineValue(line.getId(), ContantXk.NNWGWDL, currentDate, propointmap);
  215. nnwgwdl.updateAndGet(v -> new Double((double) (v + linennwgwdl)));
  216. double linercydl = getLineValue(line.getId(), ContantXk.RCYDL, currentDate, propointmap);
  217. rcydl.updateAndGet(v -> new Double((double) (v + linercydl)));
  218. double lineycydl = getLineValue(line.getId(), ContantXk.YCYDL, currentDate, propointmap);
  219. ycydl.updateAndGet(v -> new Double((double) (v + lineycydl)));
  220. double linencydl = getLineValue(line.getId(), ContantXk.NCYDL, currentDate, propointmap);
  221. ncydl.updateAndGet(v -> new Double((double) (v + linencydl)));
  222. } catch (Exception e) {
  223. e.printStackTrace();
  224. }
  225. });
  226. ProBasicPowerstationPoint rfdlpoint = wpBasicWppointMap.get(ContantXk.RFDLSYZ);
  227. wpResultList.add(PointUtil.createPointData(date, rfdl.get(), rfdlpoint.getNemCode(), rfdlpoint.getName()));
  228. ProBasicPowerstationPoint yfdlpoint = wpBasicWppointMap.get(ContantXk.YFDLSYZ);
  229. wpResultList.add(PointUtil.createPointData(date, yfdl.get(), yfdlpoint.getNemCode(), yfdlpoint.getName()));
  230. ProBasicPowerstationPoint nfdlpoint = wpBasicWppointMap.get(ContantXk.NFDLSYZ);
  231. wpResultList.add(PointUtil.createPointData(date, nfdl.get(), nfdlpoint.getNemCode(), nfdlpoint.getName()));
  232. ProBasicPowerstationPoint rswdlpoint = wpBasicWppointMap.get(ContantXk.RSWDL);
  233. wpResultList.add(PointUtil.createPointData(date, rswdl.get(), rswdlpoint.getNemCode(), rswdlpoint.getName()));
  234. ProBasicPowerstationPoint yswdlpoint = wpBasicWppointMap.get(ContantXk.YSWDL);
  235. wpResultList.add(PointUtil.createPointData(date, yswdl.get(), yswdlpoint.getNemCode(), yswdlpoint.getName()));
  236. ProBasicPowerstationPoint nswdlpoint = wpBasicWppointMap.get(ContantXk.NSWDL);
  237. wpResultList.add(PointUtil.createPointData(date, nswdl.get(), nswdlpoint.getNemCode(), nswdlpoint.getName()));
  238. ProBasicPowerstationPoint rgwgwdlpoint = wpBasicWppointMap.get(ContantXk.RGWGWDL);
  239. wpResultList.add(PointUtil.createPointData(date, rgwgwdl.get(), rgwgwdlpoint.getNemCode(), rgwgwdlpoint.getName()));
  240. ProBasicPowerstationPoint ygwgwdlpoint = wpBasicWppointMap.get(ContantXk.YGWGWDL);
  241. wpResultList.add(PointUtil.createPointData(date, ygwgwdl.get(), ygwgwdlpoint.getNemCode(), ygwgwdlpoint.getName()));
  242. ProBasicPowerstationPoint ngwgwdlpoint = wpBasicWppointMap.get(ContantXk.NGWGWDL);
  243. wpResultList.add(PointUtil.createPointData(date, ngwgwdl.get(), ngwgwdlpoint.getNemCode(), ngwgwdlpoint.getName()));
  244. ProBasicPowerstationPoint rnwgwdlpoint = wpBasicWppointMap.get(ContantXk.RNWGWDL);
  245. wpResultList.add(PointUtil.createPointData(date, rnwgwdl.get(), rnwgwdlpoint.getNemCode(), rnwgwdlpoint.getName()));
  246. ProBasicPowerstationPoint ynwgwdlpoint = wpBasicWppointMap.get(ContantXk.YNWGWDL);
  247. wpResultList.add(PointUtil.createPointData(date, ynwgwdl.get(), ynwgwdlpoint.getNemCode(), ynwgwdlpoint.getName()));
  248. ProBasicPowerstationPoint nnwgwdlpoint = wpBasicWppointMap.get(ContantXk.NNWGWDL);
  249. wpResultList.add(PointUtil.createPointData(date, nnwgwdl.get(), nnwgwdlpoint.getNemCode(), nnwgwdlpoint.getName()));
  250. ProBasicPowerstationPoint rcydlpoint = wpBasicWppointMap.get(ContantXk.RCYDL);
  251. wpResultList.add(PointUtil.createPointData(date, rcydl.get(), rcydlpoint.getNemCode(), rcydlpoint.getName()));
  252. ProBasicPowerstationPoint ycydlpoint = wpBasicWppointMap.get(ContantXk.YCYDL);
  253. wpResultList.add(PointUtil.createPointData(date, ycydl.get(), ycydlpoint.getNemCode(), ycydlpoint.getName()));
  254. ProBasicPowerstationPoint ncydlpoint = wpBasicWppointMap.get(ContantXk.NCYDL);
  255. wpResultList.add(PointUtil.createPointData(date, ncydl.get(), ncydlpoint.getNemCode(), ncydlpoint.getName()));
  256. });
  257. //场站存储
  258. edosUtil.sendMultiPoint(wpResultList);
  259. }
  260. private double getLineValue(String lineid, String uniformcode, Date currentDate, Map<String, Map<String, ProBasicPowerstationPoint>> linepointmap) throws Exception {
  261. ProBasicPowerstationPoint proBasicWppoint = null;
  262. try {
  263. proBasicWppoint = linepointmap.get(lineid).get(uniformcode);
  264. } catch (Exception e) {
  265. linepointmap.get(lineid).get(uniformcode);
  266. }
  267. return edosUtil.getSectionData(proBasicWppoint, currentDate.getTime()).getPointValueInDouble();
  268. }
  269. private void setZero(List<PointData> resultList, Date date, Date currentDate, Map<String, ProBasicPowerstationPoint> linemap, String rcode, String ycode, String ncode) {
  270. //线路日发电量
  271. PointData r = new PointData();
  272. r.setPointTime(date.getTime());
  273. r.setPointValue("0");
  274. r.setPointValueInDouble(0);
  275. r.setEdnaId(linemap.get(rcode).getNemCode());
  276. r.setPointName(linemap.get(rcode).getName());
  277. resultList.add(r);
  278. //线路月发电量
  279. PointData y = new PointData();
  280. y.setPointTime(date.getTime());
  281. y.setPointValue("0");
  282. y.setPointValueInDouble(0);
  283. y.setEdnaId(linemap.get(ycode).getNemCode());
  284. y.setPointName(linemap.get(ycode).getName());
  285. resultList.add(y);
  286. //线路年发电量
  287. PointData n = new PointData();
  288. n.setPointTime(date.getTime());
  289. n.setPointValue("0");
  290. n.setPointValueInDouble(0);
  291. n.setEdnaId(linemap.get(ncode).getNemCode());
  292. n.setPointName(linemap.get(ncode).getName());
  293. resultList.add(n);
  294. }
  295. private void getLineOtherFdl(Map<String, Map<String, ProBasicPowerstationPoint>> linepointmap, Date samedayZero, Date monthFirstZero, Date yearFirstZero, Date date, Date currentDate, List<PointData> lineResultList, ProBasicLine line, Map<String, ProBasicPowerstationPoint> proBasicWppointMap, Optional<ProBasicMeterPoint> fdlOptional, List<PointData> fdlList, Optional<ProBasicMeterPoint> swdlOptional) {
  296. if (swdlOptional.isPresent()) {
  297. ProBasicMeterPoint swdlMeterpoint = swdlOptional.get();
  298. if (StringUtils.isEmpty(fdlList)) {
  299. String[] lines = swdlMeterpoint.getLineId().split("\\|");
  300. Arrays.stream(lines).forEach(l -> {
  301. Optional<ProBasicMeterPoint> fdOptional = CacheContext.meterpoints.stream().filter(me -> me.getLineId().equals(l) && me.getUniformCode().equals("ZXYG") && me.getMeterType().equals("进线") && me.getMeterSort().equals("主")).findFirst();
  302. getLineFdl(l, samedayZero, monthFirstZero, yearFirstZero, date, currentDate, fdlList, proBasicWppointMap, fdOptional);
  303. });
  304. }
  305. //获取电量百分比,算其他电量
  306. Map<String, Double> percentageMap = getPercentage(fdlList, swdlMeterpoint, linepointmap, line);
  307. String pointid = swdlMeterpoint.getNemCode();
  308. Double real = 0.0;
  309. Double sameday = 0.0;
  310. Double month = 0.0;
  311. Double year = 0.0;
  312. try {
  313. real = edosUtil.getSectionData(pointid, currentDate.getTime()).getPointValueInDouble();
  314. sameday = edosUtil.getSectionData(pointid, samedayZero.getTime()).getPointValueInDouble();
  315. month = edosUtil.getSectionData(pointid, monthFirstZero.getTime()).getPointValueInDouble();
  316. year = edosUtil.getSectionData(pointid, yearFirstZero.getTime()).getPointValueInDouble();
  317. Double magnification = swdlMeterpoint.getMagnification();
  318. Double xs = swdlMeterpoint.getXs();
  319. //线路上网电量
  320. // double xlswdl = (real - sameday) * magnification / xs * percentageMap.get("percentage");
  321. double xlswdl = 0.0;
  322. if (StringUtils.notEmp(xs) && xs != 0) {
  323. xlswdl = new BigDecimal(real - sameday).multiply(new BigDecimal(magnification)).divide(new BigDecimal(xs), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(percentageMap.get("percentage"))).doubleValue();
  324. }
  325. ProBasicPowerstationPoint rpoint = proBasicWppointMap.get(ContantXk.RSWDL);
  326. PointData rpointData = PointUtil.createPointData(date, xlswdl, rpoint.getNemCode(), rpoint.getName());
  327. lineResultList.add(rpointData);
  328. //线路月上网发电量
  329. // double xlyswdl = (real - month) * magnification / xs * percentageMap.get("ypercentage");
  330. double xlyswdl = 0.0;
  331. if (StringUtils.notEmp(xs) && xs != 0) {
  332. xlyswdl = new BigDecimal(real - month).multiply(new BigDecimal(magnification)).divide(new BigDecimal(xs), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(percentageMap.get("ypercentage"))).doubleValue();
  333. }
  334. ProBasicPowerstationPoint ypoint = proBasicWppointMap.get(ContantXk.YSWDL);
  335. PointData ypointData = PointUtil.createPointData(date, xlyswdl, ypoint.getNemCode(), ypoint.getName());
  336. lineResultList.add(ypointData);
  337. //线路年上网发电量
  338. // double xlnswfdl = (real - year) * magnification / xs * percentageMap.get("npercentage");
  339. double xlnswfdl = 0.0;
  340. if (StringUtils.notEmp(xs) && xs != 0) {
  341. xlnswfdl = new BigDecimal(real - year).multiply(new BigDecimal(magnification)).divide(new BigDecimal(xs), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(percentageMap.get("npercentage"))).doubleValue();
  342. }
  343. ProBasicPowerstationPoint npoint = proBasicWppointMap.get(ContantXk.NSWDL);
  344. PointData npointData = PointUtil.createPointData(date, xlnswfdl, npoint.getNemCode(), npoint.getName());
  345. lineResultList.add(npointData);
  346. } catch (Exception e) {
  347. e.printStackTrace();
  348. }
  349. }
  350. }
  351. private void getLineFdl(String line, Date samedayZero, Date monthFirstZero, Date yearFirstZero, Date date, Date currentDate, List<PointData> lineResultList, Map<String, ProBasicPowerstationPoint> proBasicWppointMap, Optional<ProBasicMeterPoint> fdlOptional) {
  352. if (fdlOptional.isPresent()) {
  353. ProBasicMeterPoint proBasicMeterPoint = fdlOptional.get();
  354. String pointid = proBasicMeterPoint.getNemCode();
  355. Double real = 0.0;
  356. Double sameday = 0.0;
  357. Double month = 0.0;
  358. Double year = 0.0;
  359. try {
  360. real = edosUtil.getSectionData(pointid, currentDate.getTime()).getPointValueInDouble();
  361. sameday = edosUtil.getSectionData(pointid, samedayZero.getTime()).getPointValueInDouble();
  362. month = edosUtil.getSectionData(pointid, monthFirstZero.getTime()).getPointValueInDouble();
  363. year = edosUtil.getSectionData(pointid, yearFirstZero.getTime()).getPointValueInDouble();
  364. Double magnification = fdlOptional.get().getMagnification();
  365. Double xs = proBasicMeterPoint.getXs();
  366. Map<String, ProBasicPowerstationPoint> powerstationPointMap = CacheContext.linepointmap.get(line);
  367. //线路日发电量
  368. // double xlrfdl = (real - sameday) * magnification / xs;
  369. double xlrfdl = 0.0;
  370. if (StringUtils.notEmp(xs) && xs != 0) {
  371. xlrfdl = new BigDecimal(real - sameday).multiply(new BigDecimal(magnification)).divide(new BigDecimal(xs), 2, RoundingMode.HALF_EVEN).doubleValue();
  372. }
  373. ProBasicPowerstationPoint rpoint = powerstationPointMap.get(ContantXk.RFDLSYZ);
  374. PointData r = PointUtil.createPointData(date, xlrfdl, rpoint.getNemCode(), rpoint.getName());
  375. lineResultList.add(r);
  376. //线路月发电量
  377. // double xlyfdl = (real - month) * magnification / xs;
  378. double xlyfdl = 0.0;
  379. if (StringUtils.notEmp(xs) && xs != 0) {
  380. xlyfdl = new BigDecimal(real - month).multiply(new BigDecimal(magnification)).divide(new BigDecimal(xs), 2, RoundingMode.HALF_EVEN).doubleValue();
  381. }
  382. ProBasicPowerstationPoint ypoint = powerstationPointMap.get(ContantXk.YFDLSYZ);
  383. PointData y = PointUtil.createPointData(date, xlyfdl, ypoint.getNemCode(), ypoint.getName());
  384. lineResultList.add(y);
  385. //线路年发电量
  386. // double xlnfdl = (real - year) * magnification / xs;
  387. double xlnfdl = 0.0;
  388. if (StringUtils.notEmp(xs) && xs != 0) {
  389. xlnfdl = new BigDecimal(real - year).multiply(new BigDecimal(magnification)).divide(new BigDecimal(xs), 2, RoundingMode.HALF_EVEN).doubleValue();
  390. }
  391. ProBasicPowerstationPoint npoint = powerstationPointMap.get(ContantXk.NFDLSYZ);
  392. PointData n = PointUtil.createPointData(date, xlnfdl, npoint.getNemCode(), npoint.getName());
  393. lineResultList.add(n);
  394. } catch (Exception e) {
  395. e.printStackTrace();
  396. }
  397. }
  398. }
  399. private Map<String, Double> getPercentage(List<PointData> fdlList, ProBasicMeterPoint swdlMeterpoint, Map<String, Map<String, ProBasicPowerstationPoint>> linepointmap, ProBasicLine line) {
  400. Map<String, Double> percentageMap = new HashMap<>();
  401. String[] swdlLines = swdlMeterpoint.getLineId().split("\\|");
  402. AtomicReference<Double> xldl = new AtomicReference<>((double) 0);
  403. AtomicReference<Double> xlzdl = new AtomicReference<>((double) 0);
  404. AtomicReference<Double> xlydl = new AtomicReference<>((double) 0);
  405. AtomicReference<Double> xlzydl = new AtomicReference<>((double) 0);
  406. AtomicReference<Double> xlndl = new AtomicReference<>((double) 0);
  407. AtomicReference<Double> xlzndl = new AtomicReference<>((double) 0);
  408. Arrays.stream(swdlLines).forEach(l -> {
  409. Optional<PointData> xldlfirst = fdlList.stream().filter(res -> res.getEdnaId().equals(linepointmap.get(l).get(ContantXk.RFDLSYZ).getNemCode())).findFirst();
  410. if (xldlfirst.isPresent()) {
  411. if (l.equals(line.getId())) {
  412. xldl.set(xldlfirst.get().getPointValueInDouble());
  413. xlzdl.updateAndGet(v -> new Double((double) (v + xldlfirst.get().getPointValueInDouble())));
  414. } else {
  415. xlzdl.updateAndGet(v -> new Double((double) (v + xldlfirst.get().getPointValueInDouble())));
  416. }
  417. }
  418. Optional<PointData> xlydlfirst = fdlList.stream().filter(res -> res.getEdnaId().equals(linepointmap.get(l).get(ContantXk.YFDLSYZ).getNemCode())).findFirst();
  419. if (xlydlfirst.isPresent()) {
  420. if (l.equals(line.getId())) {
  421. xlydl.set(xlydlfirst.get().getPointValueInDouble());
  422. xlzydl.updateAndGet(v -> new Double((double) (v + xlydlfirst.get().getPointValueInDouble())));
  423. } else {
  424. xlzydl.updateAndGet(v -> new Double((double) (v + xlydlfirst.get().getPointValueInDouble())));
  425. }
  426. }
  427. Optional<PointData> xlndlfirst = fdlList.stream().filter(res -> res.getEdnaId().equals(linepointmap.get(l).get(ContantXk.NFDLSYZ).getNemCode())).findFirst();
  428. if (xlndlfirst.isPresent()) {
  429. if (l.equals(line.getId())) {
  430. xlndl.set(xlndlfirst.get().getPointValueInDouble());
  431. xlzndl.updateAndGet(v -> new Double((double) (v + xlndlfirst.get().getPointValueInDouble())));
  432. } else {
  433. xlzndl.updateAndGet(v -> new Double((double) (v + xlndlfirst.get().getPointValueInDouble())));
  434. }
  435. }
  436. });
  437. //电量百分比
  438. double percentage = xlzdl.get() != 0 ? xldl.get() / xlzdl.get() : 0;
  439. percentageMap.put("percentage", percentage);
  440. double ypercentage = xlzydl.get() != 0 ? xlydl.get() / xlzydl.get() : 0;
  441. percentageMap.put("ypercentage", ypercentage);
  442. double npercentage = xlzndl.get() != 0 ? xlndl.get() / xlzndl.get() : 0;
  443. percentageMap.put("npercentage", npercentage);
  444. return percentageMap;
  445. }
  446. }