|
@@ -1,23 +1,36 @@
|
|
|
package com.gyee.runeconomy.service.agc;
|
|
|
|
|
|
-
|
|
|
+import cn.hutool.core.date.DateTime;
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
|
import cn.hutool.core.lang.TypeReference;
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.gyee.common.model.PointData;
|
|
|
import com.gyee.runeconomy.config.GyeeConfig;
|
|
|
import com.gyee.runeconomy.controller.agc.AgcDeviateTag;
|
|
|
import com.gyee.runeconomy.controller.agc.AiPoints;
|
|
|
import com.gyee.runeconomy.controller.agc.FileService;
|
|
|
+import com.gyee.runeconomy.controller.agc.SpeedPowerAnalysis;
|
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
|
import com.gyee.runeconomy.model.PowerLosses;
|
|
|
import com.gyee.runeconomy.model.PowerLossesDTO;
|
|
|
+import com.gyee.runeconomy.model.StatusTime;
|
|
|
+import com.gyee.runeconomy.model.auto.PointInfo;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicEquipment;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicEquipmentPoint;
|
|
|
import com.gyee.runeconomy.service.PowerLossesService;
|
|
|
+import com.gyee.runeconomy.service.auto.IPointInfoService;
|
|
|
+import com.gyee.runeconomy.util.realtimesource.IEdosUtil;
|
|
|
import com.gyee.runeconomy.util.realtimesource.feign.IDataAdapter;
|
|
|
import com.gyee.runeconomy.util.realtimesource.feign.RemoteServiceBuilder;
|
|
|
import com.gyee.runeconomy.util.realtimesource.feign.TsDoubleTsData;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.boot.system.ApplicationHome;
|
|
|
import org.springframework.core.annotation.Order;
|
|
|
+import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
|
|
|
+import org.springframework.data.redis.core.StringRedisTemplate;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
@@ -28,6 +41,7 @@ import java.time.LocalDateTime;
|
|
|
import java.time.ZoneId;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
import java.util.*;
|
|
|
+import java.util.concurrent.ConcurrentHashMap;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
@@ -36,6 +50,8 @@ import java.util.stream.Collectors;
|
|
|
@Order(0)
|
|
|
@Component
|
|
|
public class AgcDeviateService {
|
|
|
+ public static Map<String, ConcurrentHashMap<Double, Double>> fitcoef = new ConcurrentHashMap<>();
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 是否是离线版本
|
|
@@ -69,6 +85,17 @@ public class AgcDeviateService {
|
|
|
private RemoteServiceBuilder remoteService;
|
|
|
@Resource
|
|
|
private PowerLossesService powerLossService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private StringRedisTemplate stringRedisTemplate;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IEdosUtil edosUtil;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IPointInfoService pointInfoService;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 获取agc曲线偏差分析需要的数据
|
|
|
*
|
|
@@ -261,13 +288,14 @@ public class AgcDeviateService {
|
|
|
|
|
|
/**
|
|
|
* 限电时间列表
|
|
|
+ *
|
|
|
* @param startTs
|
|
|
* @param endTs
|
|
|
* @param pageNum
|
|
|
* @param pageSize
|
|
|
* @return
|
|
|
*/
|
|
|
- public List<PowerLossesDTO> getAgcxd(long startTs, long endTs,int pageNum, int pageSize) {
|
|
|
+ public List<PowerLossesDTO> getAgcxd(long startTs, long endTs, int pageNum, int pageSize) {
|
|
|
|
|
|
// 将时间戳转换为LocalDateTime
|
|
|
LocalDateTime startDateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(startTs), ZoneId.systemDefault());
|
|
@@ -306,4 +334,116 @@ public class AgcDeviateService {
|
|
|
return dtos;
|
|
|
}
|
|
|
|
|
|
+ public Map<String, List<SpeedPowerAnalysis>> getWindturbineData(long startTs, long endTs, String windturbineId, int interval) throws Exception {
|
|
|
+
|
|
|
+ //切换数据库
|
|
|
+ LettuceConnectionFactory factory = (LettuceConnectionFactory) stringRedisTemplate.getConnectionFactory();
|
|
|
+ int database = factory.getDatabase();
|
|
|
+ factory.setDatabase(5);
|
|
|
+ stringRedisTemplate.setConnectionFactory(factory);
|
|
|
+ factory.afterPropertiesSet();
|
|
|
+ factory.resetConnection();
|
|
|
+
|
|
|
+ DateTime date = DateUtil.date(endTs * 1000);
|
|
|
+ Map<String, List<SpeedPowerAnalysis>> map = new HashMap<>();
|
|
|
+ String[] wtIds = windturbineId.split(",");
|
|
|
+ List<String> wtIdsLs = Arrays.asList(wtIds);
|
|
|
+ for (String wtId : wtIdsLs) {
|
|
|
+ List<SpeedPowerAnalysis> ls = new ArrayList<>();
|
|
|
+ SpeedPowerAnalysis spa = new SpeedPowerAnalysis();
|
|
|
+ List<ProBasicEquipmentPoint> proBasicEquipmentPoints = CacheContext.pointNewMap.get(wtId);
|
|
|
+ List<ProBasicEquipmentPoint> speedPoint = proBasicEquipmentPoints.stream().filter(p -> p.getUniformCode().equals("AI066")).collect(Collectors.toList());
|
|
|
+ List<PointData> historyspeedDatas = edosUtil.getHistoryDatasSnap(speedPoint.get(0).getNemCode(), startTs, endTs, interval);
|
|
|
+ List<Double> speedDatas = historyspeedDatas.stream().map(PointData::getPointValueInDouble).collect(Collectors.toList());
|
|
|
+ spa.setWindSpeed(speedDatas);
|
|
|
+ List<Long> time = historyspeedDatas.stream().map(PointData::getPointTime).collect(Collectors.toList());
|
|
|
+ spa.setTime(time);
|
|
|
+ List<ProBasicEquipmentPoint> powerPoint = proBasicEquipmentPoints.stream().filter(p -> p.getUniformCode().equals("AI114")).collect(Collectors.toList());
|
|
|
+ List<PointData> historyPowerDatas = edosUtil.getHistoryDatasSnap(powerPoint.get(0).getNemCode(), startTs, endTs, interval);
|
|
|
+ List<Double> powerData = historyPowerDatas.stream().map(PointData::getPointValueInDouble).collect(Collectors.toList());
|
|
|
+ spa.setActuatedPower(powerData);
|
|
|
+ String powerCurveMonth = "glqxnh:" + date.month() + ":";
|
|
|
+ Set<String> keys = stringRedisTemplate.keys(powerCurveMonth + wtId);
|
|
|
+ Iterator<String> iterator = keys.iterator(); // 获取迭代器
|
|
|
+ String firstKey = iterator.hasNext() ? iterator.next() : null;
|
|
|
+ String yc = stringRedisTemplate.opsForValue().get(firstKey);
|
|
|
+ ConcurrentHashMap<Double, Double> wtyc = JSON.parseObject(yc, new com.alibaba.fastjson.TypeReference<ConcurrentHashMap<Double, Double>>() {
|
|
|
+ }.getType());
|
|
|
+ fitcoef.put(firstKey.replaceFirst(powerCurveMonth, ""), wtyc);
|
|
|
+ List<Double> llgl = speedDatas.stream().map(a -> fitcoef.get(wtId).get(a)).collect(Collectors.toList());
|
|
|
+ spa.setTheoreticalPower(llgl);
|
|
|
+ ls.add(spa);
|
|
|
+ map.put(wtId, ls);
|
|
|
+ }
|
|
|
+
|
|
|
+ //关闭数据库切换
|
|
|
+ factory.setDatabase(database);
|
|
|
+ factory.afterPropertiesSet();
|
|
|
+ factory.resetConnection();
|
|
|
+
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, List<StatusTime>> getStatusTime(long startTs, long endTs, String uniformcode) throws Exception {
|
|
|
+ Map<String, List<StatusTime>> map = new HashMap<>();
|
|
|
+ QueryWrapper<PointInfo> qw = new QueryWrapper<>();
|
|
|
+ qw.lambda().eq(PointInfo::getUniformCode, uniformcode);
|
|
|
+ List<PointInfo> list = pointInfoService.list(qw);
|
|
|
+ for (PointInfo ls : list) {
|
|
|
+ List<StatusTime> ll = new ArrayList<>();
|
|
|
+ List<PointData> historyDatasRaw = edosUtil.getHistoryDatasRaw(ls.getPointKey(), startTs, endTs);
|
|
|
+ for (PointData pointData : historyDatasRaw) {
|
|
|
+ StatusTime st = new StatusTime();
|
|
|
+ st.setName(ls.getName());
|
|
|
+ Date da = new Date(pointData.getPointTime());
|
|
|
+ st.setTime(DateUtil.formatDateTime(da));
|
|
|
+ String getstatus = getstatus((int) pointData.getPointValueInDouble());
|
|
|
+ st.setStatus(getstatus);
|
|
|
+ ll.add(st);
|
|
|
+ }
|
|
|
+ List<String> collect = CacheContext.wtls.stream().filter(w -> w.getId().equals(ls.getTurbineId())).map(ProBasicEquipment::getNemCode).collect(Collectors.toList());
|
|
|
+ map.put(collect.get(0), ll);
|
|
|
+ }
|
|
|
+ List<String> sortedKeys = new ArrayList<>(map.keySet());
|
|
|
+ Collections.sort(sortedKeys);
|
|
|
+ Map<String, List<StatusTime>> sortedMap = new LinkedHashMap<>();
|
|
|
+ for (String key : sortedKeys) {
|
|
|
+ sortedMap.put(key, map.get(key));
|
|
|
+ }
|
|
|
+ return sortedMap;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ private String getstatus(int number) {
|
|
|
+ String statusText = "";
|
|
|
+ switch (number) {
|
|
|
+ case 0:
|
|
|
+ statusText = "待机";
|
|
|
+ break;
|
|
|
+ case 1:
|
|
|
+ statusText = "停机";
|
|
|
+ break;
|
|
|
+ case 2:
|
|
|
+ statusText = "并网";
|
|
|
+ break;
|
|
|
+ case 4:
|
|
|
+ statusText = "故障";
|
|
|
+ break;
|
|
|
+ case 6:
|
|
|
+ statusText = "检修";
|
|
|
+ break;
|
|
|
+ case 8:
|
|
|
+ statusText = "限电";
|
|
|
+ break;
|
|
|
+ case 12:
|
|
|
+ statusText = "离线";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ statusText = "未知";
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ return statusText;
|
|
|
+ }
|
|
|
+
|
|
|
}
|