SingleAnalysisService.java 72 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411
  1. package com.gyee.runeconomy.service.singleanalysis;
  2. import cn.hutool.core.util.NumberUtil;
  3. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  4. import com.gyee.common.model.StringUtils;
  5. import com.gyee.runeconomy.init.CacheContext;
  6. import com.gyee.runeconomy.model.auto.*;
  7. import com.gyee.runeconomy.model.vo.SingleAnalysisVo;
  8. import com.gyee.runeconomy.service.auto.*;
  9. import org.springframework.stereotype.Service;
  10. import javax.annotation.Resource;
  11. import java.math.BigDecimal;
  12. import java.math.RoundingMode;
  13. import java.util.*;
  14. import java.util.function.Function;
  15. import java.util.stream.Collectors;
  16. @Service
  17. public class SingleAnalysisService {
  18. @Resource
  19. private IProEconInOrOutSpeedTotalService proEconInOrOutSpeedTotalService;
  20. @Resource
  21. private IProEconEquipmentInfoDay1Service proEconEquipmentInfoDay1Service;
  22. @Resource
  23. private IProEconEquipmentInfoDay2Service proEconEquipmentInfoDay2Service;
  24. @Resource
  25. private IProEconEquipmentInfoDay4Service proEconEquipmentInfoDay4Service;
  26. @Resource
  27. private IProEconPowerstationInfoDay5Service proEconPowerstationInfoDay5Service;
  28. @Resource
  29. private ITurbineInfoDayService turbineInfoDayService;
  30. private Map<String, ProEconInOrOutSpeedTotal> queryInOrOutSpeedTotal(String cmId, String type, String wpId, Date recordDate) {
  31. List<ProEconInOrOutSpeedTotal> iostls = null;
  32. if (StringUtils.notEmp(wpId)) {
  33. QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
  34. queryWrapper.eq("record_date", recordDate)
  35. .eq("windpowerstation_id", wpId);
  36. if (StringUtils.notEmp(type) && !type.equals("0")) {
  37. queryWrapper.eq("types", type);
  38. }
  39. iostls = proEconInOrOutSpeedTotalService.list(queryWrapper);
  40. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  41. // && i.getCompanyId().equals(cmId)
  42. // && i.getTypes().equals(type)
  43. // && i.getRecordDate().compareTo(recordDate) == 0
  44. // )
  45. // .collect(Collectors.toList());
  46. } else if (StringUtils.notEmp(cmId) && CacheContext.cpmap.containsKey(cmId)) {
  47. QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
  48. queryWrapper.eq("record_date", recordDate)
  49. .eq("company_id", cmId);
  50. if (StringUtils.notEmp(type) && !type.equals("0")) {
  51. queryWrapper.eq("types", type);
  52. }
  53. iostls = proEconInOrOutSpeedTotalService.list(queryWrapper);
  54. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  55. // && i.getCompanyId().equals(cmId)
  56. // && i.getTypes().equals(type)
  57. // && i.getRecordDate().compareTo(recordDate) == 0
  58. // )
  59. // .collect(Collectors.toList());
  60. } else if (StringUtils.notEmp(cmId) && CacheContext.rgmap.containsKey(cmId)) {
  61. QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
  62. queryWrapper.eq("record_date", recordDate)
  63. .eq("region_Id", cmId);
  64. if (StringUtils.notEmp(type) && !type.equals("0")) {
  65. queryWrapper.eq("types", type);
  66. }
  67. iostls = proEconInOrOutSpeedTotalService.list(queryWrapper);
  68. // .stream().filter(i-> i.getCompanyId().equals(cmId)
  69. // && i.getTypes().equals(type)
  70. // && i.getRecordDate().compareTo(recordDate) == 0
  71. // )
  72. // .collect(Collectors.toList());
  73. }
  74. //List转map
  75. Map<String, ProEconInOrOutSpeedTotal> iostmap = iostls.stream().
  76. collect(Collectors.toMap(ProEconInOrOutSpeedTotal::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  77. return iostmap;
  78. }
  79. private Map<String, ProEconEquipmentInfoDay1> queryEquipmentInfoDay1(String cmId, String type, String wpId, Date recordDate) {
  80. List<ProEconEquipmentInfoDay1> iostls = null;
  81. if (StringUtils.notEmp(wpId)) {
  82. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
  83. queryWrapper.eq("record_date", recordDate)
  84. .eq("windpowerstation_id", wpId);
  85. iostls = proEconEquipmentInfoDay1Service.list(queryWrapper);
  86. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  87. // && i.getCompanyId().equals(cmId)
  88. // && i.getRecordDate().compareTo(recordDate) == 0
  89. // )
  90. // .collect(Collectors.toList());
  91. } else if (StringUtils.notEmp(cmId) && CacheContext.cpmap.containsKey(cmId)) {
  92. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
  93. queryWrapper.eq("record_date", recordDate)
  94. .eq("company_id", cmId);
  95. iostls = proEconEquipmentInfoDay1Service.list(queryWrapper);
  96. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  97. // && i.getCompanyId().equals(cmId)
  98. // && i.getRecordDate().compareTo(recordDate) == 0
  99. // )
  100. // .collect(Collectors.toList());
  101. } else if (StringUtils.notEmp(cmId) && CacheContext.rgmap.containsKey(cmId)) {
  102. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
  103. queryWrapper.eq("record_date", recordDate)
  104. .eq("region_Id", cmId);
  105. iostls = proEconEquipmentInfoDay1Service.list(queryWrapper);
  106. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  107. // && i.getCompanyId().equals(cmId)
  108. // && i.getRecordDate().compareTo(recordDate) == 0
  109. // )
  110. // .collect(Collectors.toList());
  111. }
  112. //List转map
  113. Map<String, ProEconEquipmentInfoDay1> iostmap = iostls.stream().
  114. collect(Collectors.toMap(ProEconEquipmentInfoDay1::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  115. return iostmap;
  116. }
  117. private Map<String, ProEconEquipmentInfoDay2> queryEquipmentInfoDay2(String cmId, String type, String wpId, Date recordDate) {
  118. List<ProEconEquipmentInfoDay2> iostls = null;
  119. if (StringUtils.notEmp(wpId)) {
  120. QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
  121. queryWrapper.eq("record_date", recordDate)
  122. .eq("windpowerstation_id", wpId);
  123. iostls = proEconEquipmentInfoDay2Service.list(queryWrapper);
  124. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  125. // && i.getCompanyId().equals(cmId)
  126. // && i.getRecordDate().compareTo(recordDate) == 0
  127. // )
  128. // .collect(Collectors.toList());
  129. } else if (StringUtils.notEmp(cmId) && CacheContext.cpmap.containsKey(cmId)) {
  130. QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
  131. queryWrapper.eq("record_date", recordDate)
  132. .eq("company_id", cmId);
  133. iostls = proEconEquipmentInfoDay2Service.list(queryWrapper);
  134. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  135. // && i.getCompanyId().equals(cmId)
  136. // && i.getRecordDate().compareTo(recordDate) == 0
  137. // )
  138. // .collect(Collectors.toList());
  139. } else if (StringUtils.notEmp(cmId) && CacheContext.rgmap.containsKey(cmId)) {
  140. QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
  141. queryWrapper.eq("record_date", recordDate)
  142. .eq("region_Id", cmId);
  143. iostls = proEconEquipmentInfoDay2Service.list(queryWrapper);
  144. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  145. // && i.getCompanyId().equals(cmId)
  146. // && i.getRecordDate().compareTo(recordDate) == 0
  147. // )
  148. // .collect(Collectors.toList());
  149. }
  150. //List转map
  151. Map<String, ProEconEquipmentInfoDay2> iostmap = iostls.stream().
  152. collect(Collectors.toMap(ProEconEquipmentInfoDay2::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  153. return iostmap;
  154. }
  155. private Map<String, ProEconPowerstationInfoDay5> queryPowerstationInfoDay5(String cmId, String type, String wpId, Date recordDate) {
  156. List<ProEconPowerstationInfoDay5> iostls = null;
  157. if (StringUtils.notEmp(wpId)) {
  158. QueryWrapper<ProEconPowerstationInfoDay5> queryWrapper = new QueryWrapper<>();
  159. queryWrapper.eq("record_date", recordDate)
  160. .eq("windpowerstation_id", wpId);
  161. if (StringUtils.notEmp(type)) {
  162. queryWrapper.eq("foreign_key_id", wpId + type);
  163. }
  164. iostls = proEconPowerstationInfoDay5Service.list(queryWrapper);
  165. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  166. // && i.getCompanyId().equals(cmId)
  167. // && i.getRecordDate().compareTo(recordDate) == 0
  168. // )
  169. // .collect(Collectors.toList());
  170. } else if (StringUtils.notEmp(cmId) && CacheContext.cpmap.containsKey(cmId)) {
  171. QueryWrapper<ProEconPowerstationInfoDay5> queryWrapper = new QueryWrapper<>();
  172. queryWrapper.eq("record_date", recordDate)
  173. .eq("company_id", cmId);
  174. if (StringUtils.notEmp(type)) {
  175. queryWrapper.eq("foreign_key_id", cmId + type);
  176. }
  177. iostls = proEconPowerstationInfoDay5Service.list(queryWrapper);
  178. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  179. // && i.getCompanyId().equals(cmId)
  180. // && i.getRecordDate().compareTo(recordDate) == 0
  181. // )
  182. // .collect(Collectors.toList());
  183. } else if (StringUtils.notEmp(cmId) && CacheContext.rgmap.containsKey(cmId)) {
  184. QueryWrapper<ProEconPowerstationInfoDay5> queryWrapper = new QueryWrapper<>();
  185. queryWrapper.eq("record_date", recordDate)
  186. .eq("region_Id", cmId);
  187. if (StringUtils.notEmp(type)) {
  188. queryWrapper.eq("foreign_key_id", cmId + type);
  189. }
  190. iostls = proEconPowerstationInfoDay5Service.list(queryWrapper);
  191. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  192. // && i.getCompanyId().equals(cmId)
  193. // && i.getRecordDate().compareTo(recordDate) == 0
  194. // )
  195. // .collect(Collectors.toList());
  196. }
  197. // .stream().filter(i->
  198. // i.getCompanyId() !=null
  199. // && i.getCompanyId().equals(cmId)
  200. // && i.getRecordDate().compareTo(recordDate) == 0
  201. // )
  202. // .collect(Collectors.toList());
  203. //List转map
  204. Map<String, ProEconPowerstationInfoDay5> iostmap = iostls.stream().
  205. collect(Collectors.toMap(ProEconPowerstationInfoDay5::getWindpowerstationId, Function.identity(), (key1, key2) -> key2));
  206. return iostmap;
  207. }
  208. private Map<String, ProEconPowerstationInfoDay5> queryPowerstationInfoDay5(String wpId, Date recordDate) {
  209. List<ProEconPowerstationInfoDay5> iostls = new ArrayList<>();
  210. if (StringUtils.notEmp(wpId)) {
  211. QueryWrapper<ProEconPowerstationInfoDay5> queryWrapper = new QueryWrapper<>();
  212. queryWrapper.eq("record_date", recordDate)
  213. .eq("windpowerstation_id", wpId);
  214. iostls = proEconPowerstationInfoDay5Service.list(queryWrapper);
  215. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  216. // && i.getCompanyId().equals(cmId)
  217. // && i.getRecordDate().compareTo(recordDate) == 0
  218. // )
  219. // .collect(Collectors.toList());
  220. }
  221. // .stream().filter(i->
  222. // i.getCompanyId() !=null
  223. // && i.getCompanyId().equals(cmId)
  224. // && i.getRecordDate().compareTo(recordDate) == 0
  225. // )
  226. // .collect(Collectors.toList());
  227. //List转map
  228. Map<String, ProEconPowerstationInfoDay5> iostmap = iostls.stream().
  229. collect(Collectors.toMap(ProEconPowerstationInfoDay5::getWindpowerstationId, Function.identity(), (key1, key2) -> key2));
  230. return iostmap;
  231. }
  232. private Map<String, ProEconEquipmentInfoDay4> queryEquipmentInfoDay4(String cmId, String type, String wpId, Date recordDate) {
  233. List<ProEconEquipmentInfoDay4> iostls = null;
  234. if (StringUtils.notEmp(wpId)) {
  235. QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
  236. queryWrapper.eq("record_date", recordDate)
  237. .eq("windpowerstation_id", wpId);
  238. iostls = proEconEquipmentInfoDay4Service.list(queryWrapper);
  239. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  240. // && i.getCompanyId().equals(cmId)
  241. // && i.getRecordDate().compareTo(recordDate) == 0
  242. // )
  243. // .collect(Collectors.toList());
  244. } else if (StringUtils.notEmp(cmId) && CacheContext.cpmap.containsKey(cmId)) {
  245. QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
  246. queryWrapper.eq("record_date", recordDate)
  247. .eq("company_id", cmId);
  248. iostls = proEconEquipmentInfoDay4Service.list(queryWrapper);
  249. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  250. // && i.getCompanyId().equals(cmId)
  251. // && i.getRecordDate().compareTo(recordDate) == 0
  252. // )
  253. // .collect(Collectors.toList());
  254. } else if (StringUtils.notEmp(cmId) && CacheContext.rgmap.containsKey(cmId)) {
  255. QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
  256. queryWrapper.eq("record_date", recordDate)
  257. .eq("region_Id", cmId);
  258. iostls = proEconEquipmentInfoDay4Service.list(queryWrapper);
  259. // .stream().filter(i->i.getWindpowerstationId().equals(wpId)
  260. // && i.getCompanyId().equals(cmId)
  261. // && i.getRecordDate().compareTo(recordDate) == 0
  262. // )
  263. // .collect(Collectors.toList());
  264. }
  265. //List转map
  266. Map<String, ProEconEquipmentInfoDay4> iostmap = iostls.stream().
  267. collect(Collectors.toMap(ProEconEquipmentInfoDay4::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  268. return iostmap;
  269. }
  270. //*************************************************************************************************************************************************************/
  271. private Map<String, ProEconInOrOutSpeedTotal> queryInOrOutSpeedTotalByWt(String wtId, Date recordDate) {
  272. QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
  273. queryWrapper.eq("record_date", recordDate)
  274. .eq("windturbine_id", wtId);
  275. List<ProEconInOrOutSpeedTotal> iostls = proEconInOrOutSpeedTotalService.list(queryWrapper);
  276. // .stream().filter(i->i.getWindturbineId().equals(wtId)
  277. // && i.getRecordDate().compareTo(recordDate) == 0
  278. // )
  279. // .collect(Collectors.toList());
  280. //List转map
  281. Map<String, ProEconInOrOutSpeedTotal> iostmap = iostls.stream().
  282. collect(Collectors.toMap(ProEconInOrOutSpeedTotal::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  283. return iostmap;
  284. }
  285. private Map<String, ProEconEquipmentInfoDay1> queryEquipmentInfoDay1ByWt(String wtId, Date recordDate) {
  286. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
  287. queryWrapper.eq("record_date", recordDate)
  288. .eq("windturbine_id", wtId);
  289. List<ProEconEquipmentInfoDay1> iostls = proEconEquipmentInfoDay1Service.list(queryWrapper);
  290. // .stream().filter(i->i.getWindturbineId().equals(wtId)
  291. // && i.getRecordDate().compareTo(recordDate) == 0
  292. // )
  293. // .collect(Collectors.toList());
  294. //List转map
  295. Map<String, ProEconEquipmentInfoDay1> iostmap = iostls.stream().
  296. collect(Collectors.toMap(ProEconEquipmentInfoDay1::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  297. return iostmap;
  298. }
  299. private Map<String, ProEconEquipmentInfoDay2> queryEquipmentInfoDay2ByWt(String wtId, Date recordDate) {
  300. QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
  301. queryWrapper.eq("record_date", recordDate)
  302. .eq("windturbine_id", wtId);
  303. List<ProEconEquipmentInfoDay2> iostls = proEconEquipmentInfoDay2Service.list(queryWrapper);
  304. // .stream().filter(i->i.getWindturbineId().equals(wtId)
  305. // && i.getRecordDate().compareTo(recordDate) == 0
  306. // )
  307. // .collect(Collectors.toList());
  308. //List转map
  309. Map<String, ProEconEquipmentInfoDay2> iostmap = iostls.stream().
  310. collect(Collectors.toMap(ProEconEquipmentInfoDay2::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  311. return iostmap;
  312. }
  313. private Map<String, ProEconEquipmentInfoDay4> queryEquipmentInfoDay4ByWt(String wtId, Date recordDate) {
  314. QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
  315. queryWrapper.eq("record_date", recordDate)
  316. .eq("windturbine_id", wtId);
  317. List<ProEconEquipmentInfoDay4> iostls = proEconEquipmentInfoDay4Service.list(queryWrapper);
  318. // .stream().filter(i->i.getWindturbineId().equals(wtId)
  319. // && i.getRecordDate().compareTo(recordDate) == 0
  320. // )
  321. // .collect(Collectors.toList());
  322. //List转map
  323. Map<String, ProEconEquipmentInfoDay4> iostmap = iostls.stream().
  324. collect(Collectors.toMap(ProEconEquipmentInfoDay4::getWindturbineId, Function.identity(), (key1, key2) -> key2));
  325. return iostmap;
  326. }
  327. public Map<String, Object> SingleAnalysisList(Integer pageNum, Integer pageSize, String cmId, String type, String wpId, Date recordDate) {
  328. List<SingleAnalysisVo> vos = new ArrayList<>();
  329. if (StringUtils.notEmp(cmId) && StringUtils.notEmp(recordDate)) {
  330. Map<String, ProEconInOrOutSpeedTotal> iostmap = queryInOrOutSpeedTotal(cmId, type, wpId, recordDate);
  331. Map<String, ProEconEquipmentInfoDay1> eqday1map = queryEquipmentInfoDay1(cmId, type, wpId, recordDate);
  332. Map<String, ProEconEquipmentInfoDay2> eqday2map = queryEquipmentInfoDay2(cmId, type, wpId, recordDate);
  333. Map<String, ProEconPowerstationInfoDay5> pwday5map = queryPowerstationInfoDay5(cmId, type, wpId, recordDate);
  334. Map<String, ProEconEquipmentInfoDay4> eqday4map = queryEquipmentInfoDay4(cmId, type, wpId, recordDate);
  335. List<ProBasicEquipment> wtls = new ArrayList<>();
  336. if (StringUtils.isNotEmpty(wpId)) {
  337. if (CacheContext.wpwtmap.containsKey(wpId)) {
  338. wtls = CacheContext.wpwtmap.get(wpId);
  339. }
  340. } else if (StringUtils.isNotEmpty(cmId) && CacheContext.cpmap.containsKey(cmId)) {
  341. if (CacheContext.cmwtlsmap.containsKey(cmId)) {
  342. wtls = CacheContext.cmwtlsmap.get(cmId);
  343. }
  344. } else if (StringUtils.isNotEmpty(cmId) && CacheContext.rgmap.containsKey(cmId)) {
  345. if (CacheContext.rgwtlsmap.containsKey(cmId)) {
  346. wtls = CacheContext.rgwtlsmap.get(cmId);
  347. }
  348. }
  349. //if (CacheContext.cmwtlsmap.containsKey(wpId)) {
  350. // List<ProBasicEquipment> wtls = CacheContext.cmwtlsmap.get(wpId);
  351. for (ProBasicEquipment wt : wtls) {
  352. SingleAnalysisVo vo = new SingleAnalysisVo();
  353. vo.setWindPowerStationId(wt.getWindpowerstationId());
  354. vo.setWindturbineName(wt.getAname());
  355. vo.setWtcode(wt.getAname());
  356. if (CacheContext.wpmap.containsKey(wt.getWindpowerstationId())) {
  357. ProBasicPowerstation wp = CacheContext.wpmap.get(wt.getWindpowerstationId());
  358. vo.setWindPowerStationName(wp.getName());
  359. }
  360. if (CacheContext.modelMap.containsKey(wt.getModelId())) {
  361. ProEconEquipmentmodel model = CacheContext.modelMap.get(wt.getModelId());
  362. vo.setFjrl(model.getPowerProduction());
  363. }
  364. vo.setRecorddate(recordDate);
  365. vo.setWindturbineid(wt.getId());
  366. Calendar c = Calendar.getInstance();
  367. c.setTime(recordDate);
  368. int dayTimes = c.get(Calendar.DAY_OF_MONTH) * 24;//风机日历小时合计
  369. double fdl = 0;
  370. if (eqday1map.containsKey(wt.getId())) {
  371. ProEconEquipmentInfoDay1 wtd = eqday1map.get(wt.getId());
  372. fdl = null != wtd.getYfdl() ? wtd.getYfdl() : 0.0;//风机发电量合计
  373. // fdl = new BigDecimal(fdl).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  374. double fs = null != wtd.getYpjfs() ? wtd.getYpjfs() : 0.0;//风机平均风速
  375. double gzss = null != wtd.getYgzssdl() ? wtd.getYgzssdl() : 0.0;//风机故障损失合计
  376. double jxss = null != wtd.getYjxssdl() ? wtd.getYjxssdl() : 0.0;//风机检修损失合计
  377. double xdss = null != wtd.getYxdtjssdl() ? wtd.getYxdtjssdl() : 0.0;//风机限电损失合计
  378. double xnss = null != wtd.getYxnssdl() ? wtd.getYxnssdl() : 0.0;//风机性能损失时合计
  379. double ycwsldwssdl = null != wtd.getYcwsldwssdl() ? wtd.getYcwsldwssdl() : 0.0;//场外受累电网损失电量
  380. double ycwsltqssdl = null != wtd.getYcwsltqssdl() ? wtd.getYcwsldwssdl() : 0.0;//场外受累天气损失电量
  381. double slss = StringUtils.round(ycwsldwssdl + ycwsltqssdl, 2);
  382. double llfdl = fdl + gzss + jxss + xdss + xnss + slss; //理论发电量
  383. vo.setGzss(StringUtils.round(gzss / 10000, 2));
  384. vo.setJxss(StringUtils.round(jxss / 10000, 2));
  385. vo.setXdss(StringUtils.round(xdss / 10000, 2));
  386. vo.setXnss(StringUtils.round(xnss / 10000, 2));
  387. vo.setSlss(StringUtils.round(xnss / 10000, 2));
  388. vo.setLlfdl(StringUtils.round(llfdl / 10000, 2));
  389. double powerProduction = 0;
  390. if (CacheContext.modelMap.containsKey(wt.getModelId())) {
  391. ProEconEquipmentmodel model = CacheContext.modelMap.get(wt.getModelId());
  392. powerProduction = model.getPowerProduction();
  393. }
  394. double lyxs = 0.0;
  395. if (powerProduction != 0) {
  396. lyxs = new BigDecimal(fdl).divide(new BigDecimal(powerProduction), 2, RoundingMode.HALF_EVEN).doubleValue();//风机平均利用小时
  397. }
  398. vo.setFdl(StringUtils.round(fdl / 10000, 2));
  399. vo.setRlxs(StringUtils.round(dayTimes, 2));
  400. vo.setFs(StringUtils.round(fs, 2));
  401. vo.setLyxs(StringUtils.round(lyxs, 2));
  402. }
  403. if (eqday2map.containsKey(wt.getId())) {
  404. ProEconEquipmentInfoDay2 wtd = eqday2map.get(wt.getId());
  405. double yxxs = null != wtd.getYyxxs() ? wtd.getYyxxs() : 0.0;//风机运行小时合计
  406. double gzxs = null != wtd.getYgztjxs() ? wtd.getYgztjxs() : 0.0;//风机故障小时合计
  407. double jxxs = null != wtd.getYjxtjxs() ? wtd.getYjxtjxs() : 0.0;//风机检修小时合计
  408. double tjxs = null != wtd.getYxdxs() ? wtd.getYxdxs() : 0.0;//风限电小时合计
  409. double zdxs = null != wtd.getYtxzdxs() ? wtd.getYtxzdxs() : 0.0;//风机中断小时合计
  410. double sbklyl = new BigDecimal(dayTimes - gzxs).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//风机平均设备可利用率
  411. double dxklyxs = new BigDecimal(dayTimes - gzxs - jxxs).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//风机平均等效可利用系数
  412. double yxfss = dayTimes - gzxs - jxxs;//风机平均有效风
  413. vo.setYxfss(StringUtils.round(yxfss, 2));
  414. vo.setDxklyxs(StringUtils.round(dxklyxs, 2));
  415. vo.setSbklyl(StringUtils.round(sbklyl, 2));
  416. vo.setYxxs(StringUtils.round(yxxs, 2));
  417. vo.setGzxs(StringUtils.round(gzxs, 2));
  418. vo.setJxxs(StringUtils.round(jxxs, 2));
  419. vo.setTjxs(StringUtils.round(tjxs, 2));
  420. vo.setZdxs(StringUtils.round(zdxs, 2));
  421. }
  422. if (eqday4map.containsKey(wt.getId())) {
  423. ProEconEquipmentInfoDay4 wtd = eqday4map.get(wt.getId());
  424. double glyzxxs = null != wtd.getYglyzxxs() ? wtd.getYglyzxxs() : 0.0;//风机平均功率一致性系数
  425. vo.setGlyzxxs(StringUtils.round(glyzxxs, 2));
  426. double jfsc = null != wtd.getYjfsc() ? wtd.getYjfsc() : 0.0;//静风时长
  427. double jfpl = new BigDecimal(jfsc).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//静风频率
  428. vo.setJfpl(jfpl);
  429. }
  430. if (iostmap.containsKey(wt.getId())) {
  431. ProEconInOrOutSpeedTotal wtd = iostmap.get(wt.getId());
  432. double xfqr = null != wtd.getMonthInputSmall() ? wtd.getMonthInputSmall() : 0.0;//风机小风切入
  433. double xfqrhgl = null != wtd.getMonthInputSmallRatio() ? wtd.getMonthInputSmallRatio() : 0.0;//风机小风切入合格率
  434. vo.setXfqr(StringUtils.round(xfqr, 2));
  435. vo.setXfqrhgl(StringUtils.round(xfqrhgl, 2));
  436. }
  437. vos.add(vo);
  438. }
  439. //}
  440. if (null != vos && !vos.isEmpty()) {
  441. //统计所有风机指标数据
  442. SingleAnalysisVo vo = new SingleAnalysisVo();
  443. vo.setWindturbineName("合计");
  444. if (pwday5map.containsKey(wpId)) {
  445. ProEconPowerstationInfoDay5 day5 = pwday5map.get(wpId);
  446. double swdl = day5.getYswdldb().doubleValue();//风场上网电量合计
  447. double gwdl = day5.getYgwgwdldb().doubleValue() + day5.getYnwgwdldb().doubleValue();//风场购网电量合计
  448. vo.setSwdl(StringUtils.round(swdl, 2));
  449. vo.setGwdl(StringUtils.round(gwdl, 2));
  450. }
  451. double fdl = 0.0;//风机发电量合计
  452. double yxxs = 0.0;//风机运行小时合计
  453. double gzxs = 0.0;//风机故障小时合计
  454. double jxxs = 0.0;//风机检修小时合计
  455. double tjxs = 0.0;//风机停机小时合计
  456. double zdxs = 0.0;//风机中断小时合计
  457. double rlxs = 0.0;//风机日历小时合计
  458. double fs = 0.0;//风机平均风速
  459. double sbklyl = 0.0;//风机平均设备可利用率
  460. double dxklyxs = 0.0;//风机平均等效可利用系数
  461. double lyxs = 0.0;//风机平均利用小时
  462. double yxfss = 0.0;//风机平均有效风时速
  463. double glyzxxs = 0.0;//风机平均功率一致性系数
  464. double xfqr = 0.0;//风机小风切入
  465. double xfqrhgl = 0.0;//风机小风切入合格率
  466. int xfqrnum = 0;
  467. int xfqrhglnum = 0;
  468. int fsnum = 0;
  469. int sbklylnum = 0;
  470. int dxklyxsnum = 0;
  471. int lyxsnum = 0;
  472. int yxfssnum = 0;
  473. int glyzxxsnum = 0;
  474. for (SingleAnalysisVo wtd : vos) {
  475. double temp = null != wtd.getFdl() ? wtd.getFdl() : 0.0;//风机发电量合计
  476. fdl = fdl + temp;
  477. temp = null != wtd.getYxxs() ? wtd.getYxxs() : 0.0;//风机运行小时合计
  478. yxxs = yxxs + temp;
  479. temp = null != wtd.getGzxs() ? wtd.getGzxs() : 0.0;//风机故障小时合计
  480. gzxs = gzxs + temp;
  481. temp = null != wtd.getJxxs() ? wtd.getJxxs() : 0.0;//风机检修小时合计
  482. jxxs = jxxs + temp;
  483. temp = null != wtd.getTjxs() ? wtd.getTjxs() : 0.0;//风机停机小时合计
  484. tjxs = tjxs + temp;
  485. temp = null != wtd.getZdxs() ? wtd.getZdxs() : 0.0;//风机中断小时合计
  486. zdxs = zdxs + temp;
  487. temp = null != wtd.getRlxs() ? wtd.getRlxs() : 0.0;//风机日历小时合计
  488. rlxs = rlxs + temp;
  489. temp = null != wtd.getFs() ? wtd.getFs() : 0.0;//风机平均风速
  490. fs = fs + temp;
  491. if (StringUtils.notEmp(wtd.getFs())) {
  492. fsnum++;
  493. }
  494. temp = null != wtd.getSbklyl() ? wtd.getSbklyl() : 0.0;//风机平均设备可利用率
  495. sbklyl = sbklyl + temp;
  496. if (StringUtils.notEmp(wtd.getSbklyl())) {
  497. sbklylnum++;
  498. }
  499. temp = null != wtd.getDxklyxs() ? wtd.getDxklyxs() : 0.0;//风机平均等效可利用系数
  500. dxklyxs = dxklyxs + temp;
  501. if (StringUtils.notEmp(wtd.getDxklyxs())) {
  502. dxklyxsnum++;
  503. }
  504. temp = null != wtd.getLyxs() ? wtd.getLyxs() : 0.0;//风机平均利用小时
  505. lyxs = lyxs + temp;
  506. if (StringUtils.notEmp(wtd.getLyxs())) {
  507. lyxsnum++;
  508. }
  509. temp = null != wtd.getYxfss() ? wtd.getYxfss() : 0.0;//风机平均有效风时速
  510. yxfss = yxfss + temp;
  511. if (StringUtils.notEmp(wtd.getYxfss())) {
  512. yxfssnum++;
  513. }
  514. temp = null != wtd.getGlyzxxs() ? wtd.getGlyzxxs() : 0.0;//风机平均功率一致性系数
  515. glyzxxs = glyzxxs + temp;
  516. if (StringUtils.notEmp(wtd.getGlyzxxs())) {
  517. glyzxxsnum++;
  518. }
  519. temp = null != wtd.getXfqr() ? wtd.getXfqr() : 0.0;//风机小风切入
  520. xfqr = xfqr + temp;
  521. if (StringUtils.notEmp(wtd.getXfqr())) {
  522. xfqrnum++;
  523. }
  524. temp = null != wtd.getXfqrhgl() ? wtd.getXfqrhgl() : 0.0;//风机小风切入合格率
  525. xfqrhgl = xfqrhgl + temp;
  526. if (StringUtils.notEmp(wtd.getXfqrhgl())) {
  527. xfqrhglnum++;
  528. }
  529. }
  530. if (fsnum != 0) {
  531. double temp = new BigDecimal(fs).divide(new BigDecimal(fsnum), 2, RoundingMode.HALF_UP).doubleValue();
  532. vo.setFs(temp);
  533. }
  534. if (sbklylnum != 0) {
  535. double temp = new BigDecimal(sbklyl).divide(new BigDecimal(sbklylnum), 2, RoundingMode.HALF_UP).doubleValue();
  536. vo.setSbklyl(temp);
  537. }
  538. if (dxklyxsnum != 0) {
  539. double temp = new BigDecimal(dxklyxs).divide(new BigDecimal(dxklyxsnum), 2, RoundingMode.HALF_UP).doubleValue();
  540. vo.setDxklyxs(temp);
  541. }
  542. if (lyxsnum != 0) {
  543. double temp = new BigDecimal(lyxs).divide(new BigDecimal(lyxsnum), 2, RoundingMode.HALF_UP).doubleValue();
  544. vo.setLyxs(temp);
  545. }
  546. if (yxfssnum != 0) {
  547. double temp = new BigDecimal(yxfss).divide(new BigDecimal(yxfssnum), 2, RoundingMode.HALF_UP).doubleValue();
  548. vo.setYxfss(temp);
  549. }
  550. if (glyzxxsnum != 0) {
  551. double temp = new BigDecimal(glyzxxs).divide(new BigDecimal(glyzxxsnum), 2, RoundingMode.HALF_UP).doubleValue();
  552. vo.setGlyzxxs(temp);
  553. }
  554. vo.setFdl(StringUtils.round(fdl, 2));
  555. vo.setYxxs(StringUtils.round(yxxs, 2));
  556. vo.setGzxs(StringUtils.round(gzxs, 2));
  557. vo.setJxxs(StringUtils.round(jxxs, 2));
  558. vo.setTjxs(StringUtils.round(tjxs, 2));
  559. vo.setZdxs(StringUtils.round(zdxs, 2));
  560. vo.setRlxs(StringUtils.round(rlxs, 2));
  561. vo.setFs(StringUtils.round(fs, 2));
  562. vo.setSbklyl(StringUtils.round(sbklyl, 2));
  563. vo.setDxklyxs(StringUtils.round(dxklyxs, 2));
  564. vo.setLyxs(StringUtils.round(lyxs, 2));
  565. vo.setYxxs(StringUtils.round(yxfss, 2));
  566. vo.setGlyzxxs(StringUtils.round(glyzxxs, 2));
  567. double gzss = vos.stream().filter(i -> i.getGzss() != null).mapToDouble(SingleAnalysisVo::getGzss).sum();//风机故障损失合计
  568. double jxss = vos.stream().filter(i -> i.getJxss() != null).mapToDouble(SingleAnalysisVo::getJxss).sum();//风机检修损失合计
  569. double xdss = vos.stream().filter(i -> i.getXdss() != null).mapToDouble(SingleAnalysisVo::getXdss).sum();//风机限电损失合计
  570. double xnss = vos.stream().filter(i -> i.getXnss() != null).mapToDouble(SingleAnalysisVo::getXnss).sum();//风机性能损失时合计
  571. double slss = vos.stream().filter(i -> i.getSlss() != null).mapToDouble(SingleAnalysisVo::getSlss).sum();//风机受累损失合计
  572. double llfdl = fdl + gzss + jxss + xdss + xnss + slss;
  573. vo.setGzss(StringUtils.round(gzss, 2));
  574. vo.setJxss(StringUtils.round(jxss, 2));
  575. vo.setXdss(StringUtils.round(xdss, 2));
  576. vo.setXnss(StringUtils.round(xnss, 2));
  577. vo.setSlss(StringUtils.round(slss, 2));
  578. vo.setLlfdl(StringUtils.round(llfdl, 2));
  579. if (xfqrnum != 0) {
  580. double temp = new BigDecimal(xfqr).divide(new BigDecimal(xfqrnum), 2, RoundingMode.HALF_UP).doubleValue();
  581. vo.setXfqr(temp);
  582. }
  583. if (xfqrhglnum != 0) {
  584. double temp = new BigDecimal(xfqrhgl).divide(new BigDecimal(xfqrhglnum), 2, RoundingMode.HALF_UP).doubleValue();
  585. vo.setXfqrhgl(temp);
  586. }
  587. vos.add(vo);
  588. }
  589. }
  590. //总数
  591. int total = vos.size();
  592. //总页数
  593. int pageSum = total % pageSize == 0 ? total / pageSize : total / pageSize + 1;
  594. //分页
  595. List<SingleAnalysisVo> subList = vos.stream().skip((pageNum - 1) * pageSize).limit(pageSize).
  596. collect(Collectors.toList());
  597. Map<String, Object> map = new HashMap<>();
  598. map.put("total", vos.size());
  599. map.put("pageSum", pageSum);
  600. map.put("values", subList);
  601. // PageHelper.startPage(pageNum, pageSize);
  602. // PageInfo<SingleAnalysisVo> pageInfo = new PageInfo<SingleAnalysisVo>(vos);
  603. // return pageInfo.getList();
  604. return map;
  605. }
  606. public SingleAnalysisVo SingleAnalysisListByWtId(String wtId, Date recordDate) {
  607. SingleAnalysisVo vo = new SingleAnalysisVo();
  608. vo.setSwdl(0.0);
  609. vo.setGwdl(0.0);
  610. vo.setGzss(0.0);
  611. vo.setJxss(0.0);
  612. vo.setXdss(0.0);
  613. vo.setXnss(0.0);
  614. vo.setSlss(0.0);
  615. vo.setLlfdl(0.0);
  616. vo.setFdl(0.0);
  617. vo.setRlxs(0.0);
  618. vo.setFs(0.0);
  619. vo.setYxxs(0.0);
  620. vo.setDxklyxs(0.0);
  621. vo.setSbklyl(0.0);
  622. vo.setGzxs(0.0);
  623. vo.setJxxs(0.0);
  624. vo.setTjxs(0.0);
  625. vo.setZdxs(0.0);
  626. vo.setJfpl(0.0);
  627. vo.setXfqr(0.0);
  628. vo.setXfqrhgl(0.0);
  629. vo.setLyxs(0.0);
  630. vo.setYxfss(0.0);
  631. vo.setGlyzxxs(0.0);
  632. if (StringUtils.notEmp(wtId) && StringUtils.notEmp(recordDate) && CacheContext.wtmap.containsKey(wtId)) {
  633. ProBasicEquipment wt = CacheContext.wtmap.get(wtId);
  634. vo.setWindPowerStationId(wt.getWindpowerstationId());
  635. ProBasicPowerstation wp = CacheContext.wpmap.get(wt.getWindpowerstationId());
  636. vo.setWindPowerStationName(wp.getName());
  637. vo.setWindturbineName(wt.getName());
  638. if (CacheContext.modelMap.containsKey(wt.getModelId())) {
  639. ProEconEquipmentmodel model = CacheContext.modelMap.get(wt.getModelId());
  640. vo.setFjrl(model.getPowerProduction());
  641. }
  642. vo.setWindturbineid(wt.getId());
  643. Map<String, ProEconInOrOutSpeedTotal> iostmap = queryInOrOutSpeedTotalByWt(wtId, recordDate);
  644. Map<String, ProEconEquipmentInfoDay1> eqday1map = queryEquipmentInfoDay1ByWt(wtId, recordDate);
  645. Map<String, ProEconEquipmentInfoDay2> eqday2map = queryEquipmentInfoDay2ByWt(wtId, recordDate);
  646. Map<String, ProEconEquipmentInfoDay4> eqday4map = queryEquipmentInfoDay4ByWt(wtId, recordDate);
  647. Map<String, ProEconPowerstationInfoDay5> pwday5map = queryPowerstationInfoDay5(wt.getWindpowerstationId(), recordDate);
  648. String wpId = CacheContext.wtmap.get(wtId).getWindpowerstationId();
  649. if (iostmap.isEmpty() && eqday1map.isEmpty() && eqday2map.isEmpty() && pwday5map.isEmpty() && pwday5map.isEmpty()) {
  650. return vo;
  651. }
  652. if (pwday5map.containsKey(wpId)) {
  653. ProEconPowerstationInfoDay5 day5 = pwday5map.get(wpId);
  654. double swdl = day5.getYswdldb().doubleValue();//风场上网电量合计
  655. double gwdl = day5.getYgwgwdldb().doubleValue() + day5.getYnwgwdldb().doubleValue();//风场购网电量合计
  656. vo.setSwdl(StringUtils.round(swdl, 2));
  657. vo.setGwdl(StringUtils.round(gwdl, 2));
  658. }
  659. Calendar c = Calendar.getInstance();
  660. c.setTime(recordDate);
  661. int dayTimes = c.get(Calendar.DAY_OF_MONTH) * 24;//风机日历小时合计
  662. double fdl = 0;
  663. if (eqday1map.containsKey(wt.getId())) {
  664. ProEconEquipmentInfoDay1 wtd = eqday1map.get(wt.getId());
  665. fdl = null != wtd.getYfdl() ? wtd.getYfdl() : 0.0;//风机发电量合计
  666. fdl = new BigDecimal(fdl).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  667. double fs = null != wtd.getYpjfs() ? wtd.getYpjfs() : 0.0;//风机平均风速
  668. double gzss = null != wtd.getYgzssdl() ? wtd.getYgzssdl() : 0.0;//风机故障损失合计
  669. gzss = new BigDecimal(gzss).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  670. double jxss = null != wtd.getYjxssdl() ? wtd.getYjxssdl() : 0.0;//风机检修损失合计
  671. jxss = new BigDecimal(jxss).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  672. double xdss = null != wtd.getYxdtjssdl() ? wtd.getYxdtjssdl() : 0.0;//风机限电损失合计
  673. xdss = new BigDecimal(xdss).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  674. double xnss = null != wtd.getYxnssdl() ? wtd.getYxnssdl() : 0.0;//风机性能损失时合计
  675. xnss = new BigDecimal(xnss).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  676. double ycwsldwssdl = null != wtd.getYcwsldwssdl() ? wtd.getYcwsldwssdl() : 0.0;//场外受累电网损失电量
  677. ycwsldwssdl = new BigDecimal(ycwsldwssdl).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  678. double ycwsltqssdl = null != wtd.getYcwsltqssdl() ? wtd.getYcwsldwssdl() : 0.0;//场外受累天气损失电量
  679. ycwsltqssdl = new BigDecimal(ycwsltqssdl).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  680. double slss = StringUtils.round(ycwsldwssdl + ycwsltqssdl, 2);
  681. double llfdl = fdl + gzss + jxss + xdss + xnss + slss; //理论发电量
  682. vo.setGzss(StringUtils.round(gzss, 2));
  683. vo.setJxss(StringUtils.round(jxss, 2));
  684. vo.setXdss(StringUtils.round(xdss, 2));
  685. vo.setXnss(StringUtils.round(xnss, 2));
  686. vo.setSlss(StringUtils.round(xnss, 2));
  687. vo.setLlfdl(StringUtils.round(llfdl, 2));
  688. double powerProduction = 0;
  689. if (CacheContext.modelMap.containsKey(wt.getModelId())) {
  690. ProEconEquipmentmodel model = CacheContext.modelMap.get(wt.getModelId());
  691. powerProduction = model.getPowerProduction();
  692. }
  693. double lyxs = 0.0;
  694. if (powerProduction != 0) {
  695. lyxs = new BigDecimal(wtd.getYfdl()).divide(new BigDecimal(powerProduction), 2, RoundingMode.HALF_EVEN).doubleValue();//风机平均利用小时
  696. }
  697. vo.setFdl(StringUtils.round(fdl, 2));
  698. vo.setRlxs(StringUtils.round(dayTimes, 2));
  699. vo.setFs(StringUtils.round(fs, 2));
  700. vo.setLyxs(StringUtils.round(lyxs, 2));
  701. }
  702. // vo.setYxfss(StringUtils.round(dayTimes, 2));
  703. if (eqday2map.containsKey(wt.getId())) {
  704. ProEconEquipmentInfoDay2 wtd = eqday2map.get(wt.getId());
  705. double yxxs = null != wtd.getYyxxs() ? wtd.getYyxxs() : 0.0;//风机运行小时合计
  706. double gzxs = null != wtd.getYgztjxs() ? wtd.getYgztjxs() : 0.0;//风机故障小时合计
  707. double jxxs = null != wtd.getYjxtjxs() ? wtd.getYjxtjxs() : 0.0;//风机检修小时合计
  708. double djxs = null != wtd.getYdjxs() ? wtd.getYdjxs() : 0.0;//风机待机小时合计
  709. double tjxs = null != wtd.getYxdxs() ? wtd.getYxdxs() : 0.0;//风限电小时合计
  710. double zdxs = null != wtd.getYtxzdxs() ? wtd.getYtxzdxs() : 0.0;//风机中断小时合计
  711. double sbklyl = new BigDecimal(dayTimes - gzxs).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//风机平均设备可利用率
  712. double dxklyxs = new BigDecimal(dayTimes - gzxs - jxxs).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//风机平均等效可利用系数
  713. double yxfss = dayTimes - gzxs - jxxs;//风机平均有效风
  714. // System.out.println(yxfss);
  715. vo.setYxfss(StringUtils.round(yxfss, 2));
  716. vo.setDxklyxs(StringUtils.round(dxklyxs, 2));
  717. vo.setSbklyl(StringUtils.round(sbklyl, 2));
  718. vo.setYxxs(StringUtils.round(yxxs, 2));
  719. vo.setGzxs(StringUtils.round(gzxs, 2));
  720. vo.setJxxs(StringUtils.round(jxxs, 2));
  721. vo.setTjxs(StringUtils.round(tjxs, 2));
  722. vo.setZdxs(StringUtils.round(zdxs, 2));
  723. vo.setDjxs(StringUtils.round(djxs, 2));
  724. }
  725. if (eqday4map.containsKey(wt.getId())) {
  726. ProEconEquipmentInfoDay4 wtd = eqday4map.get(wt.getId());
  727. double glyzxxs = null != wtd.getYglyzxxs() ? wtd.getYglyzxxs() : 0.0;//风机平均功率一致性系数
  728. vo.setGlyzxxs(StringUtils.round(glyzxxs, 2));
  729. double jfsc = null != wtd.getYjfsc() ? wtd.getYjfsc() : 0.0;//静风时长
  730. double jfpl = new BigDecimal(jfsc).divide(new BigDecimal(dayTimes), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//静风频率
  731. vo.setJfpl(jfpl);
  732. }
  733. if (iostmap.containsKey(wt.getId())) {
  734. ProEconInOrOutSpeedTotal wtd = iostmap.get(wt.getId());
  735. double xfqr = null != wtd.getMonthInputSmall() ? wtd.getMonthInputSmall() : 0.0;//风机小风切入
  736. double xfqrhgl = null != wtd.getMonthInputSmallRatio() ? wtd.getMonthInputSmallRatio() : 0.0;//风机小风切入合格率
  737. vo.setXfqr(StringUtils.round(xfqr, 2));
  738. vo.setXfqrhgl(StringUtils.round(xfqrhgl, 2));
  739. }
  740. }
  741. return vo;
  742. }
  743. public Map<String, List<SingleAnalysisVo>> SingleAnalysisListByWtIdDetiml(String wtId, Date beginDate, Date endDate) {
  744. Map<String, List<SingleAnalysisVo>> map = new HashMap<>();
  745. List<SingleAnalysisVo> fdlfsls = new ArrayList<>();
  746. List<SingleAnalysisVo> wsls = new ArrayList<>();
  747. List<SingleAnalysisVo> jfpldjsjls = new ArrayList<>();
  748. if (StringUtils.notEmp(wtId) && StringUtils.notEmp(beginDate) && StringUtils.notEmp(endDate)) {
  749. Map<String, Map<Long, ProEconEquipmentInfoDay1>> day1map = new HashMap<>();
  750. Map<String, Map<Long, ProEconEquipmentInfoDay2>> day2map = new HashMap<>();
  751. QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
  752. queryWrapper.eq("windturbine_id", wtId).ge("record_date", beginDate)
  753. .le("record_date", endDate);
  754. List<ProEconEquipmentInfoDay1> wtday1ls = proEconEquipmentInfoDay1Service.list(queryWrapper);
  755. // .stream().filter(i->i.getWindturbineId() !=null && i.getWindturbineId().equals(wtId)
  756. // && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
  757. // && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
  758. // )
  759. // .collect(Collectors.toList());
  760. if (!wtday1ls.isEmpty()) {
  761. for (ProEconEquipmentInfoDay1 wtday1 : wtday1ls) {
  762. if (day1map.containsKey(wtday1.getWindturbineId())) {
  763. Map<Long, ProEconEquipmentInfoDay1> tempmap = day1map.get(wtday1.getWindturbineId());
  764. tempmap.put(wtday1.getRecordDate().getTime(), wtday1);
  765. day1map.put(wtId, tempmap);
  766. } else {
  767. Map<Long, ProEconEquipmentInfoDay1> tempmap = new HashMap<>();
  768. tempmap.put(wtday1.getRecordDate().getTime(), wtday1);
  769. day1map.put(wtId, tempmap);
  770. }
  771. }
  772. }
  773. QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper2 = new QueryWrapper<>();
  774. queryWrapper2.eq("windturbine_id", wtId).ge("record_date", beginDate)
  775. .le("record_date", endDate);
  776. List<ProEconEquipmentInfoDay2> wtday2ls = proEconEquipmentInfoDay2Service.list(queryWrapper2);
  777. // .stream().filter(i->i.getWindturbineId().equals(wtId)
  778. // && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
  779. // && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
  780. // )
  781. // .collect(Collectors.toList());
  782. if (!wtday2ls.isEmpty()) {
  783. for (ProEconEquipmentInfoDay2 wtday2 : wtday2ls) {
  784. if (day2map.containsKey(wtday2.getWindturbineId())) {
  785. Map<Long, ProEconEquipmentInfoDay2> tempmap = day2map.get(wtday2.getWindturbineId());
  786. tempmap.put(wtday2.getRecordDate().getTime(), wtday2);
  787. day2map.put(wtId, tempmap);
  788. } else {
  789. Map<Long, ProEconEquipmentInfoDay2> tempmap = new HashMap<>();
  790. tempmap.put(wtday2.getRecordDate().getTime(), wtday2);
  791. day2map.put(wtId, tempmap);
  792. }
  793. }
  794. }
  795. QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper4 = new QueryWrapper<>();
  796. queryWrapper4.eq("windturbine_id", wtId).ge("record_date", beginDate)
  797. .le("record_date", endDate);
  798. List<ProEconEquipmentInfoDay4> wtday4ls = proEconEquipmentInfoDay4Service.list(queryWrapper4);
  799. // .stream().filter(i->i.getWindturbineId().equals(wtId)
  800. // && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
  801. // && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
  802. // )
  803. // .collect(Collectors.toList());
  804. ProBasicEquipment wt = CacheContext.wtmap.get(wtId);
  805. ProBasicPowerstation wp = CacheContext.wpmap.get(wt.getWindpowerstationId());
  806. if (StringUtils.notEmp(wtday2ls) && !wtday2ls.isEmpty()) {
  807. for (ProEconEquipmentInfoDay2 wtd : wtday2ls) {
  808. SingleAnalysisVo vo = new SingleAnalysisVo();
  809. Calendar c = Calendar.getInstance();
  810. c.setTime(wtd.getRecordDate());
  811. int dayTimes = 24;//风机日历小时合计
  812. if (day1map.containsKey(wtd.getWindturbineId())) {
  813. Map<Long, ProEconEquipmentInfoDay1> map1 = day1map.get(wtd.getWindturbineId());
  814. if (map1.containsKey(wtd.getRecordDate().getTime())) {
  815. ProEconEquipmentInfoDay1 daypo = map1.get(wtd.getRecordDate().getTime());
  816. double fdl = null != daypo.getRfdl() ? daypo.getRfdl() : 0.0;//风机发电量合计
  817. if (CacheContext.modelMap.containsKey(wt.getModelId())) {
  818. ProEconEquipmentmodel model = CacheContext.modelMap.get(wt.getModelId());
  819. double lyxs = new BigDecimal(fdl).divide(new BigDecimal(model.getPowerProduction()), 2, RoundingMode.HALF_UP).doubleValue();
  820. vo.setLyxs(lyxs);
  821. }
  822. fdl = new BigDecimal(fdl).divide(new BigDecimal(10000), 2, RoundingMode.HALF_UP).doubleValue();
  823. double fs = null != daypo.getRpjfs() ? daypo.getRpjfs() : 0.0;//风机平均风速
  824. vo.setFdl(StringUtils.round(fdl, 2));
  825. vo.setFs(StringUtils.round(fs, 2));
  826. }
  827. }
  828. double yxxs = null != wtd.getRyxxs() ? wtd.getRyxxs() : 0.0;//风机运行小时合计
  829. double gzxs = null != wtd.getRgztjxs() ? wtd.getRgztjxs() : 0.0;//风机故障小时合计
  830. double jxxs = null != wtd.getRjxtjxs() ? wtd.getRjxtjxs() : 0.0;//风机检修小时合计
  831. double tjxs = null != wtd.getRxdxs() ? wtd.getRxdxs() : 0.0;//风限电小时合计
  832. double zdxs = null != wtd.getRtxzdxs() ? wtd.getRtxzdxs() : 0.0;//风机中断小时合计
  833. vo.setWindPowerStationId(wt.getWindpowerstationId());
  834. vo.setWindPowerStationName(wp.getName());
  835. vo.setWindturbineName(wt.getName());
  836. vo.setWindturbineid(wt.getId());
  837. vo.setRecorddate(wtd.getRecordDate());
  838. vo.setYxxs(StringUtils.round(yxxs, 2));
  839. vo.setGzxs(StringUtils.round(gzxs, 2));
  840. vo.setJxxs(StringUtils.round(jxxs, 2));
  841. vo.setTjxs(StringUtils.round(tjxs, 2));
  842. vo.setZdxs(StringUtils.round(zdxs, 2));
  843. vo.setRlxs(StringUtils.round(dayTimes, 2));
  844. fdlfsls.add(vo);
  845. }
  846. }
  847. if (StringUtils.notEmp(wtday1ls) && !wtday1ls.isEmpty()) {
  848. for (ProEconEquipmentInfoDay1 wtd : wtday1ls) {
  849. SingleAnalysisVo vo = new SingleAnalysisVo();
  850. double gzss = null != wtd.getRgzssdl() ? wtd.getRgzssdl() : 0.0;//风机故障损失合计
  851. double jxss = null != wtd.getRjxssdl() ? wtd.getRjxssdl() : 0.0;//风机检修损失合计
  852. double xdss = null != wtd.getRxdtjssdl() ? wtd.getRxdtjssdl() : 0.0;//风机限电损失合计
  853. double xnss = null != wtd.getRxnssdl() ? wtd.getRxnssdl() : 0.0;//风机性能损失时合计
  854. double ycwsldwssdl = null != wtd.getRcwsldwssdl() ? wtd.getRcwsldwssdl() : 0.0;//场外受累电网损失电量
  855. double ycwsltqssdl = null != wtd.getRcwsltqssdl() ? wtd.getRcwsldwssdl() : 0.0;//场外受累天气损失电量
  856. double slss = StringUtils.round(ycwsldwssdl + ycwsltqssdl, 2);
  857. vo.setWindPowerStationId(wt.getWindpowerstationId());
  858. vo.setWindPowerStationName(wp.getName());
  859. vo.setWindturbineName(wt.getName());
  860. vo.setWindturbineid(wt.getId());
  861. vo.setRecorddate(wtd.getRecordDate());
  862. vo.setGzss(StringUtils.round(gzss, 2));
  863. vo.setJxss(StringUtils.round(jxss, 2));
  864. vo.setXdss(StringUtils.round(xdss, 2));
  865. vo.setXnss(StringUtils.round(xnss, 2));
  866. vo.setSlss(StringUtils.round(slss, 2));
  867. wsls.add(vo);
  868. }
  869. }
  870. if (StringUtils.notEmp(wtday4ls) && !wtday4ls.isEmpty()) {
  871. for (ProEconEquipmentInfoDay4 wtd : wtday4ls) {
  872. SingleAnalysisVo vo = new SingleAnalysisVo();
  873. vo.setRecorddate(wtd.getRecordDate());
  874. double jfsc = null != wtd.getRjfsc() ? wtd.getRjfsc() : 0.0;//静风时长
  875. double jfpl = new BigDecimal(jfsc).divide(new BigDecimal(24), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue();//静风频率
  876. vo.setJfpl(StringUtils.round(jfpl, 2));
  877. if (day2map.containsKey(wtd.getWindturbineId())) {
  878. Map<Long, ProEconEquipmentInfoDay2> map2 = day2map.get(wtd.getWindturbineId());
  879. if (map2.containsKey(wtd.getRecordDate().getTime())) {
  880. ProEconEquipmentInfoDay2 daypo = map2.get(wtd.getRecordDate().getTime());
  881. vo.setTjxs(daypo.getRdjxsmx());
  882. }
  883. }
  884. vo.setWindPowerStationId(wt.getWindpowerstationId());
  885. vo.setWindPowerStationName(wp.getName());
  886. vo.setWindturbineName(wt.getName());
  887. vo.setWindturbineid(wt.getId());
  888. jfpldjsjls.add(vo);
  889. }
  890. }
  891. map.put("ff", fdlfsls);//发电量和风速
  892. map.put("ws", wsls);//五项损失,绑定五个
  893. map.put("jd", jfpldjsjls);//静风频率和待机时间
  894. }
  895. return map;
  896. }
  897. public SingleAnalysisVo SingleAnalysisListByWtId(SingleAnalysisVo vo1, SingleAnalysisVo vo2) {
  898. SingleAnalysisVo vo = new SingleAnalysisVo();
  899. vo.setWindturbineName(vo1.getWindturbineName());
  900. vo.setWindturbineid(vo1.getWindturbineid());
  901. vo.setWindPowerStationName(vo1.getWindPowerStationName());
  902. vo.setWindPowerStationId(vo1.getWindPowerStationId());
  903. vo.setFdl(0.0);
  904. vo.setYxxs(0.0);
  905. vo.setGzxs(0.0);
  906. vo.setJxxs(0.0);
  907. vo.setTjxs(0.0);
  908. vo.setZdxs(0.0);
  909. vo.setRlxs(0.0);
  910. vo.setFs(0.0);
  911. vo.setSbklyl(0.0);
  912. vo.setDxklyxs(0.0);
  913. vo.setLyxs(0.0);
  914. vo.setYxfss(0.0);
  915. vo.setGzss(0.0);
  916. vo.setJxss(0.0);
  917. vo.setXdss(0.0);
  918. vo.setXnss(0.0);
  919. vo.setSlss(0.0);
  920. vo.setXfqr(0.0);
  921. vo.setXfqrhgl(0.0);
  922. vo.setJfpl(0.0);
  923. vo.setLlfdl(0.0);
  924. vo.setGlyzxxs(0.0);
  925. if (StringUtils.notEmp(vo1) && StringUtils.notEmp(vo2) && vo2.getFdl() != 0 && vo2.getFs() != 0) {
  926. vo.setWindturbineName(vo1.getWindturbineName());
  927. vo.setWindturbineid(vo1.getWindturbineid());
  928. vo.setWindPowerStationName(vo1.getWindPowerStationName());
  929. vo.setWindPowerStationId(vo1.getWindPowerStationId());
  930. double fdl = 0.0;//风机发电量
  931. double yxxs = 0.0;//风机运行小时合计
  932. double gzxs = 0.0;//风机故障小时合计
  933. double jxxs = 0.0;//风机检修小时合计
  934. double tjxs = 0.0;//风机停机小时合计
  935. double zdxs = 0.0;//风机中断小时合计
  936. double rlxs = 0.0;//风机日历小时合计
  937. double fs = 0.0;//风机平均风速
  938. double sbklyl = 0.0;//风机平均设备可利用率
  939. double dxklyxs = 0.0;//风机平均等效可利用系数
  940. double lyxs = 0.0;//风机平均利用小时
  941. double yxfss = 0.0;//风机平均有效风时速
  942. double glyzxxs = 0.0;//风机平均功率一致性系数
  943. double gzss = 0.0;//风机故障损失合计
  944. double jxss = 0.0;//风机检修损失合计
  945. double xdss = 0.0;//风机限电损失合计
  946. double xnss = 0.0;//风机性能损失时合计
  947. double slss = 0.0;//风机受累损失合计
  948. double xfqr = 0.0;//风机小风切入
  949. double xfqrhgl = 0.0;//风机小风切入合格率
  950. double jfpl = 0.0;//风机小风切入
  951. if (vo2.getFdl() != 0) {
  952. fdl = new BigDecimal(vo1.getFdl()).divide(new BigDecimal(vo2.getFdl()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1))
  953. .multiply(new BigDecimal(100)).doubleValue();//风机发电量合计
  954. } else {
  955. fdl = new BigDecimal(vo1.getFdl()).multiply(new BigDecimal(100)).doubleValue();//风机发电量合计
  956. }
  957. if (vo2.getYxxs() != 0) {
  958. yxxs = new BigDecimal(vo1.getYxxs()).divide(new BigDecimal(vo2.getYxxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1))
  959. .multiply(new BigDecimal(100)).doubleValue();//风机运行小时合计
  960. } else {
  961. yxxs = new BigDecimal(vo1.getYxxs()).multiply(new BigDecimal(100)).doubleValue();//风机运行小时合计
  962. }
  963. if (vo2.getGzxs() != 0) {
  964. gzxs = new BigDecimal(vo1.getGzxs()).divide(new BigDecimal(vo2.getGzxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机故障小时合计
  965. } else {
  966. gzxs = new BigDecimal(vo1.getGzxs()).multiply(new BigDecimal(100)).doubleValue();//风机故障小时合计
  967. }
  968. if (vo2.getJxxs() != 0) {
  969. jxxs = new BigDecimal(vo1.getJxxs()).divide(new BigDecimal(vo2.getJxxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机检修小时合计
  970. } else {
  971. jxxs = new BigDecimal(vo1.getJxxs()).multiply(new BigDecimal(100)).doubleValue();//风机检修小时合计
  972. }
  973. if (vo2.getTjxs() != 0) {
  974. tjxs = new BigDecimal(vo1.getTjxs()).divide(new BigDecimal(vo2.getTjxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机停机小时合计
  975. } else {
  976. tjxs = new BigDecimal(vo1.getTjxs()).multiply(new BigDecimal(100)).doubleValue();//风机停机小时合计
  977. }
  978. if (vo2.getZdxs() != 0) {
  979. zdxs = new BigDecimal(vo1.getZdxs()).divide(new BigDecimal(vo2.getZdxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机中断小时合计
  980. } else {
  981. zdxs = new BigDecimal(vo1.getZdxs()).multiply(new BigDecimal(100)).doubleValue();//风机中断小时合计
  982. }
  983. if (vo2.getRlxs() != 0) {
  984. rlxs = new BigDecimal(vo1.getRlxs()).divide(new BigDecimal(vo2.getRlxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机日历小时合计
  985. } else {
  986. rlxs = new BigDecimal(vo1.getRlxs()).multiply(new BigDecimal(100)).doubleValue();//风机日历小时合计
  987. }
  988. if (vo2.getFs() != 0) {
  989. fs = new BigDecimal(vo1.getFs()).divide(new BigDecimal(vo2.getFs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机平均风速
  990. } else {
  991. fs = new BigDecimal(vo1.getFs()).multiply(new BigDecimal(100)).doubleValue();//风机平均风速
  992. }
  993. if (vo2.getSbklyl() != 0) {
  994. sbklyl = new BigDecimal(vo1.getSbklyl()).divide(new BigDecimal(vo2.getSbklyl()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机平均设备可利用率
  995. } else {
  996. sbklyl = new BigDecimal(vo1.getSbklyl()).multiply(new BigDecimal(100)).doubleValue();//风机平均设备可利用率
  997. }
  998. if (vo2.getDxklyxs() != 0) {
  999. dxklyxs = new BigDecimal(vo1.getDxklyxs()).divide(new BigDecimal(vo2.getDxklyxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机平均等效可利用系数
  1000. } else {
  1001. dxklyxs = new BigDecimal(vo1.getDxklyxs()).multiply(new BigDecimal(100)).doubleValue();//风机平均等效可利用系数
  1002. }
  1003. if (vo2.getLyxs() != 0) {
  1004. lyxs = new BigDecimal(vo1.getLyxs()).divide(new BigDecimal(vo2.getLyxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机平均利用小时
  1005. } else {
  1006. lyxs = new BigDecimal(vo1.getLyxs()).multiply(new BigDecimal(100)).doubleValue();//风机平均利用小时
  1007. }
  1008. if (vo2.getYxfss() != 0) {
  1009. yxfss = new BigDecimal(vo1.getYxfss()).divide(new BigDecimal(vo2.getYxfss()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机平均有效风时速
  1010. } else {
  1011. yxfss = new BigDecimal(vo1.getYxfss()).multiply(new BigDecimal(100)).doubleValue();//风机平均有效风时速
  1012. }
  1013. vo.setFdl(StringUtils.round(fdl, 2));
  1014. vo.setYxxs(StringUtils.round(yxxs, 2));
  1015. vo.setGzxs(StringUtils.round(gzxs, 2));
  1016. vo.setJxxs(StringUtils.round(jxxs, 2));
  1017. vo.setTjxs(StringUtils.round(tjxs, 2));
  1018. vo.setZdxs(StringUtils.round(zdxs, 2));
  1019. vo.setRlxs(StringUtils.round(rlxs, 2));
  1020. vo.setFs(StringUtils.round(fs, 2));
  1021. vo.setSbklyl(StringUtils.round(sbklyl, 2));
  1022. vo.setDxklyxs(StringUtils.round(dxklyxs, 2));
  1023. vo.setLyxs(StringUtils.round(lyxs, 2));
  1024. vo.setYxfss(StringUtils.round(yxfss, 2));
  1025. if (vo2.getGlyzxxs() != 0) {
  1026. glyzxxs = new BigDecimal(vo1.getGlyzxxs()).divide(new BigDecimal(vo2.getGlyzxxs()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机平均功率一致性系数
  1027. } else {
  1028. glyzxxs = new BigDecimal(vo1.getGlyzxxs()).multiply(new BigDecimal(100)).doubleValue();//风机平均功率一致性系数
  1029. }
  1030. vo.setGlyzxxs(StringUtils.round(glyzxxs, 2));
  1031. if (vo2.getGzss() != 0) {
  1032. gzss = new BigDecimal(vo1.getGzss()).divide(new BigDecimal(vo2.getGzss()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机故障损失合计
  1033. } else {
  1034. gzss = new BigDecimal(vo1.getGzss()).multiply(new BigDecimal(100)).doubleValue();//风机故障损失合计
  1035. }
  1036. if (vo2.getJxss() != 0) {
  1037. jxss = new BigDecimal(vo1.getJxss()).divide(new BigDecimal(vo2.getJxss()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机检修损失合计
  1038. } else {
  1039. jxss = new BigDecimal(vo1.getJxss()).multiply(new BigDecimal(100)).doubleValue();//风机检修损失合计
  1040. }
  1041. if (vo2.getXdss() != 0) {
  1042. xdss = new BigDecimal(vo1.getXdss()).divide(new BigDecimal(vo2.getXdss()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机限电损失合计
  1043. } else {
  1044. xdss = new BigDecimal(vo1.getXdss()).multiply(new BigDecimal(100)).doubleValue();//风机限电损失合计
  1045. }
  1046. if (vo2.getXnss() != 0) {
  1047. xnss = new BigDecimal(vo1.getXnss()).divide(new BigDecimal(vo2.getXnss()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机性能损失时合计
  1048. } else {
  1049. xnss = new BigDecimal(vo1.getXnss()).multiply(new BigDecimal(100)).doubleValue();//风机性能损失时合计
  1050. }
  1051. if (vo2.getSlss() != 0) {
  1052. slss = new BigDecimal(vo1.getSlss()).divide(new BigDecimal(vo2.getSlss()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机受累损失合计
  1053. } else {
  1054. slss = new BigDecimal(vo1.getSlss()).multiply(new BigDecimal(100)).doubleValue();//风机受累损失合计
  1055. }
  1056. double llfdl = fdl + gzss + jxss + xdss + xnss + slss;
  1057. vo.setGzss(StringUtils.round(gzss, 2));
  1058. vo.setJxss(StringUtils.round(jxss, 2));
  1059. vo.setXdss(StringUtils.round(xdss, 2));
  1060. vo.setXnss(StringUtils.round(xnss, 2));
  1061. vo.setSlss(StringUtils.round(slss, 2));
  1062. vo.setLlfdl(StringUtils.round(llfdl, 2));
  1063. if (vo2.getXfqr() != 0) {
  1064. xfqr = new BigDecimal(vo1.getXfqr()).divide(new BigDecimal(vo2.getXfqr()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机小风切入
  1065. } else {
  1066. xfqr = new BigDecimal(vo1.getXfqr()).multiply(new BigDecimal(100)).doubleValue();//风机小风切入
  1067. }
  1068. if (vo2.getXfqrhgl() != 0) {
  1069. xfqrhgl = new BigDecimal(vo1.getXfqrhgl()).divide(new BigDecimal(vo2.getXfqrhgl()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机小风切入合格率
  1070. } else {
  1071. xfqrhgl = new BigDecimal(vo1.getXfqrhgl()).multiply(new BigDecimal(100)).doubleValue();//风机小风切入合格率
  1072. }
  1073. vo.setXfqr(StringUtils.round(xfqr, 2));
  1074. vo.setXfqrhgl(StringUtils.round(xfqrhgl, 2));
  1075. if (vo2.getJfpl() != 0) {
  1076. jfpl = new BigDecimal(vo1.getJfpl()).divide(new BigDecimal(vo2.getJfpl()), 2, RoundingMode.HALF_UP).subtract(new BigDecimal(1)).multiply(new BigDecimal(100)).doubleValue();//风机小风切入
  1077. } else {
  1078. jfpl = new BigDecimal(vo1.getJfpl()).multiply(new BigDecimal(100)).doubleValue();//风机小风切入
  1079. }
  1080. vo.setJfpl(StringUtils.round(jfpl, 2));
  1081. }
  1082. return vo;
  1083. }
  1084. public SingleAnalysisVo SingleAnalysisTurbineinfoday(String wtId, String year, String month, SingleAnalysisVo byzb) {
  1085. String date = year + "-" + month;
  1086. QueryWrapper<TurbineInfoDay> qw = new QueryWrapper<>();
  1087. qw.lambda().eq(TurbineInfoDay::getTurbineId, wtId)
  1088. .apply("to_char(record_date,'YYYY-MM')='" + date + "'");
  1089. List<TurbineInfoDay> list = turbineInfoDayService.list(qw);
  1090. double rfdl = list.stream().mapToDouble(TurbineInfoDay::getRfdl).sum();
  1091. byzb.setFdl(NumberUtil.round(rfdl/1000,2).doubleValue());
  1092. double pjfs = list.stream().mapToDouble(TurbineInfoDay::getPjfs).average().orElse(0.0);
  1093. byzb.setFs(NumberUtil.round(pjfs,2).doubleValue());
  1094. double gzss = list.stream().mapToDouble(TurbineInfoDay::getGzss).sum();
  1095. byzb.setGzss(NumberUtil.round(gzss/1000,2).doubleValue());
  1096. double jhjxss = list.stream().mapToDouble(TurbineInfoDay::getJhjxss).sum();
  1097. byzb.setJxss(NumberUtil.round(jhjxss/1000,2).doubleValue());
  1098. double xdss = list.stream().mapToDouble(TurbineInfoDay::getXdss).sum();
  1099. byzb.setXdss(NumberUtil.round(xdss/1000,2).doubleValue());
  1100. double xnss = list.stream().mapToDouble(TurbineInfoDay::getXnss).sum();
  1101. byzb.setXnss(NumberUtil.round(xnss/1000,2).doubleValue());
  1102. double slss = list.stream().mapToDouble(TurbineInfoDay::getXnss).sum();
  1103. byzb.setSlss(NumberUtil.round(slss/1000,2).doubleValue());
  1104. double llfdl = list.stream().mapToDouble(TurbineInfoDay::getXnss).sum();
  1105. byzb.setLlfdl(NumberUtil.round(llfdl/1000,2).doubleValue());
  1106. double gzmin = list.stream().mapToDouble(TurbineInfoDay::getGzMin).sum();
  1107. byzb.setGzxs(NumberUtil.round(gzmin/60,2).doubleValue());
  1108. double jxmin = list.stream().mapToDouble(TurbineInfoDay::getJxMin).sum();
  1109. byzb.setJxxs(NumberUtil.round(jxmin/60,2).doubleValue());
  1110. double lxmin = list.stream().mapToDouble(TurbineInfoDay::getLxMin).sum();
  1111. byzb.setZdxs(NumberUtil.round(lxmin/60,2).doubleValue());
  1112. double yxmin = list.stream().mapToDouble(TurbineInfoDay::getYxMin).sum();
  1113. byzb.setYxxs(NumberUtil.round(yxmin/60,2).doubleValue());
  1114. double djmin = list.stream().mapToDouble(TurbineInfoDay::getDjMin).sum();
  1115. byzb.setDjxs(NumberUtil.round(djmin/60,2).doubleValue());
  1116. double sblyxs = list.stream().mapToDouble(TurbineInfoDay::getLyxs).sum();
  1117. byzb.setLyxs(NumberUtil.round(sblyxs,2).doubleValue());
  1118. double sbklyl = list.stream().mapToDouble(TurbineInfoDay::getKlyl).average().orElse(0.0);
  1119. byzb.setSbklyl(NumberUtil.round(sbklyl,2).doubleValue());
  1120. return byzb;
  1121. }
  1122. }