|
@@ -38,7 +38,7 @@ public class PerformanceCurvefittingService {
|
|
|
private IProEconWtCurveFittingYearService proEconWtCurveFittingYearService;
|
|
|
|
|
|
|
|
|
- public Map<String, List<CurveVo>> curvefitting(String windturbineIds, String type,String dateType) {
|
|
|
+ public Map<String, List<CurveVo>> curveFittingList(String windturbineIds, String type, String dateType) {
|
|
|
Map<String, List<CurveVo>> resultMap = new HashMap<>();
|
|
|
Map<String, ProBasicEquipment> wtmap = CacheContext.wtmap;
|
|
|
if (type.equals("-1")) {
|
|
@@ -71,7 +71,36 @@ public class PerformanceCurvefittingService {
|
|
|
return resultMap;
|
|
|
}
|
|
|
|
|
|
+ public Map<String, List<CurveVo>> curvefitting(String windturbineIds, String type,String dateType) {
|
|
|
+ Map<String, List<CurveVo>> resultMap = new HashMap<>();
|
|
|
+ Map<String, ProBasicEquipment> wtmap = CacheContext.wtmap;
|
|
|
+ if (type.equals("-1")) {
|
|
|
+ String zbzgl = redisService.get("ZLLGL");
|
|
|
+ Map<String, Map<Double, ZllglDTO>> zbzglMap = JSONObject.parseObject(zbzgl, new TypeReference<Map<String, Map<Double, ZllglDTO>>>() {
|
|
|
+ });
|
|
|
+ Map<String, Map<Double, Double>> znhglMap = getWtCurveFitting(windturbineIds, dateType);
|
|
|
+
|
|
|
+ List<CurveVo> tempList = new ArrayList<>();
|
|
|
+ if (znhglMap.containsKey(windturbineIds)) {
|
|
|
+ Map<Double, Double> zsglmap = znhglMap.get(windturbineIds);
|
|
|
+ Map<Double, ZllglDTO> bzglmap = zbzglMap.get(wtmap.get(windturbineIds).getModelId());
|
|
|
+ Set<Double> speeds = zsglmap.keySet();
|
|
|
+ speeds.stream().forEach(speed -> {
|
|
|
+ CurveVo vo = new CurveVo();
|
|
|
+ vo.setWtid(windturbineIds);
|
|
|
+ vo.setNemCode(wtmap.get(windturbineIds).getAname());
|
|
|
+ vo.setSpeed(speed);
|
|
|
+ vo.setTheorypower(DoubleUtils.keepPrecision(zsglmap.get(speed), 2));
|
|
|
+ vo.setEnsurepower(DoubleUtils.keepPrecision(bzglmap.containsKey(speed) ? bzglmap.get(speed).getEnsurePower() : zsglmap.get(speed), 2));
|
|
|
+ tempList.add(vo);
|
|
|
+ });
|
|
|
+ SortUtils.sort(tempList, "speed", SortUtils.ASC);
|
|
|
+ resultMap.put("chanrt", tempList.stream().filter(i -> (i.getSpeed()%Double.valueOf(0.5))==0).collect(Collectors.toList()));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
+ return resultMap;
|
|
|
+ }
|
|
|
/**
|
|
|
* 获取风机拟合曲线
|
|
|
*
|