HealthJudgeService.java 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. package com.gyee.healthmodel.service;
  2. import com.gyee.common.contant.ContantXk;
  3. import com.gyee.common.model.PointData;
  4. import com.gyee.healthmodel.init.CacheContext;
  5. import com.gyee.healthmodel.model.auto.*;
  6. import com.gyee.healthmodel.model.vo.AlarmCustomType;
  7. import com.gyee.healthmodel.model.vo.AlarmStatVo;
  8. import com.gyee.healthmodel.model.vo.StatusDetailValue;
  9. import com.gyee.healthmodel.service.auto.*;
  10. import com.gyee.healthmodel.util.*;
  11. import com.gyee.healthmodel.vo.healthsystem.HealthExpression;
  12. import com.gyee.healthmodel.vo.healthsystem.ResultVo;
  13. import org.slf4j.Logger;
  14. import org.slf4j.LoggerFactory;
  15. import org.springframework.stereotype.Service;
  16. import javax.annotation.Resource;
  17. import java.math.BigDecimal;
  18. import java.math.RoundingMode;
  19. import java.util.*;
  20. import java.util.Map.Entry;
  21. @Service
  22. public class HealthJudgeService {
  23. private static Logger logger = LoggerFactory.getLogger(HealthJudgeService.class);
  24. @Resource
  25. private IProEconHealthSystemService proEconHealthSystemService;
  26. @Resource
  27. private IProEconHealthSystemSubService proEconHealthSystemSubService;
  28. @Resource
  29. private IProEconStateJudgmentDayService proEconStateJudgmentDayService;
  30. @Resource
  31. private IProEconStateJudgmentRealService proEconStateJudgmentRealService;
  32. @Resource
  33. private HealthInitialService healthInitialService;
  34. @Resource
  35. private HealthFactoryService healthFactoryService;
  36. private final double judgescore = 80;
  37. @Resource
  38. private IProBasicEquipmentPointService proBasicEquipmentPointsService;
  39. IRealTimeDataBaseUtil realApiUtil = RealTimeDataBaseFactory.createRealTimeDataBase();
  40. @Resource
  41. private AlarmHistoryService alarmHistoryService;
  42. public void changeHealthModelValue() throws Exception {
  43. healthInitialService.healthChangeInitial();// 初始化函数算法模型数据
  44. List<String> codels = new ArrayList<String>();
  45. codels.add(ContantXk.JKZT002);
  46. codels.add(ContantXk.JKZT003);
  47. codels.add(ContantXk.JKZT004);
  48. codels.add(ContantXk.JKZT005);
  49. List<ProEconStateJudgmentReal> pols = new ArrayList<>();
  50. for (ProBasicEquipment wt : CacheContext.wtls) {
  51. if (wt.getWindpowerstationId().contains("FDC")) {
  52. ProEconStateJudgmentReal po = new ProEconStateJudgmentReal();
  53. po.setId(com.gyee.common.model.StringUtils.getUUID());
  54. po.setWpId(wt.getWindpowerstationId());
  55. po.setWtId(wt.getId());
  56. StringBuilder statejudgment = new StringBuilder();
  57. double fjzt = 0;
  58. double score = 100;
  59. ProBasicEquipmentPoint ai = proBasicEquipmentPointsService.getEquipmentPoint(wt.getId(), ContantXk.MXZT);
  60. PointData point = realApiUtil.getRealData(ai);
  61. if (StringUtils.notEmp(point)) {
  62. if (point.getPointValueInDouble() == StatusDetailValue.GZ.getCode()) {
  63. fjzt = StatusDetailValue.GZ.getCode();
  64. }
  65. if (point.getPointValueInDouble() == StatusDetailValue.JX.getCode()) {
  66. fjzt = StatusDetailValue.JX.getCode();
  67. }
  68. }
  69. // String[] points = new String[codels.size()];
  70. List<String> points = new ArrayList<>();
  71. for (int i = 0; i < codels.size(); i++) {
  72. if (CacheContext.wtpAimap.containsKey(wt.getId())) {
  73. Map<String, ProBasicEquipmentPoint> wtmap = CacheContext.wtpAimap.get(wt.getId());
  74. // 判断是否包含该统一编码
  75. if (wtmap.containsKey(codels.get(i))) {
  76. ProBasicEquipmentPoint temp = wtmap.get(codels.get(i));
  77. points.add(temp.getNemCode());
  78. }
  79. }
  80. }
  81. ProBasicEquipmentPoint fjjkzf = proBasicEquipmentPointsService.getEquipmentPoint(wt.getId(), ContantXk.JKZT100);
  82. List<PointData> ssvalues = realApiUtil.getRealData(points);
  83. PointData fjjkzfpoint = new PointData();
  84. fjjkzfpoint.setEdnaId(fjjkzf.getNemCode());
  85. fjjkzfpoint.setPointTime(new BigDecimal(new Date().getTime()).divide(new BigDecimal(1000), 0, RoundingMode.HALF_EVEN).longValue());
  86. double clxzt = 0.0;
  87. double fdjzt = 0.0;
  88. double bjzt = 0.0;
  89. double zkzt = 0.0;
  90. if (ssvalues.size() == 4) {
  91. clxzt = ssvalues.get(0).getPointValueInDouble();
  92. fdjzt = ssvalues.get(1).getPointValueInDouble();
  93. bjzt = ssvalues.get(2).getPointValueInDouble();
  94. zkzt = ssvalues.get(3).getPointValueInDouble();
  95. }
  96. // 出现故障状态,直接降到10分 差
  97. if (fjzt ==StatusDetailValue.GZ.getCode() || fjzt ==StatusDetailValue.JX.getCode()) {
  98. score = 9.0;
  99. statejudgment.append("1-");
  100. } else {
  101. statejudgment.append("0-");
  102. }
  103. if(clxzt==4 || fdjzt==4 || bjzt==4 || zkzt==4)
  104. {
  105. score=setScoreValue(score);
  106. statejudgment.append("1-");
  107. }else if(clxzt==3 || fdjzt==3 || bjzt==3 || zkzt==3)
  108. {
  109. score=setScoreValue(score);
  110. statejudgment.append("1-");
  111. }else {
  112. statejudgment.append("0-");
  113. }
  114. Map<String, Double> xnmap=HealthInitialService.djpgchagemap;
  115. if (xnmap.containsKey(wt.getId())) {
  116. double djpgscore = xnmap.get(wt.getId());
  117. if (djpgscore < 60) {
  118. score=setScoreValue(score);
  119. statejudgment.append("1-");
  120. }else {
  121. statejudgment.append("0-");
  122. }
  123. } else {
  124. statejudgment.append("0-");
  125. }
  126. Map<String, Double> xfpdmap=HealthInitialService.xfpdchagemap;
  127. if(xfpdmap.containsKey(wt.getId()))
  128. {
  129. double xfqrqc =xfpdmap.get(wt.getId());
  130. //小风曲线偏差
  131. if (xfqrqc > 5) {
  132. score=setScoreValue(score);
  133. statejudgment.append("1-");
  134. } else {
  135. statejudgment.append("0-");
  136. }
  137. }else {
  138. statejudgment.append("0-");
  139. }
  140. Map<String, Double> clpdmap=HealthInitialService.clpdchagemap;
  141. if(clpdmap.containsKey(wt.getId()))
  142. {
  143. double zcclqc =clpdmap.get(wt.getId());
  144. //正常出力曲线偏差
  145. if (zcclqc > 5) {
  146. score=setScoreValue(score);
  147. statejudgment.append("1-");
  148. } else {
  149. statejudgment.append("0-");
  150. }
  151. }else {
  152. statejudgment.append("0-");
  153. }
  154. Map<String, Double> dfpdmap=HealthInitialService.dfpdchagemap;
  155. if(dfpdmap.containsKey(wt.getId()))
  156. {
  157. double dfqrqc =dfpdmap.get(wt.getId());
  158. //大风曲线偏差
  159. if (dfqrqc > 5) {
  160. score=setScoreValue(score);
  161. statejudgment.append("1-");
  162. } else {
  163. statejudgment.append("0-");
  164. }
  165. }else {
  166. statejudgment.append("0-");
  167. }
  168. po.setStateJudgment(String.valueOf(statejudgment.substring(0, statejudgment.length() - 1)));
  169. pols.add(po);
  170. fjjkzfpoint.setPointValueInDouble(score);
  171. realApiUtil.updatePoint(fjjkzfpoint);
  172. }
  173. }
  174. proEconStateJudgmentRealService.deleteProEconStateJudgmentReal();
  175. if (!pols.isEmpty()) {
  176. proEconStateJudgmentRealService.saveOrUpdateBatch(pols);
  177. // for (ProEconStateJudgmentReal po : pols) {
  178. // proEconStateJudgmentRealService.insertStatejudgmentrecord(po);
  179. // }
  180. }
  181. System.out.println("结束健康模型分数计算!");
  182. }
  183. private double setScoreValue(double score) {
  184. if (score >= 90) {
  185. score = score - 12.0;
  186. } else if (score < 90 && score >= 60) {
  187. score = score -9;
  188. } else if (score < 60 && score >= 30) {
  189. score = score -6;
  190. } else if (score < 30 && score >= 10) {
  191. score = score -3;
  192. } else {
  193. score = 9.0;
  194. }
  195. return score;
  196. }
  197. public void healthJudge() throws Exception {
  198. ScriptJava sj = new ScriptJava();
  199. healthInitialService.healthInitial();// 初始化函数算法模型数据
  200. Map<String, Integer> maps = new HashMap<>();
  201. Map<String, List<ProEconHealthSystemSub>> hsmap = new HashMap<>();
  202. Map<String, HcEnum> hcmap = new HashMap<>();
  203. Map<String, Object> parmarsmap = new HashMap<>();
  204. for (HcEnum e : HcEnum.values()) {
  205. hcmap.put(e.getName(), e);
  206. }
  207. List<ProEconHealthSystem> hsls = proEconHealthSystemService.queryHealthSystem();
  208. Map<String, List<ProEconHealthSystemSub>> map = proEconHealthSystemSubService.queryHealthSystemSubMap();
  209. if (!hsls.isEmpty()) {
  210. for (ProEconHealthSystem hs : hsls) {
  211. if (map.containsKey(hs.getId())) {
  212. List<ProEconHealthSystemSub> subls = map.get(hs.getId());
  213. if (!subls.isEmpty()) {
  214. StringBuilder sb = new StringBuilder();
  215. sb.append(hs.getWpId()).append("_").append(hs.getModelId());
  216. if (!hsmap.containsKey(String.valueOf(sb))) {
  217. hsmap.put(String.valueOf(sb), subls);
  218. }
  219. }
  220. }
  221. }
  222. }
  223. proEconStateJudgmentDayService.deleteProEconStateJudgmentDay();
  224. List<ProEconStateJudgmentDay> polist = new ArrayList<>();
  225. for (ProBasicEquipment wt : CacheContext.wtls) {
  226. if (wt.getWindpowerstationId().contains("FDC")) {
  227. StringBuilder sb = new StringBuilder();
  228. sb.append(wt.getWindpowerstationId()).append("_").append(wt.getModelId());
  229. if (hsmap.containsKey(String.valueOf(sb))) {
  230. List<ProEconHealthSystemSub> subls = hsmap.get(String.valueOf(sb));
  231. if (!subls.isEmpty()) {
  232. List<String> descls = new ArrayList<>();
  233. List<String> formulals = new ArrayList<>();
  234. double score = 100;
  235. for (ProEconHealthSystemSub sub : subls) {
  236. if (StringUtils.notEmp(sub.getFormula())) {
  237. HealthExpression healthExpression = HealthAnalyzer.getHealthExpression(sub.getFormula());
  238. ArrayList<String> ucs = healthExpression.getAllUniformCodes();
  239. judgeParams(hcmap, parmarsmap, wt, ucs);
  240. }
  241. Object obj = sj.getCalValue(sub.getFormula(), parmarsmap);
  242. if (obj instanceof Boolean) {
  243. boolean value = Boolean.valueOf(String.valueOf(obj));
  244. if (value) {
  245. descls.add(sub.getName());
  246. formulals.add(sub.getFormula());
  247. double tempscore = null != sub.getFormulaScore() ? sub.getFormulaScore() : 0.0;
  248. score = score - tempscore;
  249. }
  250. }
  251. }
  252. ProEconStateJudgmentDay po = new ProEconStateJudgmentDay();
  253. po.setWpId(wt.getWindpowerstationId());
  254. po.setWtId(wt.getId());
  255. Calendar c = Calendar.getInstance();
  256. c.set(Calendar.HOUR_OF_DAY, 0);
  257. c.set(Calendar.MINUTE, 0);
  258. c.set(Calendar.SECOND, 0);
  259. po.setRecordDate(c.getTime());
  260. StringBuilder sb2 = new StringBuilder();
  261. if (!descls.isEmpty()) {
  262. for (String str : descls) {
  263. sb2.append(str).append(",");
  264. }
  265. String st = String.valueOf(sb2);
  266. po.setStateJudgment(st.substring(0, st.length() - 1));
  267. }
  268. StringBuilder sb3 = new StringBuilder();
  269. if (!formulals.isEmpty()) {
  270. for (String str : formulals) {
  271. sb3.append(str).append(",");
  272. }
  273. String st = String.valueOf(sb3);
  274. po.setFormulas(st.substring(0, st.length() - 1));
  275. }
  276. sb3 = new StringBuilder();
  277. if (!descls.isEmpty()) {
  278. for (String str : descls) {
  279. sb3.append(str).append(",");
  280. }
  281. String st = String.valueOf(sb3);
  282. po.setFormulasText(st.substring(0, st.length() - 1));
  283. }
  284. po.setScore(score);
  285. polist.add(po);
  286. //proEconStateJudgmentDayService.insertStatejudgmentrecord(po);
  287. logger.debug("完成风机" + po.getWtId() + "_规则" + po.getStateJudgment() + "_分数" + po.getScore());
  288. }
  289. }
  290. }
  291. }
  292. if (polist != null && polist.size() > 0) {
  293. Collections.sort(polist, new Comparator<ProEconStateJudgmentDay>() {
  294. @Override
  295. public int compare(ProEconStateJudgmentDay o1, ProEconStateJudgmentDay o2) {
  296. // 从小到大
  297. return o1.getScore().compareTo(o2.getScore());
  298. }
  299. });
  300. for (int i = 0; i < polist.size(); i++) {
  301. ProEconStateJudgmentDay po = polist.get(i);
  302. Boolean isHave = false;
  303. // Boolean isHave = wobugeqsService
  304. // .isQueryThreeDayWobugeqs(po.getWtId());
  305. List<String> parts = relevancePartTopThree(CacheContext.wtmap.get(po.getWtId()));
  306. int size = parts.size();
  307. if (size > 0) {
  308. if (size == 3) {
  309. if (parts.get(0) != null) {
  310. po.setTop1(parts.get(0));
  311. } else {
  312. po.setTop1(null);
  313. }
  314. if (parts.get(1) != null) {
  315. po.setTop2(parts.get(1));
  316. } else {
  317. po.setTop2(null);
  318. }
  319. if (parts.get(2) != null) {
  320. po.setTop3(parts.get(2));
  321. } else {
  322. po.setTop3(null);
  323. }
  324. } else if (size == 2) {
  325. if (parts.get(0) != null) {
  326. po.setTop1(parts.get(0));
  327. } else {
  328. po.setTop1(null);
  329. }
  330. if (parts.get(1) != null) {
  331. po.setTop2(parts.get(1));
  332. } else {
  333. po.setTop2(null);
  334. }
  335. po.setTop3(null);
  336. } else if (size == 1) {
  337. if (parts.get(0) != null) {
  338. po.setTop1(parts.get(0));
  339. } else {
  340. po.setTop1(null);
  341. }
  342. po.setTop2(null);
  343. po.setTop3(null);
  344. }
  345. }
  346. if (StringUtils.empty(po.getTop1())) {
  347. po.setTop1("风速突变");
  348. po.setTop2("发电机轴A损坏或碳刷室温度过高");
  349. po.setTop3("单机发电机V2绕组温度传感器异常值");
  350. }
  351. if (isHave == true) {
  352. po.setJudgmentDescribe("此风机近期有故障记录,故不在推荐范围之内!");
  353. } else if (po.getScore() <= judgescore) {
  354. if (maps.containsKey(po.getWpId())) {
  355. int temp = maps.get(po.getWpId()) + 1;
  356. if (StringUtils.notEmp(po.getTop1())) {
  357. po.setJudgmentDescribe("健康报告达到推荐级别,推荐检修!");
  358. maps.put(po.getWpId(), 1);
  359. }else if (temp > 1) {
  360. po.setJudgmentDescribe("设备健康情况不良,但推荐等级偏低,还需继续观察!");
  361. } else {
  362. po.setJudgmentDescribe("健康报告达到推荐级别,推荐检修!");
  363. }
  364. maps.put(po.getWpId(), temp);
  365. } else {
  366. po.setJudgmentDescribe("健康报告达到推荐级别,推荐检修!");
  367. maps.put(po.getWpId(), 1);
  368. }
  369. //po.setJudgmentDescribe("健康报告达到推荐级别,推荐检修!");
  370. } else {
  371. po.setJudgmentDescribe("健康指标未达到推荐级别,不予推荐!");
  372. }
  373. // proEconStateJudgmentDayService.save(po);
  374. }
  375. proEconStateJudgmentDayService.saveOrUpdateBatch(polist);
  376. }
  377. }
  378. /**
  379. * 关联部件前三名新
  380. *
  381. * @param wt
  382. * @return
  383. */
  384. private List<String> relevancePartTopThree(ProBasicEquipment wt) {
  385. Calendar c = Calendar.getInstance();
  386. c.set(Calendar.HOUR_OF_DAY, 0);
  387. c.set(Calendar.MINUTE, 0);
  388. c.set(Calendar.SECOND, 0);
  389. c.add(Calendar.DAY_OF_MONTH, -1);
  390. Date date = c.getTime();
  391. c.add(Calendar.DAY_OF_MONTH, -1);
  392. Date endDate = c.getTime();
  393. c.add(Calendar.DAY_OF_MONTH, -15);
  394. Date beginDate = c.getTime();
  395. Map<String, ResultVo> map = new HashMap<String, ResultVo>();
  396. List<String> resultList = new ArrayList<String>();
  397. List<ProEconAlarmRule> voList = findArsubs(wt.getWindpowerstationId(), wt.getModelId());
  398. for (ProEconAlarmRule arv : voList) {
  399. String temp = findAlarmcount(wt.getId(),arv.getStationId(),arv.getModelId(),arv.getId(), beginDate, endDate);
  400. Double countsum = Double.parseDouble(temp);
  401. Double benchmark = countsum / 3;
  402. String yestodayTemp =findAlarmcount(wt.getId(),arv.getStationId(),arv.getModelId(),arv.getId(), date, date);
  403. Double yestodayCount =Double.valueOf(yestodayTemp);
  404. Double deviation = 0.0;
  405. if (benchmark != 0) {
  406. deviation = (double) (Math.abs((yestodayCount - benchmark)) / benchmark);
  407. } else if (yestodayCount > 0) {
  408. deviation = 1.0;
  409. }
  410. ResultVo vo = new ResultVo();
  411. vo.setBenchmark(benchmark);
  412. vo.setDeviation(deviation);
  413. vo.setYestodayCount(yestodayCount);
  414. map.put(arv.getName(), vo);
  415. }
  416. // 这里将map.entrySet()转换成list
  417. List<Entry<String, ResultVo>> list = new ArrayList<Entry<String, ResultVo>>((Collection<? extends Entry<String, ResultVo>>) map.entrySet());
  418. // 然后通过比较器来实现排序
  419. Collections.sort(list, new Comparator<Entry<String, ResultVo>>() {
  420. @Override
  421. public int compare(Entry<String, ResultVo> o1, Entry<String, ResultVo> o2) {
  422. return (o2.getValue().getDeviation()).compareTo(o1.getValue().getDeviation());
  423. }
  424. });
  425. for (int i = 0; i < list.size(); i++) {
  426. // boolean isContent = isContent(list.get(i).getValue());
  427. // if (isContent) {
  428. if (resultList.size() < 3) {
  429. resultList.add(list.get(i).getKey());
  430. } else {
  431. break;
  432. }
  433. // } else {
  434. // continue;
  435. // }
  436. }
  437. return resultList;
  438. }
  439. /***
  440. * 是否满足自定义偏差规则
  441. *
  442. */
  443. @SuppressWarnings("unused")
  444. private Boolean isContent(ResultVo vo) {
  445. boolean result = false;
  446. Double yestodayCount = vo.getYestodayCount();// 实际
  447. Double benchmark = vo.getBenchmark();// 基准
  448. int bresult = new Double(benchmark).intValue();
  449. int bit = ("" + bresult).length();
  450. if (bit == 1) {
  451. switch (bresult) {
  452. case 0:
  453. result = yestodayCount >= 1.0 ? true : false;
  454. break;
  455. case 1:
  456. result = yestodayCount >= 2.0 ? true : false;
  457. break;
  458. case 2:
  459. result = yestodayCount >= 3.0 ? true : false;
  460. break;
  461. case 3:
  462. result = yestodayCount >= 5.0 ? true : false;
  463. break;
  464. case 4:
  465. result = yestodayCount >= 6.0 ? true : false;
  466. break;
  467. case 5:
  468. result = yestodayCount >= 7.5 ? true : false;
  469. break;
  470. case 6:
  471. result = yestodayCount >= 9.0 ? true : false;
  472. break;
  473. case 7:
  474. result = yestodayCount >= 10.5 ? true : false;
  475. break;
  476. case 8:
  477. result = yestodayCount >= 12.0 ? true : false;
  478. break;
  479. case 9:
  480. result = yestodayCount >= 13.5 ? true : false;
  481. break;
  482. default:
  483. break;
  484. }
  485. } else if (bit == 2) {
  486. Integer firstDigit = getFirstDigit(bresult);
  487. if (firstDigit == 1) {
  488. result = yestodayCount >= bresult * 1.1 ? true : false;
  489. } else if (firstDigit == 2) {
  490. result = yestodayCount >= bresult * 1.05 ? true : false;
  491. } else if (firstDigit == 3 || firstDigit == 4) {
  492. result = yestodayCount >= bresult * 1.03 ? true : false;
  493. } else if (firstDigit == 5 || firstDigit == 6 || firstDigit == 7 || firstDigit == 8 || firstDigit == 9) {
  494. result = yestodayCount >= bresult * 1.03 ? true : false;
  495. } else {
  496. result = false;
  497. }
  498. } else {
  499. Integer firstDigit = getFirstDigit(bresult);
  500. if (firstDigit == 1) {
  501. result = yestodayCount >= bresult * 1.01 ? true : false;
  502. } else if (firstDigit == 2) {
  503. result = yestodayCount >= bresult * 1.005 ? true : false;
  504. } else if (firstDigit == 3 || firstDigit == 4) {
  505. result = yestodayCount >= bresult * 1.003 ? true : false;
  506. } else if (firstDigit == 5 || firstDigit == 6 || firstDigit == 7 || firstDigit == 8 || firstDigit == 9) {
  507. result = yestodayCount >= bresult * 1.003 ? true : false;
  508. } else {
  509. result = false;
  510. }
  511. }
  512. return result;
  513. }
  514. /**
  515. * 获取数字的最高位数字
  516. *
  517. * @return
  518. */
  519. private int getFirstDigit(int number) {
  520. number = Math.abs(number);
  521. if (number < 10) {
  522. return number;
  523. }
  524. return getFirstDigit((number - (number % 10)) / 10);
  525. }
  526. /**
  527. * 查询指定时间区间内的规则报警次数
  528. *
  529. * @param stationId
  530. * @param modelId
  531. * @param alarmIds
  532. * @param beginDate
  533. * @param endDate
  534. * @return
  535. */
  536. private String findAlarmcount(String wtId,String stationId, String modelId,String alarmIds, Date beginDate, Date endDate) {
  537. String result = "0.0";
  538. if(StringUtils.notEmp(stationId) && StringUtils.notEmp(modelId) && StringUtils.notEmp(modelId))
  539. {
  540. List<AlarmStatVo> pressureList =new ArrayList<>();
  541. if(StringUtils.notEmp(stationId) && stationId.contains("FDC"))
  542. { String deviceType= AlarmCustomType.WT.getCode();
  543. pressureList = alarmHistoryService.findCtFeatureStat(wtId,stationId,modelId, beginDate, endDate,null,deviceType,alarmIds,"m");
  544. }else if(StringUtils.notEmp(stationId) && stationId.contains("GDC"))
  545. { String deviceType= AlarmCustomType.IN.getCode();
  546. pressureList = alarmHistoryService.findCtFeatureStat(wtId,stationId,modelId, beginDate, endDate,null,deviceType,alarmIds,"m");
  547. }
  548. if(!pressureList.isEmpty())
  549. {
  550. AlarmStatVo vo=pressureList.get(0);
  551. StringBuilder sb=new StringBuilder();
  552. sb.append(vo.getCount());
  553. result = String.valueOf(sb);
  554. }
  555. }
  556. return result;
  557. }
  558. /**
  559. * 查询单个风场型号的特征规则
  560. *
  561. * @param modelid
  562. * @param staionid
  563. * @return
  564. */
  565. private List<ProEconAlarmRule> findArsubs(String staionid, String modelid) {
  566. List<ProEconAlarmRule> voList =new ArrayList<>();
  567. if (StringUtils.notEmp(modelid) && StringUtils.notEmp(staionid)) {
  568. StringBuilder sb=new StringBuilder();
  569. sb.append(staionid).append("_").append(modelid);
  570. if(CacheContext.alarmRulesModelMap.containsKey(String.valueOf(sb)))
  571. {
  572. voList=CacheContext.alarmRulesModelMap.get(String.valueOf(sb));
  573. }
  574. return voList;
  575. }
  576. return new ArrayList<>();
  577. }
  578. @SuppressWarnings("unused")
  579. private void saveData(List<ProEconStateJudgmentDay> jkfxorder) {
  580. for (ProEconStateJudgmentDay vo : jkfxorder) {
  581. proEconStateJudgmentDayService.insertProEconStateJudgmentDay(vo);
  582. }
  583. }
  584. private List<ProEconStateJudgmentDay> containList(List<ProEconStateJudgmentDay> list, List<ProEconStateJudgmentDay> zlist) {
  585. for (ProEconStateJudgmentDay statejudgmentrecordVo : list) {
  586. zlist.add(statejudgmentrecordVo);
  587. }
  588. return zlist;
  589. }
  590. private List<ProEconStateJudgmentDay> removeDuplicate(List<ProEconStateJudgmentDay> list) {
  591. for (int i = 0; i < list.size() - 1; i++) {
  592. for (int j = list.size() - 1; j > i; j--) {
  593. if (list.get(i).getFormulas().equals(list.get(j).getFormulas()) && list.get(i).getWtId().equals(list.get(j).getWtId()) && list.get(i).getRecordDate().equals(list.get(j).getRecordDate())) {
  594. list.remove(j);
  595. }
  596. }
  597. }
  598. return list;
  599. }
  600. private void judgeParams(Map<String, HcEnum> hcmap, Map<String, Object> parmarsmap, ProBasicEquipment wt, ArrayList<String> ucs) throws Exception {
  601. Calendar c = Calendar.getInstance();
  602. c.set(Calendar.HOUR_OF_DAY, 0);
  603. c.set(Calendar.MINUTE, 0);
  604. c.set(Calendar.SECOND, 0);
  605. if (!ucs.isEmpty()) {
  606. for (String str : ucs) {
  607. if (hcmap.containsKey(str)) {
  608. HcEnum hc = hcmap.get(str);
  609. Object obj = healthFactoryService.judegeHealth(hc, wt, c);
  610. if (obj instanceof Boolean) {
  611. parmarsmap.put(str, Boolean.valueOf(String.valueOf(obj)));
  612. } else if (obj instanceof Double) {
  613. parmarsmap.put(str, Double.valueOf(String.valueOf(obj)));
  614. } else if (obj instanceof Integer) {
  615. parmarsmap.put(str, Integer.valueOf(String.valueOf(obj)));
  616. }
  617. }
  618. }
  619. }
  620. }
  621. }