|
@@ -0,0 +1,267 @@
|
|
|
+package com.gyee.runeconomy.service.Windresourceanalysis;
|
|
|
+
|
|
|
+import com.gyee.common.contant.ContantXk;
|
|
|
+import com.gyee.common.model.PointData;
|
|
|
+import com.gyee.common.model.StringUtils;
|
|
|
+import com.gyee.common.util.DateUtils;
|
|
|
+import com.gyee.runeconomy.dto.DataVo;
|
|
|
+import com.gyee.runeconomy.dto.WindspeedVo;
|
|
|
+import com.gyee.runeconomy.dto.pewpVo;
|
|
|
+import com.gyee.runeconomy.init.CacheContext;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicPowerstation;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicPowerstationPoint;
|
|
|
+import com.gyee.runeconomy.service.auto.IProBasicPowerstationPointService;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay1Service;
|
|
|
+import com.gyee.runeconomy.util.realtimesource.IEdosUtil;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.math.RoundingMode;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.*;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class WindresourceanalysisService {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IProEconPowerstationInfoDay1Service proEconPowerstationInfoDay1Service;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IProBasicPowerstationPointService proBasicPowerstationPointService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IEdosUtil edosUtil;
|
|
|
+
|
|
|
+ public List<WindspeedVo> Comprehensive(String Data) throws Exception {
|
|
|
+
|
|
|
+ List<ProBasicPowerstation> wplsf = CacheContext.wplsf;
|
|
|
+
|
|
|
+ //转换时间为Date类型
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ Date date = sdf.parse(Data);
|
|
|
+
|
|
|
+ Calendar calendar = Calendar.getInstance();
|
|
|
+ calendar.setTime(date);
|
|
|
+ calendar.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
+ calendar.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar.set(Calendar.MINUTE, 59);
|
|
|
+ calendar.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date startTime = calendar.getTime();
|
|
|
+
|
|
|
+ Calendar calendar1 = Calendar.getInstance();
|
|
|
+ calendar1.setTime(date);
|
|
|
+ calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar1.set(Calendar.MINUTE, 59);
|
|
|
+ calendar1.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date endTime = calendar1.getTime();
|
|
|
+
|
|
|
+ ProBasicPowerstationPoint pjfs = null;
|
|
|
+ List<WindspeedVo> vos = new ArrayList<>();
|
|
|
+ for (ProBasicPowerstation wp : wplsf) {
|
|
|
+
|
|
|
+ pjfs = proBasicPowerstationPointService.getPowerstationPoint(wp.getId(), ContantXk.GCGZQD);
|
|
|
+
|
|
|
+ if (pjfs != null && pjfs != null) {
|
|
|
+ List<PointData> pjfsls = edosUtil.getHistoryDatasRaw(pjfs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
+
|
|
|
+ if (pjfsls != null && !pjfsls.isEmpty()) {
|
|
|
+
|
|
|
+ List<PointData> filterls = new ArrayList<>();
|
|
|
+ for (PointData po : pjfsls) {
|
|
|
+ if (po.getPointValueInDouble() > 10) {
|
|
|
+ filterls.add(po);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (!filterls.isEmpty()) {
|
|
|
+
|
|
|
+ Date beginTime1 = new Date(filterls.get(0).getPointTime());
|
|
|
+ Date endTime1 = new Date(filterls.get(filterls.size() - 1).getPointTime());
|
|
|
+
|
|
|
+ double hours = DateUtils.hoursDiff(beginTime1, endTime1);
|
|
|
+
|
|
|
+ DoubleSummaryStatistics summaryStatistics = filterls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
|
|
|
+
|
|
|
+ double sum = filterls.stream()
|
|
|
+ .mapToDouble(PointData::getPointValueInDouble)
|
|
|
+ .sum();
|
|
|
+
|
|
|
+ WindspeedVo vo = new WindspeedVo();
|
|
|
+ vo.setWpid(wp.getId());
|
|
|
+ vo.setName(wp.getName());
|
|
|
+
|
|
|
+ //日最大风速
|
|
|
+ vo.setZdfs(StringUtils.round(summaryStatistics.getMax() /1000, 2));
|
|
|
+// vo.getPjfs(StringUtils.round(summaryStatistics.getAverage()));
|
|
|
+
|
|
|
+ vos.add(vo);
|
|
|
+ //日最小风速
|
|
|
+// pewp.setRzxfs(StringUtils.round(summaryStatistics.getMin(), 2));
|
|
|
+
|
|
|
+ double avg = StringUtils.round(summaryStatistics.getAverage(), 2);
|
|
|
+
|
|
|
+ double result = new BigDecimal(avg * hours).divide(new BigDecimal(1000), 2, RoundingMode.HALF_EVEN).doubleValue();
|
|
|
+// vo.setZfzd(StringUtils.round(result,2));
|
|
|
+
|
|
|
+ //日平均风速
|
|
|
+// pewp.setRpjfs(result);
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return vos;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public List<pewpVo> gzComprehensive(String Data) throws Exception {
|
|
|
+
|
|
|
+ List<ProBasicPowerstation> wplsg = CacheContext.wplsG;
|
|
|
+
|
|
|
+ //转换时间为Date类型
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ Date date = sdf.parse(Data);
|
|
|
+
|
|
|
+// Calendar calendar = Calendar.getInstance();
|
|
|
+// calendar.setTime(date);
|
|
|
+// calendar.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
+// calendar.set(Calendar.MINUTE, 0);
|
|
|
+// calendar.set(Calendar.SECOND, 0);
|
|
|
+// Date startTime = calendar.getTime();
|
|
|
+
|
|
|
+ Calendar calendar = Calendar.getInstance();
|
|
|
+ calendar.setTime(date);
|
|
|
+ calendar.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
+ calendar.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar.set(Calendar.MINUTE, 59);
|
|
|
+ calendar.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date startTime = calendar.getTime();
|
|
|
+
|
|
|
+// calendar.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+// calendar.set(Calendar.MINUTE, 59);
|
|
|
+// calendar.set(Calendar.SECOND, 59);
|
|
|
+//
|
|
|
+// Date endTime = calendar.getTime();
|
|
|
+ Calendar calendar1 = Calendar.getInstance();
|
|
|
+ calendar1.setTime(date);
|
|
|
+ calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar1.set(Calendar.MINUTE, 59);
|
|
|
+ calendar1.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date endTime = calendar1.getTime();
|
|
|
+
|
|
|
+ ProBasicPowerstationPoint pjfs = null;
|
|
|
+ List<pewpVo> vos = new ArrayList<>();
|
|
|
+ for (ProBasicPowerstation wp : wplsg) {
|
|
|
+
|
|
|
+ pjfs = proBasicPowerstationPointService.getPowerstationPoint(wp.getId(), ContantXk.GCGZQD);
|
|
|
+
|
|
|
+ if (pjfs != null && pjfs != null) {
|
|
|
+ List<PointData> pjfsls = edosUtil.getHistoryDatasRaw(pjfs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
+
|
|
|
+ if (pjfsls != null && !pjfsls.isEmpty()) {
|
|
|
+
|
|
|
+ List<PointData> filterls = new ArrayList<>();
|
|
|
+ for (PointData po : pjfsls) {
|
|
|
+ if (po.getPointValueInDouble() > 10) {
|
|
|
+ filterls.add(po);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (!filterls.isEmpty()) {
|
|
|
+
|
|
|
+ Date beginTime1 = new Date(filterls.get(0).getPointTime());
|
|
|
+ Date endTime1 = new Date(filterls.get(filterls.size() - 1).getPointTime());
|
|
|
+
|
|
|
+ double hours = DateUtils.hoursDiff(beginTime1, endTime1);
|
|
|
+
|
|
|
+ DoubleSummaryStatistics summaryStatistics = filterls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
|
|
|
+
|
|
|
+ double sum = filterls.stream()
|
|
|
+ .mapToDouble(PointData::getPointValueInDouble)
|
|
|
+ .sum();
|
|
|
+ pewpVo vo = new pewpVo();
|
|
|
+ vo.setWpid(wp.getId());
|
|
|
+ vo.setName(wp.getName());
|
|
|
+
|
|
|
+ //日最大辐照度
|
|
|
+ vo.setZdfdz(StringUtils.round(summaryStatistics.getMax() /1000, 2));
|
|
|
+ vo.setRcsj(beginTime1);
|
|
|
+ vo.setRlsj(endTime1);
|
|
|
+ vo.setCxsj(hours);
|
|
|
+ vos.add(vo);
|
|
|
+ //日最小风速
|
|
|
+// pewp.setRzxfs(StringUtils.round(summaryStatistics.getMin(), 2));
|
|
|
+
|
|
|
+ double avg = StringUtils.round(summaryStatistics.getAverage(), 2);
|
|
|
+
|
|
|
+ double result = new BigDecimal(avg * hours).divide(new BigDecimal(1000), 2, RoundingMode.HALF_EVEN).doubleValue();
|
|
|
+ vo.setZfzd(StringUtils.round(result,2));
|
|
|
+
|
|
|
+ //日平均风速
|
|
|
+// pewp.setRpjfs(result);
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return vos;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public List<DataVo> GroupRealtimevalue(String Data) throws Exception {
|
|
|
+
|
|
|
+ List<DataVo> vos = new ArrayList<DataVo>();
|
|
|
+
|
|
|
+ //转换时间为Date类型
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ Date date = sdf.parse(Data);
|
|
|
+
|
|
|
+ Calendar calendar = Calendar.getInstance();
|
|
|
+ calendar.setTime(date);
|
|
|
+ calendar.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
+ calendar.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar.set(Calendar.MINUTE, 59);
|
|
|
+ calendar.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date startTime = calendar.getTime();
|
|
|
+
|
|
|
+ Calendar calendar1 = Calendar.getInstance();
|
|
|
+ calendar1.setTime(date);
|
|
|
+ calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar1.set(Calendar.MINUTE, 59);
|
|
|
+ calendar1.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date endTime = calendar1.getTime();
|
|
|
+ ProBasicPowerstationPoint gzzs = null;
|
|
|
+ List<ProBasicPowerstation> wplsG = CacheContext.wplsG.stream().filter(c->c.getOrderNum().equals(15)).collect(Collectors.toList());
|
|
|
+ gzzs = proBasicPowerstationPointService.getPowerstationPoint(wplsG.get(0).getId(), ContantXk.GCGZQD);
|
|
|
+
|
|
|
+
|
|
|
+ List<PointData> gzzsls = edosUtil.getHistoryDatasRaw(gzzs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
+ double temp6 = 0;
|
|
|
+ for (int i = 0; i < gzzsls.size(); i++) {
|
|
|
+ DataVo vo = new DataVo();
|
|
|
+ temp6 = gzzsls.get(i).getPointValueInDouble();
|
|
|
+ vo.setValue6(com.gyee.runeconomy.util.StringUtils.round(temp6, 2));
|
|
|
+ vo.setTime(gzzsls.get(i).getPointTime());
|
|
|
+ vos.add(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ return vos;
|
|
|
+ }
|
|
|
+}
|