InputOrOutPut2Service.java 70 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508
  1. package com.gyee.generation.service;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.gyee.generation.init.CacheContext;
  4. import com.gyee.generation.model.auto.*;
  5. import com.gyee.generation.model.vo.WpType;
  6. import com.gyee.generation.service.auto.IProEconInOrOutSpeedTotal2Service;
  7. import com.gyee.generation.service.auto.IProEconInOrOutSpeedTotalService;
  8. import com.gyee.generation.service.auto.IProEconInputOrOutputSpeedService;
  9. import com.gyee.generation.task.thread.InputOrOutPutkThread;
  10. import com.gyee.generation.util.DateUtils;
  11. import com.gyee.generation.util.StringUtils;
  12. import com.gyee.generation.util.realtimesource.IEdosUtil;
  13. import org.springframework.beans.factory.annotation.Value;
  14. import org.springframework.stereotype.Service;
  15. import javax.annotation.Resource;
  16. import java.math.BigDecimal;
  17. import java.math.RoundingMode;
  18. import java.util.*;
  19. import java.util.concurrent.Executor;
  20. import java.util.stream.Collectors;
  21. @Service
  22. public class InputOrOutPut2Service {
  23. @Resource
  24. private IEdosUtil edosUtil;
  25. @Resource
  26. private IProEconInOrOutSpeedTotal2Service proEconInOrOutSpeedTotal2Service;
  27. @Resource
  28. private IProEconInOrOutSpeedTotalService proEconInOrOutSpeedTotalService;
  29. @Resource
  30. private IProEconInputOrOutputSpeedService proEconInputOrOutputSpeedService;
  31. @Resource
  32. private Executor executor;
  33. @Value("${frequency.cutinandout}")
  34. private Integer frequency;
  35. public void inputOrOutputSpeed(Date recordDate) throws Exception {
  36. Date begin = DateUtils.addMinutes(recordDate, -frequency);
  37. //
  38. // Date begin = DateUtils.addSeconds(recordDate, -frequency);
  39. Date end = recordDate;
  40. for (int i = 0; i < CacheContext.wtls.size(); i++) {
  41. {
  42. ProBasicEquipment wt = CacheContext.wtls.get(i);
  43. if (wt.getWindpowerstationId().contains(WpType.GDC.id)) {
  44. continue;
  45. }
  46. //
  47. // try {
  48. // Thread.sleep(100);
  49. // } catch (InterruptedException e1) {
  50. // e1.printStackTrace();
  51. // }
  52. new Thread(new InputOrOutPutkThread(executor, wt, begin, end,proEconInputOrOutputSpeedService, edosUtil)).start();
  53. }
  54. }
  55. }
  56. public void inputOrOutput(Date currentDate) {
  57. currentDate = DateUtils.truncate(currentDate);
  58. // Date end = DateUtils.addDays(currentDate, 1);
  59. // Date daybegin =DateUtils.truncate(currentDate);
  60. Date end = currentDate;
  61. Date daybegin = DateUtils.addDays(currentDate, -1);
  62. Calendar c = Calendar.getInstance();
  63. c.setTime(daybegin);
  64. c.set(Calendar.DAY_OF_MONTH, 1);
  65. Date monthbegin = c.getTime();
  66. c.set(Calendar.MONTH, 0);
  67. Date yearbegin = c.getTime();
  68. for (ProBasicPowerstation wp : CacheContext.wpls) {
  69. if(wp.getId().contains(WpType.GDC.id))
  70. {
  71. continue;
  72. }
  73. List<ProBasicEquipment> wtls = null;
  74. if (CacheContext.wpwtmap.containsKey(wp.getId())) {
  75. wtls = CacheContext.wpwtmap.get(wp.getId());
  76. }
  77. if (null != wtls && !wtls.isEmpty()) {
  78. for (ProBasicEquipment wt : wtls) {
  79. ProEconInOrOutSpeedTotal total1 = null;
  80. ProEconInOrOutSpeedTotal2 total2 = null;
  81. QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
  82. queryWrapper.eq("record_date",daybegin).eq("windturbine_id",wt.getId());
  83. Optional<ProEconInOrOutSpeedTotal> total1o = proEconInOrOutSpeedTotalService.list(queryWrapper)
  84. .stream()
  85. // .filter(i -> i.getWindturbineId().equals(wt.getId())
  86. // && i.getRecordDate().compareTo(daybegin) == 0)
  87. .findFirst();
  88. if (total1o.isPresent()) {
  89. total1 = total1o.get();
  90. }
  91. QueryWrapper<ProEconInOrOutSpeedTotal2> queryWrapper2 = new QueryWrapper<>();
  92. queryWrapper2.eq("record_date",daybegin).eq("windturbine_id",wt.getId());
  93. Optional<ProEconInOrOutSpeedTotal2> total2o = proEconInOrOutSpeedTotal2Service.list(queryWrapper2).stream()
  94. // .filter(i -> i.getWindturbineId().equals(wt.getId())
  95. // && i.getRecordDate().compareTo(daybegin) == 0)
  96. .findFirst();
  97. if (total2o.isPresent()) {
  98. total2 = total2o.get();
  99. }
  100. if (total1 != null) {
  101. QueryWrapper<ProEconInOrOutSpeedTotal> wrapper = new QueryWrapper<>();
  102. wrapper.eq("id", total1.getId());
  103. proEconInOrOutSpeedTotalService.remove(wrapper);
  104. }
  105. if (total2 != null) {
  106. QueryWrapper<ProEconInOrOutSpeedTotal2> wrapper = new QueryWrapper<>();
  107. wrapper.eq("id", total2.getId());
  108. proEconInOrOutSpeedTotal2Service.remove(wrapper);
  109. }
  110. total1 = new ProEconInOrOutSpeedTotal();
  111. total1.setWindturbineId(wt.getId());
  112. total1.setWindpowerstationId(wt.getWindpowerstationId());
  113. total1.setProjectId(wt.getProjectId());
  114. total1.setLineId(wt.getLineId());
  115. total1.setRecordDate(daybegin);
  116. total1.setCompanyId(wt.getCompanyId());
  117. total1.setRegionId(wt.getRegionId());
  118. if(wt.getWindpowerstationId().contains(WpType.FDC.id))
  119. {
  120. total1.setTypes("-1");
  121. }else
  122. {
  123. total1.setTypes("-2");
  124. }
  125. total2 = new ProEconInOrOutSpeedTotal2();
  126. total2.setWindturbineId(wt.getId());
  127. total2.setWindpowerstationId(wt.getWindpowerstationId());
  128. total2.setProjectId(wt.getProjectId());
  129. total2.setLineId(wt.getLineId());
  130. total2.setRecordDate(daybegin);
  131. total2.setRegionId(wt.getRegionId());
  132. total2.setCompanyId(wt.getCompanyId());
  133. if(wt.getWindpowerstationId().contains(WpType.FDC.id))
  134. {
  135. total2.setTypes("-1");
  136. }else
  137. {
  138. total2.setTypes("-2");
  139. }
  140. newMethod(end, daybegin, monthbegin, yearbegin, wt.getId(), total1, total2);
  141. verify(total1);
  142. proEconInOrOutSpeedTotalService.save(total1);
  143. proEconInOrOutSpeedTotal2Service.save(total2);
  144. }
  145. }
  146. }
  147. }
  148. private void verify(ProEconInOrOutSpeedTotal total1) {
  149. //日小风切入
  150. if (Double.isInfinite(total1.getDayInputSmall()) || Double.isNaN(total1.getDayInputSmall()))
  151. {
  152. total1.setDayInputSmall(0.0);
  153. }else
  154. {
  155. total1.setDayInputSmall(StringUtils.round(total1.getDayInputSmall(),2));
  156. }
  157. //日小风切入最小值
  158. if (Double.isInfinite(total1.getDayInputSmallMin()) || Double.isNaN(total1.getDayInputSmallMin()))
  159. {
  160. total1.setDayInputSmallMin(0.0);
  161. }else
  162. {
  163. total1.setDayInputSmallMin(StringUtils.round(total1.getDayInputSmallMin(),2));
  164. }
  165. //日小风切入最大值
  166. if (Double.isInfinite(total1.getDayInputSmallMax()) || Double.isNaN(total1.getDayInputSmallMax()))
  167. {
  168. total1.setDayInputSmallMax(0.0);
  169. }else
  170. {
  171. total1.setDayInputSmallMax(StringUtils.round(total1.getDayInputSmallMax(),2));
  172. }
  173. //日大风切入
  174. if (Double.isInfinite(total1.getDayInputBig()) || Double.isNaN(total1.getDayInputBig()))
  175. {
  176. total1.setDayInputBig(0.0);
  177. }else
  178. {
  179. total1.setDayInputBig(StringUtils.round(total1.getDayInputBig(),2));
  180. }
  181. //日大风切入最大值
  182. if (Double.isInfinite(total1.getDayInputBigMin()) || Double.isNaN(total1.getDayInputBigMin()))
  183. {
  184. total1.setDayInputBigMin(0.0);
  185. }else
  186. {
  187. total1.setDayInputBigMin(StringUtils.round(total1.getDayInputBigMin(),2));
  188. }
  189. //日大风切入最大值
  190. if (Double.isInfinite(total1.getDayInputBigMax()) || Double.isNaN(total1.getDayInputBigMax()))
  191. {
  192. total1.setDayInputBigMax(0.0);
  193. }else
  194. {
  195. total1.setDayInputBigMax(StringUtils.round(total1.getDayInputBigMax(),2));
  196. }
  197. //日小风切出
  198. if (Double.isInfinite(total1.getDayOutputSmall()) || Double.isNaN(total1.getDayOutputSmall()))
  199. {
  200. total1.setDayOutputSmall(0.0);
  201. }else
  202. {
  203. total1.setDayOutputSmall(StringUtils.round(total1.getDayOutputSmall(),2));
  204. }
  205. //日小风切出最小值
  206. if (Double.isInfinite(total1.getDayOutputSmallMin()) || Double.isNaN(total1.getDayOutputSmallMin()))
  207. {
  208. total1.setDayOutputSmallMin(0.0);
  209. }else
  210. {
  211. total1.setDayOutputSmallMin(StringUtils.round(total1.getDayOutputSmallMin(),2));
  212. }
  213. //日小风切出最大值
  214. if (Double.isInfinite(total1.getDayOutputSmallMax()) || Double.isNaN(total1.getDayOutputSmallMax()))
  215. {
  216. total1.setDayOutputSmallMax(0.0);
  217. }else
  218. {
  219. total1.setDayOutputSmallMax(StringUtils.round(total1.getDayOutputSmallMax(),2));
  220. }
  221. //日大风切出
  222. if (Double.isInfinite(total1.getDayOutputBig()) || Double.isNaN(total1.getDayOutputBig()))
  223. {
  224. total1.setDayOutputBig(0.0);
  225. }else
  226. {
  227. total1.setDayOutputBig(StringUtils.round(total1.getDayOutputBig(),2));
  228. }
  229. //日大风切出最大值
  230. if (Double.isInfinite(total1.getDayOutputBigMin()) || Double.isNaN(total1.getDayOutputBigMin()))
  231. {
  232. total1.setDayOutputBigMin(0.0);
  233. }else
  234. {
  235. total1.setDayOutputBigMin(StringUtils.round(total1.getDayOutputBigMin(),2));
  236. }
  237. //日大风切出最大值
  238. if (Double.isInfinite(total1.getDayOutputBigMax()) || Double.isNaN(total1.getDayOutputBigMax()))
  239. {
  240. total1.setDayOutputBigMax(0.0);
  241. }else
  242. {
  243. total1.setDayOutputBigMax(StringUtils.round(total1.getDayOutputBigMax(),2));
  244. }
  245. //月小风切入
  246. if (Double.isInfinite(total1.getMonthInputSmall()) || Double.isNaN(total1.getMonthInputSmall()))
  247. {
  248. total1.setMonthInputSmall(0.0);
  249. }else
  250. {
  251. total1.setMonthInputSmall(StringUtils.round(total1.getMonthInputSmall(),2));
  252. }
  253. //月小风切入最小值
  254. if (Double.isInfinite(total1.getMonthInputSmallMin()) || Double.isNaN(total1.getMonthInputSmallMin()))
  255. {
  256. total1.setMonthInputSmallMin(0.0);
  257. }else
  258. {
  259. total1.setMonthInputSmallMin(StringUtils.round(total1.getMonthInputSmallMin(),2));
  260. }
  261. //月小风切入最大值
  262. if (Double.isInfinite(total1.getMonthInputSmallMax()) || Double.isNaN(total1.getMonthInputSmallMax()))
  263. {
  264. total1.setMonthInputSmallMax(0.0);
  265. }else
  266. {
  267. total1.setMonthInputSmallMax(StringUtils.round(total1.getMonthInputSmallMax(),2));
  268. }
  269. //月大风切入
  270. if (Double.isInfinite(total1.getMonthInputBig()) || Double.isNaN(total1.getMonthInputBig()))
  271. {
  272. total1.setMonthInputBig(0.0);
  273. }else
  274. {
  275. total1.setMonthInputBig(StringUtils.round(total1.getMonthInputBig(),2));
  276. }
  277. //月大风切入最大值
  278. if (Double.isInfinite(total1.getMonthInputBigMin()) || Double.isNaN(total1.getMonthInputBigMin()))
  279. {
  280. total1.setMonthInputBigMin(0.0);
  281. }else
  282. {
  283. total1.setMonthInputBigMin(StringUtils.round(total1.getMonthInputBigMin(),2));
  284. }
  285. //月大风切入最大值
  286. if (Double.isInfinite(total1.getMonthInputBigMax()) || Double.isNaN(total1.getMonthInputBigMax()))
  287. {
  288. total1.setMonthInputBigMax(0.0);
  289. }else
  290. {
  291. total1.setMonthInputBigMax(StringUtils.round(total1.getMonthInputBigMax(),2));
  292. }
  293. //月小风切出
  294. if (Double.isInfinite(total1.getMonthOutputSmall()) || Double.isNaN(total1.getMonthOutputSmall()))
  295. {
  296. total1.setMonthOutputSmall(0.0);
  297. }else
  298. {
  299. total1.setMonthOutputSmall(StringUtils.round(total1.getMonthOutputSmall(),2));
  300. }
  301. //月小风切出最小值
  302. if (Double.isInfinite(total1.getMonthOutputSmallMin()) || Double.isNaN(total1.getMonthOutputSmallMin()))
  303. {
  304. total1.setMonthOutputSmallMin(0.0);
  305. }else
  306. {
  307. total1.setMonthOutputSmallMin(StringUtils.round(total1.getMonthOutputSmallMin(),2));
  308. }
  309. //月小风切出最大值
  310. if (Double.isInfinite(total1.getMonthOutputSmallMax()) || Double.isNaN(total1.getMonthOutputSmallMax()))
  311. {
  312. total1.setMonthOutputSmallMax(0.0);
  313. }else
  314. {
  315. total1.setMonthOutputSmallMax(StringUtils.round(total1.getMonthOutputSmallMax(),2));
  316. }
  317. //月大风切出
  318. if (Double.isInfinite(total1.getMonthOutputBig()) || Double.isNaN(total1.getMonthOutputBig()))
  319. {
  320. total1.setMonthOutputBig(0.0);
  321. }else
  322. {
  323. total1.setMonthOutputBig(StringUtils.round(total1.getMonthOutputBig(),2));
  324. }
  325. //月大风切出最大值
  326. if (Double.isInfinite(total1.getMonthOutputBigMin()) || Double.isNaN(total1.getMonthOutputBigMin()))
  327. {
  328. total1.setMonthOutputBigMin(0.0);
  329. }else
  330. {
  331. total1.setMonthOutputBigMin(StringUtils.round(total1.getMonthOutputBigMin(),2));
  332. }
  333. //月大风切出最大值
  334. if (Double.isInfinite(total1.getMonthOutputBigMax()) || Double.isNaN(total1.getMonthOutputBigMax()))
  335. {
  336. total1.setMonthOutputBigMax(0.0);
  337. }else
  338. {
  339. total1.setMonthOutputBigMax(StringUtils.round(total1.getMonthOutputBigMax(),2));
  340. }
  341. //年小风切入
  342. if (Double.isInfinite(total1.getYearInputSmall()) || Double.isNaN(total1.getYearInputSmall()))
  343. {
  344. total1.setYearInputSmall(0.0);
  345. }else
  346. {
  347. total1.setYearInputSmall(StringUtils.round(total1.getYearInputSmall(),2));
  348. }
  349. //年小风切入最小值
  350. if (Double.isInfinite(total1.getYearInputSmallMin()) || Double.isNaN(total1.getYearInputSmallMin()))
  351. {
  352. total1.setYearInputSmallMin(0.0);
  353. }else
  354. {
  355. total1.setYearInputSmallMin(StringUtils.round(total1.getYearInputSmallMin(),2));
  356. }
  357. //年小风切入最大值
  358. if (Double.isInfinite(total1.getYearInputSmallMax()) || Double.isNaN(total1.getYearInputSmallMax()))
  359. {
  360. total1.setYearInputSmallMax(0.0);
  361. }else
  362. {
  363. total1.setYearInputSmallMax(StringUtils.round(total1.getYearInputSmallMax(),2));
  364. }
  365. //年大风切入
  366. if (Double.isInfinite(total1.getYearInputBig()) || Double.isNaN(total1.getYearInputBig()))
  367. {
  368. total1.setYearInputBig(0.0);
  369. }else
  370. {
  371. total1.setYearInputBig(StringUtils.round(total1.getYearInputBig(),2));
  372. }
  373. //年大风切入最大值
  374. if (Double.isInfinite(total1.getYearInputBigMin()) || Double.isNaN(total1.getYearInputBigMin()))
  375. {
  376. total1.setYearInputBigMin(0.0);
  377. }else
  378. {
  379. total1.setYearInputBigMin(StringUtils.round(total1.getYearInputBigMin(),2));
  380. }
  381. //年大风切入最大值
  382. if (Double.isInfinite(total1.getYearInputBigMax()) || Double.isNaN(total1.getYearInputBigMax()))
  383. {
  384. total1.setYearInputBigMax(0.0);
  385. }else
  386. {
  387. total1.setYearInputBigMax(StringUtils.round(total1.getYearInputBigMax(),2));
  388. }
  389. //年小风切出
  390. if (Double.isInfinite(total1.getYearOutputSmall()) || Double.isNaN(total1.getYearOutputSmall()))
  391. {
  392. total1.setYearOutputSmall(0.0);
  393. }else
  394. {
  395. total1.setYearOutputSmall(StringUtils.round(total1.getYearOutputSmall(),2));
  396. }
  397. //年小风切出最小值
  398. if (Double.isInfinite(total1.getYearOutputSmallMin()) || Double.isNaN(total1.getYearOutputSmallMin()))
  399. {
  400. total1.setYearOutputSmallMin(0.0);
  401. }else
  402. {
  403. total1.setYearOutputSmallMin(StringUtils.round(total1.getYearOutputSmallMin(),2));
  404. }
  405. //年小风切出最大值
  406. if (Double.isInfinite(total1.getYearOutputSmallMax()) || Double.isNaN(total1.getYearOutputSmallMax()))
  407. {
  408. total1.setYearOutputSmallMax(0.0);
  409. }else
  410. {
  411. total1.setYearOutputSmallMax(StringUtils.round(total1.getYearOutputSmallMax(),2));
  412. }
  413. //年大风切出
  414. if (Double.isInfinite(total1.getYearOutputBig()) || Double.isNaN(total1.getYearOutputBig()))
  415. {
  416. total1.setYearOutputBig(0.0);
  417. }else
  418. {
  419. total1.setYearOutputBig(StringUtils.round(total1.getYearOutputBig(),2));
  420. }
  421. //年大风切出最大值
  422. if (Double.isInfinite(total1.getYearOutputBigMin()) || Double.isNaN(total1.getYearOutputBigMin()))
  423. {
  424. total1.setYearOutputBigMin(0.0);
  425. }else
  426. {
  427. total1.setYearOutputBigMin(StringUtils.round(total1.getYearOutputBigMin(),2));
  428. }
  429. //年大风切出最大值
  430. if (Double.isInfinite(total1.getYearOutputBigMax()) || Double.isNaN(total1.getYearOutputBigMax()))
  431. {
  432. total1.setYearOutputBigMax(0.0);
  433. }else
  434. {
  435. total1.setYearOutputBigMax(StringUtils.round(total1.getYearOutputBigMax(),2));
  436. }
  437. //小风切入
  438. if (Double.isInfinite(total1.getInputSmall()) || Double.isNaN(total1.getInputSmall()))
  439. {
  440. total1.setInputSmall(0.0);
  441. }else
  442. {
  443. total1.setInputSmall(StringUtils.round(total1.getInputSmall(),2));
  444. }
  445. //小风切入最小值
  446. if (Double.isInfinite(total1.getInputSmallMin()) || Double.isNaN(total1.getInputSmallMin()))
  447. {
  448. total1.setInputSmallMin(0.0);
  449. }else
  450. {
  451. total1.setInputSmallMin(StringUtils.round(total1.getInputSmallMin(),2));
  452. }
  453. //小风切入最大值
  454. if (Double.isInfinite(total1.getInputSmallMax()) || Double.isNaN(total1.getInputSmallMax()))
  455. {
  456. total1.setInputSmallMax(0.0);
  457. }else
  458. {
  459. total1.setInputSmallMax(StringUtils.round(total1.getInputSmallMax(),2));
  460. }
  461. //大风切入
  462. if (Double.isInfinite(total1.getInputBig()) || Double.isNaN(total1.getInputBig()))
  463. {
  464. total1.setInputBig(0.0);
  465. }else
  466. {
  467. total1.setInputBig(StringUtils.round(total1.getInputBig(),2));
  468. }
  469. //大风切入最大值
  470. if (Double.isInfinite(total1.getInputBigMin()) || Double.isNaN(total1.getInputBigMin()))
  471. {
  472. total1.setInputBigMin(0.0);
  473. }else
  474. {
  475. total1.setInputBigMin(StringUtils.round(total1.getInputBigMin(),2));
  476. }
  477. //大风切入最大值
  478. if (Double.isInfinite(total1.getInputBigMax()) || Double.isNaN(total1.getInputBigMax()))
  479. {
  480. total1.setInputBigMax(0.0);
  481. }else
  482. {
  483. total1.setInputBigMax(StringUtils.round(total1.getInputBigMax(),2));
  484. }
  485. //小风切出
  486. if (Double.isInfinite(total1.getOutputSmall()) || Double.isNaN(total1.getOutputSmall()))
  487. {
  488. total1.setOutputSmall(0.0);
  489. }else
  490. {
  491. total1.setOutputSmall(StringUtils.round(total1.getOutputSmall(),2));
  492. }
  493. //小风切出最小值
  494. if (Double.isInfinite(total1.getOutputSmallMin()) || Double.isNaN(total1.getOutputSmallMin()))
  495. {
  496. total1.setOutputSmallMin(0.0);
  497. }else
  498. {
  499. total1.setOutputSmallMin(StringUtils.round(total1.getOutputSmallMin(),2));
  500. }
  501. //小风切出最大值
  502. if (Double.isInfinite(total1.getOutputSmallMax()) || Double.isNaN(total1.getOutputSmallMax()))
  503. {
  504. total1.setOutputSmallMax(0.0);
  505. }else
  506. {
  507. total1.setOutputSmallMax(StringUtils.round(total1.getOutputSmallMax(),2));
  508. }
  509. //大风切出
  510. if (Double.isInfinite(total1.getOutputBig()) || Double.isNaN(total1.getOutputBig()))
  511. {
  512. total1.setOutputBig(0.0);
  513. }else
  514. {
  515. total1.setOutputBig(StringUtils.round(total1.getOutputBig(),2));
  516. }
  517. //大风切出最大值
  518. if (Double.isInfinite(total1.getOutputBigMin()) || Double.isNaN(total1.getOutputBigMin()))
  519. {
  520. total1.setOutputBigMin(0.0);
  521. }else
  522. {
  523. total1.setOutputBigMin(StringUtils.round(total1.getOutputBigMin(),2));
  524. }
  525. //大风切出最大值
  526. if (Double.isInfinite(total1.getOutputBigMax()) || Double.isNaN(total1.getOutputBigMax()))
  527. {
  528. total1.setOutputBigMax(0.0);
  529. }else
  530. {
  531. total1.setOutputBigMax(StringUtils.round(total1.getOutputBigMax(),2));
  532. }
  533. //日小风切入合格率
  534. if (Double.isInfinite(total1.getDayInputSmallRatio()) || Double.isNaN(total1.getDayInputSmallRatio()))
  535. {
  536. total1.setDayInputSmallRatio(0.0);
  537. }else
  538. {
  539. total1.setDayInputSmallRatio(StringUtils.round(total1.getDayInputSmallRatio(),2));
  540. }
  541. //日小风切出合格率
  542. if (Double.isInfinite(total1.getDayOutputSmallRatio()) || Double.isNaN(total1.getDayOutputSmallRatio()))
  543. {
  544. total1.setDayOutputSmallRatio(0.0);
  545. }else
  546. {
  547. total1.setDayOutputSmallRatio(StringUtils.round(total1.getDayOutputSmallRatio(),2));
  548. }
  549. //日大风切入合格率
  550. if (Double.isInfinite(total1.getDayInputBigRatio()) || Double.isNaN(total1.getDayInputBigRatio()))
  551. {
  552. total1.setDayInputBigRatio(0.0);
  553. }else
  554. {
  555. total1.setDayInputBigRatio(StringUtils.round(total1.getDayInputBigRatio(),2));
  556. }
  557. //日大风切出合格率
  558. if (Double.isInfinite(total1.getDayOutputBigRatio()) || Double.isNaN(total1.getDayOutputBigRatio()))
  559. {
  560. total1.setDayOutputBigRatio(0.0);
  561. }else
  562. {
  563. total1.setDayOutputBigRatio(StringUtils.round(total1.getDayOutputBigRatio(),2));
  564. }
  565. //月小风切入合格率
  566. if (Double.isInfinite(total1.getMonthInputSmallRatio()) || Double.isNaN(total1.getMonthInputSmallRatio()))
  567. {
  568. total1.setMonthInputSmallRatio(0.0);
  569. }else
  570. {
  571. total1.setMonthInputSmallRatio(StringUtils.round(total1.getMonthInputSmallRatio(),2));
  572. }
  573. //月小风切出合格率
  574. if (Double.isInfinite(total1.getMonthOutputSmallRatio()) || Double.isNaN(total1.getMonthOutputSmallRatio()))
  575. {
  576. total1.setMonthOutputSmallRatio(0.0);
  577. }else
  578. {
  579. total1.setMonthOutputSmallRatio(StringUtils.round(total1.getMonthOutputSmallRatio(),2));
  580. }
  581. //月大风切入合格率
  582. if (Double.isInfinite(total1.getMonthInputBigRatio()) || Double.isNaN(total1.getMonthInputBigRatio()))
  583. {
  584. total1.setMonthInputBigRatio(0.0);
  585. }else
  586. {
  587. total1.setMonthInputBigRatio(StringUtils.round(total1.getMonthInputBigRatio(),2));
  588. }
  589. //月大风切出合格率
  590. if (Double.isInfinite(total1.getMonthOutputBigRatio()) || Double.isNaN(total1.getMonthOutputBigRatio()))
  591. {
  592. total1.setMonthOutputBigRatio(0.0);
  593. }else
  594. {
  595. total1.setMonthOutputBigRatio(StringUtils.round(total1.getMonthOutputBigRatio(),2));
  596. }
  597. //年小风切入合格率
  598. if (Double.isInfinite(total1.getYearInputSmallRatio()) || Double.isNaN(total1.getYearInputSmallRatio()))
  599. {
  600. total1.setYearInputSmallRatio(0.0);
  601. }else
  602. {
  603. total1.setYearInputSmallRatio(StringUtils.round(total1.getYearInputSmallRatio(),2));
  604. }
  605. //年小风切出合格率
  606. if (Double.isInfinite(total1.getYearOutputSmallRatio()) || Double.isNaN(total1.getYearOutputSmallRatio()))
  607. {
  608. total1.setYearOutputSmallRatio(0.0);
  609. }else
  610. {
  611. total1.setYearOutputSmallRatio(StringUtils.round(total1.getYearOutputSmallRatio(),2));
  612. }
  613. //年大风切入合格率
  614. if (Double.isInfinite(total1.getYearInputBigRatio()) || Double.isNaN(total1.getYearInputBigRatio()))
  615. {
  616. total1.setYearInputBigRatio(0.0);
  617. }else
  618. {
  619. total1.setYearInputBigRatio(StringUtils.round(total1.getYearInputBigRatio(),2));
  620. }
  621. //年大风切出合格率
  622. if (Double.isInfinite(total1.getYearOutputBigRatio()) || Double.isNaN(total1.getYearOutputBigRatio()))
  623. {
  624. total1.setYearOutputBigRatio(0.0);
  625. }else
  626. {
  627. total1.setYearOutputBigRatio(StringUtils.round(total1.getYearOutputBigRatio(),2));
  628. }
  629. //总小风切入合格率
  630. if (Double.isInfinite(total1.getInputSmallRatio()) || Double.isNaN(total1.getInputSmallRatio()))
  631. {
  632. total1.setInputSmallRatio(0.0);
  633. }else
  634. {
  635. total1.setInputSmallRatio(StringUtils.round(total1.getInputSmallRatio(),2));
  636. }
  637. //总小风切出合格率
  638. if (Double.isInfinite(total1.getOutputSmallRatio()) || Double.isNaN(total1.getOutputSmallRatio()))
  639. {
  640. total1.setOutputSmallRatio(0.0);
  641. }else
  642. {
  643. total1.setOutputSmallRatio(StringUtils.round(total1.getOutputSmallRatio(),2));
  644. }
  645. //总大风切入合格率
  646. if (Double.isInfinite(total1.getInputBigRatio()) || Double.isNaN(total1.getInputBigRatio()))
  647. {
  648. total1.setInputBigRatio(0.0);
  649. }else
  650. {
  651. total1.setInputBigRatio(StringUtils.round(total1.getInputBigRatio(),2));
  652. }
  653. //总大风切出合格率
  654. if (Double.isInfinite(total1.getOutputBigMaxRatio()) || Double.isNaN(total1.getOutputBigMaxRatio()))
  655. {
  656. total1.setOutputBigMaxRatio(0.0);
  657. }else
  658. {
  659. total1.setOutputBigMaxRatio(StringUtils.round(total1.getOutputBigMaxRatio(),2));
  660. }
  661. }
  662. private void newMethod(Date end, Date daybegin, Date monthbegin, Date yearbegin, String windturbineId, ProEconInOrOutSpeedTotal total1, ProEconInOrOutSpeedTotal2 total2) {
  663. buildDay(end, daybegin, windturbineId, total1, total2);
  664. buildMonth(end, monthbegin, windturbineId, total1, total2);
  665. buildyear(end, yearbegin, windturbineId, total1, total2);
  666. QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
  667. queryWrapper.eq("windturbine_id",windturbineId);
  668. List<ProEconInOrOutSpeedTotal> items = proEconInOrOutSpeedTotalService.list(queryWrapper);
  669. // .stream()
  670. // .filter(i -> i.getWindturbineId().equals(windturbineId)).collect(Collectors.toList());
  671. items.add(total1);
  672. //总小风切入
  673. DoubleSummaryStatistics summaryStatistics = items.stream()
  674. .filter(i -> StringUtils.notEmp(i.getDayInputSmall()) && i.getDayInputSmall() > 0)
  675. .mapToDouble(ProEconInOrOutSpeedTotal::getDayInputSmall).summaryStatistics();
  676. total1.setInputSmall(summaryStatistics.getAverage());
  677. //总小风切入最大值
  678. summaryStatistics = items.stream()
  679. .filter(i -> StringUtils.notEmp(i.getDayInputSmallMax()) && i.getDayInputSmallMax() > 0)
  680. .mapToDouble(ProEconInOrOutSpeedTotal::getDayInputSmallMax).summaryStatistics();
  681. total1.setInputSmallMax(summaryStatistics.getMax());
  682. //总小风切入最小值
  683. summaryStatistics = items.stream()
  684. .filter(i -> StringUtils.notEmp(i.getDayInputSmallMin()) && i.getDayInputSmallMin() > 0)
  685. .mapToDouble(ProEconInOrOutSpeedTotal::getDayInputSmallMin).summaryStatistics();
  686. total1.setInputSmallMin(summaryStatistics.getMin());
  687. //总大风切入
  688. summaryStatistics = items.stream()
  689. .filter(i -> StringUtils.notEmp(i.getDayInputBig()) && i.getDayInputBig() > 0)
  690. .mapToDouble(ProEconInOrOutSpeedTotal::getDayInputBig).summaryStatistics();
  691. total1.setInputBig(summaryStatistics.getAverage());
  692. //总大风切入最大值
  693. summaryStatistics = items.stream()
  694. .filter(i -> StringUtils.notEmp(i.getDayInputBigMax()) && i.getDayInputBigMax() > 0)
  695. .mapToDouble(ProEconInOrOutSpeedTotal::getDayInputBigMax).summaryStatistics();
  696. total1.setInputBigMax(summaryStatistics.getMax());
  697. //总大风切入最小值
  698. summaryStatistics = items.stream()
  699. .filter(i -> StringUtils.notEmp(i.getDayInputBigMin()) && i.getDayInputBigMin() > 0)
  700. .mapToDouble(ProEconInOrOutSpeedTotal::getDayInputBigMin).summaryStatistics();
  701. total1.setInputBigMin(summaryStatistics.getMin());
  702. //总小风切出
  703. summaryStatistics = items.stream()
  704. .filter(i -> StringUtils.notEmp(i.getDayOutputSmall()) && i.getDayOutputSmall() > 0)
  705. .mapToDouble(ProEconInOrOutSpeedTotal::getDayOutputSmall).summaryStatistics();
  706. total1.setOutputSmall(summaryStatistics.getAverage());
  707. //总小风切出最大值
  708. summaryStatistics = items.stream()
  709. .filter(i -> StringUtils.notEmp(i.getDayOutputSmallMax()) && i.getDayOutputSmallMax() > 0)
  710. .mapToDouble(ProEconInOrOutSpeedTotal::getDayOutputSmallMax).summaryStatistics();
  711. total1.setOutputSmallMax(summaryStatistics.getMax());
  712. //总小风切出最小值
  713. summaryStatistics = items.stream()
  714. .filter(i -> StringUtils.notEmp(i.getDayOutputSmallMin()) && i.getDayOutputSmallMin() > 0)
  715. .mapToDouble(ProEconInOrOutSpeedTotal::getDayOutputSmallMin).summaryStatistics();
  716. total1.setOutputSmallMin(summaryStatistics.getMin());
  717. //总大风切出
  718. summaryStatistics = items.stream()
  719. .filter(i -> StringUtils.notEmp(i.getDayOutputBig()) && i.getDayOutputBig() > 0)
  720. .mapToDouble(ProEconInOrOutSpeedTotal::getDayOutputBig).summaryStatistics();
  721. total1.setOutputBig(summaryStatistics.getAverage());
  722. //总大风切出最大值
  723. summaryStatistics = items.stream()
  724. .filter(i -> StringUtils.notEmp(i.getDayOutputBigMax()) && i.getDayOutputBigMax() > 0)
  725. .mapToDouble(ProEconInOrOutSpeedTotal::getDayOutputBigMax).summaryStatistics();
  726. total1.setOutputBigMax(summaryStatistics.getMax());
  727. //总大风切出最小值
  728. summaryStatistics = items.stream()
  729. .filter(i -> StringUtils.notEmp(i.getDayOutputBigMin()) && i.getDayOutputBigMin() > 0)
  730. .mapToDouble(ProEconInOrOutSpeedTotal::getDayOutputBigMin).summaryStatistics();
  731. total1.setOutputBigMin(summaryStatistics.getMin());
  732. QueryWrapper<ProEconInputOrOutputSpeed> queryWrapper2 = new QueryWrapper<>();
  733. queryWrapper2.eq("windturbine_id",windturbineId).isNotNull("speed").ne("speed",0);
  734. List<ProEconInputOrOutputSpeed> recordList = proEconInputOrOutputSpeedService.list(queryWrapper2);
  735. // .stream()
  736. // .filter(i -> i.getWindturbineId().equals(windturbineId) && StringUtils.notEmp(i.getSpeed())
  737. // && i.getSpeed() != 0).collect(Collectors.toList());
  738. List<ProEconInputOrOutputSpeed> inputrecordList = recordList.stream()
  739. .filter(i -> i.getInputOrOutput() == 1).collect(Collectors.toList());
  740. List<ProEconInputOrOutputSpeed> outputrecordList = recordList.stream()
  741. .filter(i -> i.getInputOrOutput() == 0).collect(Collectors.toList());
  742. List<ProEconInputOrOutputSpeed> AList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  743. && i.getSpeed() <= 3).collect(Collectors.toList());
  744. List<ProEconInputOrOutputSpeed> ACountList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  745. && i.getSpeed() <= 11).collect(Collectors.toList());
  746. List<ProEconInputOrOutputSpeed> BList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  747. && i.getSpeed() <= 3).collect(Collectors.toList());
  748. List<ProEconInputOrOutputSpeed> BCountList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  749. && i.getSpeed() <= 11).collect(Collectors.toList());
  750. List<ProEconInputOrOutputSpeed> CList = inputrecordList.stream().filter(i -> i.getSpeed() >= 25).collect(Collectors.toList());
  751. List<ProEconInputOrOutputSpeed> CCountList = inputrecordList.stream().filter(i -> i.getSpeed() > 11).collect(Collectors.toList());
  752. List<ProEconInputOrOutputSpeed> DList = outputrecordList.stream().filter(i -> i.getSpeed() >= 25).collect(Collectors.toList());
  753. List<ProEconInputOrOutputSpeed> DCountList = outputrecordList
  754. .stream().filter(i -> i.getSpeed() > 11).collect(Collectors.toList());
  755. //总小风切入合格率
  756. if (ACountList.size() != 0) {
  757. total1.setInputSmallRatio(new BigDecimal(AList.size()).divide(new BigDecimal(ACountList.size()),
  758. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  759. } else {
  760. total1.setInputSmallRatio(0.0);
  761. }
  762. //总小风切出合格率
  763. if (BCountList.size() != 0) {
  764. total1.setOutputSmallRatio(new BigDecimal(BList.size()).divide(new BigDecimal(BCountList.size()),
  765. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  766. } else {
  767. total1.setOutputSmallRatio(0.0);
  768. }
  769. //总大风切入合格率
  770. if (CCountList.size() != 0) {
  771. total1.setInputBigRatio(new BigDecimal(CList.size()).divide(new BigDecimal(CCountList.size()),
  772. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  773. } else {
  774. total1.setInputBigRatio(0.0);
  775. }
  776. //总大风切出合格率
  777. if (DCountList.size() != 0) {
  778. total1.setOutputBigMaxRatio(new BigDecimal(DList.size()).divide(new BigDecimal(DCountList.size()),
  779. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  780. } else {
  781. total1.setOutputBigMaxRatio(0.0);
  782. }
  783. }
  784. private void buildDay(Date end, Date daybegin, String windturbineId, ProEconInOrOutSpeedTotal total1, ProEconInOrOutSpeedTotal2 total2) {
  785. int count;
  786. QueryWrapper<ProEconInputOrOutputSpeed> queryWrapper = new QueryWrapper<>();
  787. queryWrapper.ge("record_date",daybegin).le("record_date",end).eq("windturbine_id",windturbineId).isNotNull("speed");
  788. List<ProEconInputOrOutputSpeed> recordList = proEconInputOrOutputSpeedService.list(queryWrapper);
  789. // .stream()
  790. // .filter(i -> i.getWindturbineId().equals(windturbineId) && StringUtils.notEmp(i.getSpeed())
  791. // && (i.getRecordDate().compareTo(daybegin) == 0 || i.getRecordDate().after(daybegin))
  792. // && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
  793. // && i.getSpeed() != 0).collect(Collectors.toList());
  794. List<ProEconInputOrOutputSpeed> inputrecordList = recordList.stream()
  795. .filter(i -> i.getInputOrOutput() == 1).collect(Collectors.toList());
  796. List<ProEconInputOrOutputSpeed> outputrecordList = recordList.stream()
  797. .filter(i -> i.getInputOrOutput() == 0).collect(Collectors.toList());
  798. List<ProEconInputOrOutputSpeed> AList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  799. && i.getSpeed() <= 3).collect(Collectors.toList());
  800. List<ProEconInputOrOutputSpeed> ACountList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  801. && i.getSpeed() <= 11).collect(Collectors.toList());
  802. List<ProEconInputOrOutputSpeed> BList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  803. && i.getSpeed() <= 3).collect(Collectors.toList());
  804. List<ProEconInputOrOutputSpeed> BCountList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  805. && i.getSpeed() <= 11).collect(Collectors.toList());
  806. List<ProEconInputOrOutputSpeed> CList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  807. && i.getSpeed() >= 25).collect(Collectors.toList());
  808. List<ProEconInputOrOutputSpeed> CCountList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  809. && i.getSpeed() > 11).collect(Collectors.toList());
  810. List<ProEconInputOrOutputSpeed> DList = outputrecordList.stream().filter(i -> i.getSpeed() >= 25).collect(Collectors.toList());
  811. List<ProEconInputOrOutputSpeed> DCountList = outputrecordList
  812. .stream().filter(i -> i.getSpeed() > 11).collect(Collectors.toList());
  813. if (ACountList.size() != 0) {
  814. total1.setDayInputSmallRatio(new BigDecimal(AList.size()).divide(new BigDecimal(ACountList.size()),
  815. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  816. } else {
  817. total1.setDayInputSmallRatio(0.0);
  818. }
  819. if (BCountList.size() != 0) {
  820. total1.setDayOutputSmallRatio(new BigDecimal(BList.size()).divide(new BigDecimal(BCountList.size()),
  821. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  822. } else {
  823. total1.setDayOutputSmallRatio(0.0);
  824. }
  825. if (CCountList.size() != 0) {
  826. total1.setDayInputBigRatio(new BigDecimal(CList.size()).divide(new BigDecimal(CCountList.size()),
  827. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  828. } else {
  829. total1.setDayInputBigRatio(0.0);
  830. }
  831. if (DCountList.size() != 0) {
  832. total1.setDayOutputBigRatio(new BigDecimal(DList.size()).divide(new BigDecimal(DCountList.size()),
  833. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  834. } else {
  835. total1.setDayOutputBigRatio(0.0);
  836. }
  837. List<ProEconInputOrOutputSpeed> A1List = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  838. && i.getSpeed() < 2).collect(Collectors.toList());
  839. List<ProEconInputOrOutputSpeed> A2List = inputrecordList.stream().filter(i -> i.getSpeed() >= 2
  840. && i.getSpeed() < 2.5).collect(Collectors.toList());
  841. List<ProEconInputOrOutputSpeed> A3List = inputrecordList.stream().filter(i -> i.getSpeed() >= 2.5
  842. && i.getSpeed() < 3).collect(Collectors.toList());
  843. List<ProEconInputOrOutputSpeed> A4List = inputrecordList.stream().filter(i -> i.getSpeed() >= 3
  844. && i.getSpeed() < 3.5).collect(Collectors.toList());
  845. List<ProEconInputOrOutputSpeed> A5List = inputrecordList.stream().filter(i -> i.getSpeed() >= 3.5
  846. && i.getSpeed() < 4).collect(Collectors.toList());
  847. List<ProEconInputOrOutputSpeed> A6List = inputrecordList.stream().filter(i -> i.getSpeed() >= 4
  848. && i.getSpeed() < 5).collect(Collectors.toList());
  849. List<ProEconInputOrOutputSpeed> A7List = inputrecordList.stream().filter(i -> i.getSpeed() >= 5
  850. && i.getSpeed() <= 11).collect(Collectors.toList());
  851. DoubleSummaryStatistics summaryStatistics = inputrecordList.stream().filter(i ->
  852. i.getSpeed() > 0 && i.getSpeed() < 5)
  853. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  854. total1.setDayInputSmall(summaryStatistics.getAverage());
  855. total1.setDayInputSmallMax(summaryStatistics.getMax());
  856. total1.setDayInputSmallMin(summaryStatistics.getMin());
  857. summaryStatistics = inputrecordList.stream().filter(i ->
  858. i.getSpeed() > 18 && i.getSpeed() < 30)
  859. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  860. total1.setDayInputBig(summaryStatistics.getAverage());
  861. total1.setDayInputBigMax(summaryStatistics.getMax());
  862. total1.setDayInputBigMin(summaryStatistics.getMin());
  863. total2.setDaya1((double) A1List.size());
  864. total2.setDaya2((double) A2List.size());
  865. total2.setDaya3((double) A3List.size());
  866. total2.setDaya4((double) A4List.size());
  867. total2.setDaya5((double) A5List.size());
  868. total2.setDaya6((double) A6List.size());
  869. total2.setDaya7((double) A7List.size());
  870. count = A1List.size() + A2List.size() + A3List.size() + A4List.size() + A5List.size() + A6List.size() + A7List.size();
  871. if (count > 0) {
  872. total2.setDaya8(new BigDecimal(A1List.size()).divide(new BigDecimal(count),
  873. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  874. total2.setDaya9(new BigDecimal(A2List.size()).divide(new BigDecimal(count),
  875. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  876. total2.setDaya10(new BigDecimal(A3List.size()).divide(new BigDecimal(count),
  877. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  878. total2.setDaya11(new BigDecimal(A4List.size()).divide(new BigDecimal(count),
  879. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  880. total2.setDaya12(new BigDecimal(A5List.size()).divide(new BigDecimal(count),
  881. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  882. total2.setDaya13(new BigDecimal(A6List.size()).divide(new BigDecimal(count),
  883. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  884. total2.setDaya14(new BigDecimal(A7List.size()).divide(new BigDecimal(count),
  885. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  886. } else {
  887. total2.setDaya8(0.0);
  888. total2.setDaya9(0.0);
  889. total2.setDaya10(0.0);
  890. total2.setDaya11(0.0);
  891. total2.setDaya12(0.0);
  892. total2.setDaya13(0.0);
  893. total2.setDaya14(0.0);
  894. }
  895. List<ProEconInputOrOutputSpeed> B1List = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  896. && i.getSpeed() < 2).collect(Collectors.toList());
  897. List<ProEconInputOrOutputSpeed> B2List = outputrecordList.stream().filter(i -> i.getSpeed() >= 2
  898. && i.getSpeed() < 2.5).collect(Collectors.toList());
  899. List<ProEconInputOrOutputSpeed> B3List = outputrecordList.stream().filter(i -> i.getSpeed() >= 2.5
  900. && i.getSpeed() < 3).collect(Collectors.toList());
  901. List<ProEconInputOrOutputSpeed> B4List = outputrecordList.stream().filter(i -> i.getSpeed() >= 3
  902. && i.getSpeed() < 3.5).collect(Collectors.toList());
  903. List<ProEconInputOrOutputSpeed> B5List = outputrecordList.stream().filter(i -> i.getSpeed() >= 3.5
  904. && i.getSpeed() < 4).collect(Collectors.toList());
  905. List<ProEconInputOrOutputSpeed> B6List = outputrecordList.stream().filter(i -> i.getSpeed() >= 4
  906. && i.getSpeed() < 5).collect(Collectors.toList());
  907. List<ProEconInputOrOutputSpeed> B7List = outputrecordList.stream().filter(i -> i.getSpeed() >= 5
  908. && i.getSpeed() <= 11).collect(Collectors.toList());
  909. summaryStatistics = outputrecordList.stream().filter(i ->
  910. i.getSpeed() > 0 && i.getSpeed() < 5)
  911. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  912. total1.setDayOutputSmall(summaryStatistics.getAverage());
  913. total1.setDayOutputSmallMax(summaryStatistics.getMax());
  914. total1.setDayOutputSmallMin(summaryStatistics.getMin());
  915. summaryStatistics = outputrecordList.stream().filter(i ->
  916. i.getSpeed() > 18 && i.getSpeed() < 30)
  917. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  918. total1.setDayOutputBig(summaryStatistics.getAverage());
  919. total1.setDayOutputBigMax(summaryStatistics.getMax());
  920. total1.setDayOutputBigMin(summaryStatistics.getMin());
  921. total2.setDaya1((double) B1List.size());
  922. total2.setDaya2((double) B2List.size());
  923. total2.setDaya3((double) B3List.size());
  924. total2.setDaya4((double) B4List.size());
  925. total2.setDaya5((double) B5List.size());
  926. total2.setDaya6((double) B6List.size());
  927. total2.setDaya7((double) B7List.size());
  928. count = B1List.size() + B2List.size() + B3List.size() + B4List.size() + B5List.size() + B6List.size() + B7List.size();
  929. if (count > 0) {
  930. total2.setDaya8(new BigDecimal(B1List.size()).divide(new BigDecimal(count),
  931. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  932. total2.setDaya9(new BigDecimal(B2List.size()).divide(new BigDecimal(count),
  933. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  934. total2.setDaya10(new BigDecimal(B3List.size()).divide(new BigDecimal(count),
  935. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  936. total2.setDaya11(new BigDecimal(B4List.size()).divide(new BigDecimal(count),
  937. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  938. total2.setDaya12(new BigDecimal(B5List.size()).divide(new BigDecimal(count),
  939. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  940. total2.setDaya13(new BigDecimal(B6List.size()).divide(new BigDecimal(count),
  941. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  942. total2.setDaya14(new BigDecimal(B7List.size()).divide(new BigDecimal(count),
  943. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  944. } else {
  945. total2.setDaya8(0.0);
  946. total2.setDaya9(0.0);
  947. total2.setDaya10(0.0);
  948. total2.setDaya11(0.0);
  949. total2.setDaya12(0.0);
  950. total2.setDaya13(0.0);
  951. total2.setDaya14(0.0);
  952. }
  953. }
  954. private void buildMonth(Date end, Date monthbegin, String windturbineId, ProEconInOrOutSpeedTotal total1, ProEconInOrOutSpeedTotal2 total2) {
  955. int count;
  956. QueryWrapper<ProEconInputOrOutputSpeed> queryWrapper = new QueryWrapper<>();
  957. queryWrapper.ge("record_date",monthbegin).le("record_date",end).eq("windturbine_id",windturbineId).isNotNull("speed");
  958. List<ProEconInputOrOutputSpeed> recordList = proEconInputOrOutputSpeedService.list(queryWrapper);
  959. // .stream()
  960. // .filter(i -> i.getWindturbineId().equals(windturbineId) && StringUtils.notEmp(i.getSpeed())
  961. // && (i.getRecordDate().compareTo(monthbegin) == 0 || i.getRecordDate().after(monthbegin))
  962. // && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
  963. // && i.getSpeed() != 0).collect(Collectors.toList());
  964. List<ProEconInputOrOutputSpeed> inputrecordList = recordList.stream()
  965. .filter(i -> i.getInputOrOutput() == 1).collect(Collectors.toList());
  966. List<ProEconInputOrOutputSpeed> outputrecordList = recordList.stream()
  967. .filter(i -> i.getInputOrOutput() == 0).collect(Collectors.toList());
  968. List<ProEconInputOrOutputSpeed> AList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  969. && i.getSpeed() <= 3).collect(Collectors.toList());
  970. List<ProEconInputOrOutputSpeed> ACountList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  971. && i.getSpeed() <= 11).collect(Collectors.toList());
  972. List<ProEconInputOrOutputSpeed> BList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  973. && i.getSpeed() <= 3).collect(Collectors.toList());
  974. List<ProEconInputOrOutputSpeed> BCountList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  975. && i.getSpeed() <= 11).collect(Collectors.toList());
  976. List<ProEconInputOrOutputSpeed> CList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  977. && i.getSpeed() >= 25).collect(Collectors.toList());
  978. List<ProEconInputOrOutputSpeed> CCountList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  979. && i.getSpeed() > 11).collect(Collectors.toList());
  980. List<ProEconInputOrOutputSpeed> DList = outputrecordList.stream().filter(i -> i.getSpeed() >= 25).collect(Collectors.toList());
  981. List<ProEconInputOrOutputSpeed> DCountList = outputrecordList
  982. .stream().filter(i -> i.getSpeed() > 11).collect(Collectors.toList());
  983. if (ACountList.size() != 0) {
  984. total1.setMonthInputSmallRatio(new BigDecimal(AList.size()).divide(new BigDecimal(ACountList.size()),
  985. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  986. } else {
  987. total1.setMonthInputSmallRatio(0.0);
  988. }
  989. if (BCountList.size() != 0) {
  990. total1.setMonthOutputSmallRatio(new BigDecimal(BList.size()).divide(new BigDecimal(BCountList.size()),
  991. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  992. } else {
  993. total1.setMonthOutputSmallRatio(0.0);
  994. }
  995. if (CCountList.size() != 0) {
  996. total1.setMonthInputBigRatio(new BigDecimal(CList.size()).divide(new BigDecimal(CCountList.size()),
  997. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  998. } else {
  999. total1.setMonthInputBigRatio(0.0);
  1000. }
  1001. if (DCountList.size() != 0) {
  1002. total1.setMonthOutputBigRatio(new BigDecimal(DList.size()).divide(new BigDecimal(DCountList.size()),
  1003. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1004. } else {
  1005. total1.setMonthOutputBigRatio(0.0);
  1006. }
  1007. List<ProEconInputOrOutputSpeed> A1List = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  1008. && i.getSpeed() < 2).collect(Collectors.toList());
  1009. List<ProEconInputOrOutputSpeed> A2List = inputrecordList.stream().filter(i -> i.getSpeed() >= 2
  1010. && i.getSpeed() < 2.5).collect(Collectors.toList());
  1011. List<ProEconInputOrOutputSpeed> A3List = inputrecordList.stream().filter(i -> i.getSpeed() >= 2.5
  1012. && i.getSpeed() < 3).collect(Collectors.toList());
  1013. List<ProEconInputOrOutputSpeed> A4List = inputrecordList.stream().filter(i -> i.getSpeed() >= 3
  1014. && i.getSpeed() < 3.5).collect(Collectors.toList());
  1015. List<ProEconInputOrOutputSpeed> A5List = inputrecordList.stream().filter(i -> i.getSpeed() >= 3.5
  1016. && i.getSpeed() < 4).collect(Collectors.toList());
  1017. List<ProEconInputOrOutputSpeed> A6List = inputrecordList.stream().filter(i -> i.getSpeed() >= 4
  1018. && i.getSpeed() < 5).collect(Collectors.toList());
  1019. List<ProEconInputOrOutputSpeed> A7List = inputrecordList.stream().filter(i -> i.getSpeed() >= 5
  1020. && i.getSpeed() <= 11).collect(Collectors.toList());
  1021. DoubleSummaryStatistics summaryStatistics = inputrecordList.stream().filter(i ->
  1022. i.getSpeed() > 0 && i.getSpeed() < 5)
  1023. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1024. total1.setMonthInputSmall(summaryStatistics.getAverage());
  1025. total1.setMonthInputSmallMax(summaryStatistics.getMax());
  1026. total1.setMonthInputSmallMin(summaryStatistics.getMin());
  1027. summaryStatistics = inputrecordList.stream().filter(i ->
  1028. i.getSpeed() > 18 && i.getSpeed() < 30)
  1029. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1030. total1.setMonthInputBig(summaryStatistics.getAverage());
  1031. total1.setMonthInputBigMax(summaryStatistics.getMax());
  1032. total1.setMonthInputBigMin(summaryStatistics.getMin());
  1033. total2.setMontha1((double) A1List.size());
  1034. total2.setMontha2((double) A2List.size());
  1035. total2.setMontha3((double) A3List.size());
  1036. total2.setMontha4((double) A4List.size());
  1037. total2.setMontha5((double) A5List.size());
  1038. total2.setMontha6((double) A6List.size());
  1039. total2.setMontha7((double) A7List.size());
  1040. count = A1List.size() + A2List.size() + A3List.size() + A4List.size() + A5List.size() + A6List.size() + A7List.size();
  1041. if (count > 0) {
  1042. total2.setMontha8(new BigDecimal(A1List.size()).divide(new BigDecimal(count),
  1043. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1044. total2.setMontha9(new BigDecimal(A2List.size()).divide(new BigDecimal(count),
  1045. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1046. total2.setMontha10(new BigDecimal(A3List.size()).divide(new BigDecimal(count),
  1047. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1048. total2.setMontha11(new BigDecimal(A4List.size()).divide(new BigDecimal(count),
  1049. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1050. total2.setMontha12(new BigDecimal(A5List.size()).divide(new BigDecimal(count),
  1051. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1052. total2.setMontha13(new BigDecimal(A6List.size()).divide(new BigDecimal(count),
  1053. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1054. total2.setMontha14(new BigDecimal(A7List.size()).divide(new BigDecimal(count),
  1055. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1056. } else {
  1057. total2.setMontha8(0.0);
  1058. total2.setMontha9(0.0);
  1059. total2.setMontha10(0.0);
  1060. total2.setMontha11(0.0);
  1061. total2.setMontha12(0.0);
  1062. total2.setMontha13(0.0);
  1063. total2.setMontha14(0.0);
  1064. }
  1065. List<ProEconInputOrOutputSpeed> B1List = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  1066. && i.getSpeed() < 2).collect(Collectors.toList());
  1067. List<ProEconInputOrOutputSpeed> B2List = outputrecordList.stream().filter(i -> i.getSpeed() >= 2
  1068. && i.getSpeed() < 2.5).collect(Collectors.toList());
  1069. List<ProEconInputOrOutputSpeed> B3List = outputrecordList.stream().filter(i -> i.getSpeed() >= 2.5
  1070. && i.getSpeed() < 3).collect(Collectors.toList());
  1071. List<ProEconInputOrOutputSpeed> B4List = outputrecordList.stream().filter(i -> i.getSpeed() >= 3
  1072. && i.getSpeed() < 3.5).collect(Collectors.toList());
  1073. List<ProEconInputOrOutputSpeed> B5List = outputrecordList.stream().filter(i -> i.getSpeed() >= 3.5
  1074. && i.getSpeed() < 4).collect(Collectors.toList());
  1075. List<ProEconInputOrOutputSpeed> B6List = outputrecordList.stream().filter(i -> i.getSpeed() >= 4
  1076. && i.getSpeed() < 5).collect(Collectors.toList());
  1077. List<ProEconInputOrOutputSpeed> B7List = outputrecordList.stream().filter(i -> i.getSpeed() >= 5
  1078. && i.getSpeed() <= 11).collect(Collectors.toList());
  1079. summaryStatistics = outputrecordList.stream().filter(i ->
  1080. i.getSpeed() > 0 && i.getSpeed() < 5)
  1081. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1082. total1.setMonthOutputSmall(summaryStatistics.getAverage());
  1083. total1.setMonthOutputSmallMax(summaryStatistics.getMax());
  1084. total1.setMonthOutputSmallMin(summaryStatistics.getMin());
  1085. summaryStatistics = outputrecordList.stream().filter(i ->
  1086. i.getSpeed() > 18 && i.getSpeed() < 30)
  1087. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1088. total1.setMonthOutputBig(summaryStatistics.getAverage());
  1089. total1.setMonthOutputBigMax(summaryStatistics.getMax());
  1090. total1.setMonthOutputBigMin(summaryStatistics.getMin());
  1091. total2.setMontha1((double) B1List.size());
  1092. total2.setMontha2((double) B2List.size());
  1093. total2.setMontha3((double) B3List.size());
  1094. total2.setMontha4((double) B4List.size());
  1095. total2.setMontha5((double) B5List.size());
  1096. total2.setMontha6((double) B6List.size());
  1097. total2.setMontha7((double) B7List.size());
  1098. count = B1List.size() + B2List.size() + B3List.size() + B4List.size() + B5List.size() + B6List.size() + B7List.size();
  1099. if (count > 0) {
  1100. total2.setMontha8(new BigDecimal(B1List.size()).divide(new BigDecimal(count),
  1101. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1102. total2.setMontha9(new BigDecimal(B2List.size()).divide(new BigDecimal(count),
  1103. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1104. total2.setMontha10(new BigDecimal(B3List.size()).divide(new BigDecimal(count),
  1105. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1106. total2.setMontha11(new BigDecimal(B4List.size()).divide(new BigDecimal(count),
  1107. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1108. total2.setMontha12(new BigDecimal(B5List.size()).divide(new BigDecimal(count),
  1109. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1110. total2.setMontha13(new BigDecimal(B6List.size()).divide(new BigDecimal(count),
  1111. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1112. total2.setMontha14(new BigDecimal(B7List.size()).divide(new BigDecimal(count),
  1113. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1114. } else {
  1115. total2.setMontha8(0.0);
  1116. total2.setMontha9(0.0);
  1117. total2.setMontha10(0.0);
  1118. total2.setMontha11(0.0);
  1119. total2.setMontha12(0.0);
  1120. total2.setMontha13(0.0);
  1121. total2.setMontha14(0.0);
  1122. }
  1123. }
  1124. private void buildyear(Date end, Date yearbegin, String windturbineId, ProEconInOrOutSpeedTotal total1, ProEconInOrOutSpeedTotal2 total2) {
  1125. int count;
  1126. QueryWrapper<ProEconInputOrOutputSpeed> queryWrapper = new QueryWrapper<>();
  1127. queryWrapper.ge("record_date",yearbegin).le("record_date",end).eq("windturbine_id",windturbineId).isNotNull("speed");
  1128. List<ProEconInputOrOutputSpeed> recordList = proEconInputOrOutputSpeedService.list(queryWrapper);
  1129. // .stream()
  1130. // .filter(i -> i.getWindturbineId().equals(windturbineId) && StringUtils.notEmp(i.getSpeed())
  1131. // && (i.getRecordDate().compareTo(yearbegin) == 0 || i.getRecordDate().after(yearbegin))
  1132. // && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
  1133. // && i.getSpeed() != 0).collect(Collectors.toList());
  1134. List<ProEconInputOrOutputSpeed> inputrecordList = recordList.stream()
  1135. .filter(i -> i.getInputOrOutput() == 1).collect(Collectors.toList());
  1136. List<ProEconInputOrOutputSpeed> outputrecordList = recordList.stream()
  1137. .filter(i -> i.getInputOrOutput() == 0).collect(Collectors.toList());
  1138. List<ProEconInputOrOutputSpeed> AList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  1139. && i.getSpeed() <= 3).collect(Collectors.toList());
  1140. List<ProEconInputOrOutputSpeed> ACountList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  1141. && i.getSpeed() <= 11).collect(Collectors.toList());
  1142. List<ProEconInputOrOutputSpeed> BList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  1143. && i.getSpeed() <= 3).collect(Collectors.toList());
  1144. List<ProEconInputOrOutputSpeed> BCountList = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  1145. && i.getSpeed() <= 11).collect(Collectors.toList());
  1146. List<ProEconInputOrOutputSpeed> CList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  1147. && i.getSpeed() >= 25).collect(Collectors.toList());
  1148. List<ProEconInputOrOutputSpeed> CCountList = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  1149. && i.getSpeed() > 11).collect(Collectors.toList());
  1150. List<ProEconInputOrOutputSpeed> DList = outputrecordList.stream().filter(i -> i.getSpeed() >= 25).collect(Collectors.toList());
  1151. List<ProEconInputOrOutputSpeed> DCountList = outputrecordList
  1152. .stream().filter(i -> i.getSpeed() > 11).collect(Collectors.toList());
  1153. if (ACountList.size() != 0) {
  1154. total1.setYearInputSmallRatio(new BigDecimal(AList.size()).divide(new BigDecimal(ACountList.size()),
  1155. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1156. } else {
  1157. total1.setYearInputSmallRatio(0.0);
  1158. }
  1159. if (BCountList.size() != 0) {
  1160. total1.setYearOutputSmallRatio(new BigDecimal(BList.size()).divide(new BigDecimal(BCountList.size()),
  1161. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1162. } else {
  1163. total1.setYearOutputSmallRatio(0.0);
  1164. }
  1165. if (CCountList.size() != 0) {
  1166. total1.setYearInputBigRatio(new BigDecimal(CList.size()).divide(new BigDecimal(CCountList.size()),
  1167. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1168. } else {
  1169. total1.setYearInputBigRatio(0.0);
  1170. }
  1171. if (DCountList.size() != 0) {
  1172. total1.setYearOutputBigRatio(new BigDecimal(DList.size()).divide(new BigDecimal(DCountList.size()),
  1173. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1174. } else {
  1175. total1.setYearOutputBigRatio(0.0);
  1176. }
  1177. List<ProEconInputOrOutputSpeed> A1List = inputrecordList.stream().filter(i -> i.getSpeed() > 0
  1178. && i.getSpeed() < 2).collect(Collectors.toList());
  1179. List<ProEconInputOrOutputSpeed> A2List = inputrecordList.stream().filter(i -> i.getSpeed() >= 2
  1180. && i.getSpeed() < 2.5).collect(Collectors.toList());
  1181. List<ProEconInputOrOutputSpeed> A3List = inputrecordList.stream().filter(i -> i.getSpeed() >= 2.5
  1182. && i.getSpeed() < 3).collect(Collectors.toList());
  1183. List<ProEconInputOrOutputSpeed> A4List = inputrecordList.stream().filter(i -> i.getSpeed() >= 3
  1184. && i.getSpeed() < 3.5).collect(Collectors.toList());
  1185. List<ProEconInputOrOutputSpeed> A5List = inputrecordList.stream().filter(i -> i.getSpeed() >= 3.5
  1186. && i.getSpeed() < 4).collect(Collectors.toList());
  1187. List<ProEconInputOrOutputSpeed> A6List = inputrecordList.stream().filter(i -> i.getSpeed() >= 4
  1188. && i.getSpeed() < 5).collect(Collectors.toList());
  1189. List<ProEconInputOrOutputSpeed> A7List = inputrecordList.stream().filter(i -> i.getSpeed() >= 5
  1190. && i.getSpeed() <= 11).collect(Collectors.toList());
  1191. DoubleSummaryStatistics summaryStatistics = inputrecordList.stream().filter(i ->
  1192. i.getSpeed() > 0 && i.getSpeed() < 5)
  1193. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1194. total1.setYearInputSmall(summaryStatistics.getAverage());
  1195. total1.setYearInputSmallMax(summaryStatistics.getMax());
  1196. total1.setYearInputSmallMin(summaryStatistics.getMin());
  1197. summaryStatistics = inputrecordList.stream().filter(i ->
  1198. i.getSpeed() > 18 && i.getSpeed() < 30)
  1199. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1200. total1.setYearInputBig(summaryStatistics.getAverage());
  1201. total1.setYearInputBigMax(summaryStatistics.getMax());
  1202. total1.setYearInputBigMin(summaryStatistics.getMin());
  1203. total2.setYeara1((double) A1List.size());
  1204. total2.setYeara2((double) A2List.size());
  1205. total2.setYeara3((double) A3List.size());
  1206. total2.setYeara4((double) A4List.size());
  1207. total2.setYeara5((double) A5List.size());
  1208. total2.setYeara6((double) A6List.size());
  1209. total2.setYeara7((double) A7List.size());
  1210. count = A1List.size() + A2List.size() + A3List.size() + A4List.size() + A5List.size() + A6List.size() + A7List.size();
  1211. if (count > 0) {
  1212. total2.setYeara8(new BigDecimal(A1List.size()).divide(new BigDecimal(count),
  1213. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1214. total2.setYeara9(new BigDecimal(A2List.size()).divide(new BigDecimal(count),
  1215. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1216. total2.setYeara10(new BigDecimal(A3List.size()).divide(new BigDecimal(count),
  1217. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1218. total2.setYeara11(new BigDecimal(A4List.size()).divide(new BigDecimal(count),
  1219. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1220. total2.setYeara12(new BigDecimal(A5List.size()).divide(new BigDecimal(count),
  1221. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1222. total2.setYeara13(new BigDecimal(A6List.size()).divide(new BigDecimal(count),
  1223. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1224. total2.setYeara14(new BigDecimal(A7List.size()).divide(new BigDecimal(count),
  1225. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1226. } else {
  1227. total2.setYeara8(0.0);
  1228. total2.setYeara9(0.0);
  1229. total2.setYeara10(0.0);
  1230. total2.setYeara11(0.0);
  1231. total2.setYeara12(0.0);
  1232. total2.setYeara13(0.0);
  1233. total2.setYeara14(0.0);
  1234. }
  1235. List<ProEconInputOrOutputSpeed> B1List = outputrecordList.stream().filter(i -> i.getSpeed() > 0
  1236. && i.getSpeed() < 2).collect(Collectors.toList());
  1237. List<ProEconInputOrOutputSpeed> B2List = outputrecordList.stream().filter(i -> i.getSpeed() >= 2
  1238. && i.getSpeed() < 2.5).collect(Collectors.toList());
  1239. List<ProEconInputOrOutputSpeed> B3List = outputrecordList.stream().filter(i -> i.getSpeed() >= 2.5
  1240. && i.getSpeed() < 3).collect(Collectors.toList());
  1241. List<ProEconInputOrOutputSpeed> B4List = outputrecordList.stream().filter(i -> i.getSpeed() >= 3
  1242. && i.getSpeed() < 3.5).collect(Collectors.toList());
  1243. List<ProEconInputOrOutputSpeed> B5List = outputrecordList.stream().filter(i -> i.getSpeed() >= 3.5
  1244. && i.getSpeed() < 4).collect(Collectors.toList());
  1245. List<ProEconInputOrOutputSpeed> B6List = outputrecordList.stream().filter(i -> i.getSpeed() >= 4
  1246. && i.getSpeed() < 5).collect(Collectors.toList());
  1247. List<ProEconInputOrOutputSpeed> B7List = outputrecordList.stream().filter(i -> i.getSpeed() >= 5
  1248. && i.getSpeed() <= 11).collect(Collectors.toList());
  1249. summaryStatistics = outputrecordList.stream().filter(i ->
  1250. i.getSpeed() > 0 && i.getSpeed() < 5)
  1251. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1252. total1.setYearOutputSmall(summaryStatistics.getAverage());
  1253. total1.setYearOutputSmallMax(summaryStatistics.getMax());
  1254. total1.setYearOutputSmallMin(summaryStatistics.getMin());
  1255. summaryStatistics = outputrecordList.stream().filter(i ->
  1256. i.getSpeed() > 18 && i.getSpeed() < 30)
  1257. .mapToDouble(ProEconInputOrOutputSpeed::getSpeed).summaryStatistics();
  1258. total1.setYearOutputBig(summaryStatistics.getAverage());
  1259. total1.setYearOutputBigMax(summaryStatistics.getMax());
  1260. total1.setYearOutputBigMin(summaryStatistics.getMin());
  1261. total2.setYeara1((double) B1List.size());
  1262. total2.setYeara2((double) B2List.size());
  1263. total2.setYeara3((double) B3List.size());
  1264. total2.setYeara4((double) B4List.size());
  1265. total2.setYeara5((double) B5List.size());
  1266. total2.setYeara6((double) B6List.size());
  1267. total2.setYeara7((double) B7List.size());
  1268. count = B1List.size() + B2List.size() + B3List.size() + B4List.size() + B5List.size() + B6List.size() + B7List.size();
  1269. if (count > 0) {
  1270. total2.setYeara8(new BigDecimal(B1List.size()).divide(new BigDecimal(count),
  1271. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1272. total2.setYeara9(new BigDecimal(B2List.size()).divide(new BigDecimal(count),
  1273. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1274. total2.setYeara10(new BigDecimal(B3List.size()).divide(new BigDecimal(count),
  1275. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1276. total2.setYeara11(new BigDecimal(B4List.size()).divide(new BigDecimal(count),
  1277. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1278. total2.setYeara12(new BigDecimal(B5List.size()).divide(new BigDecimal(count),
  1279. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1280. total2.setYeara13(new BigDecimal(B6List.size()).divide(new BigDecimal(count),
  1281. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1282. total2.setYeara14(new BigDecimal(B7List.size()).divide(new BigDecimal(count),
  1283. 4, RoundingMode.HALF_EVEN).multiply(new BigDecimal(100)).doubleValue());
  1284. } else {
  1285. total2.setYeara8(0.0);
  1286. total2.setYeara9(0.0);
  1287. total2.setYeara10(0.0);
  1288. total2.setYeara11(0.0);
  1289. total2.setYeara12(0.0);
  1290. total2.setYeara13(0.0);
  1291. total2.setYeara14(0.0);
  1292. }
  1293. }
  1294. }