|
@@ -9,6 +9,7 @@ import com.gyee.generation.model.auto.*;
|
|
|
import com.gyee.generation.model.vo.*;
|
|
|
import com.gyee.generation.service.auto.*;
|
|
|
import com.gyee.generation.util.DateUtils;
|
|
|
+import com.gyee.generation.util.DeviationRateUtil;
|
|
|
import com.gyee.generation.util.StringUtils;
|
|
|
import com.gyee.generation.util.realtimesource.IEdosUtil;
|
|
|
import com.gyee.generation.util.realtimesource.math.LineUtil;
|
|
@@ -274,17 +275,17 @@ public class PowerCurveFittingByTimeService {
|
|
|
|
|
|
|
|
|
//日---实际/最优
|
|
|
- cfmday.setDeviationRate1(pcl(windMap.get(key).getRsjglPoints(), windMap.get(key).getRzyglPoints(), modelpower));
|
|
|
+ cfmday.setDeviationRate1(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), windMap.get(key).getRzyglPoints(), modelpower));
|
|
|
//日---实际/保证
|
|
|
- cfmday.setDeviationRate2(pcl(windMap.get(key).getRsjglPoints(), bzglpowerPoints, modelpower));
|
|
|
+ cfmday.setDeviationRate2(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), bzglpowerPoints, modelpower));
|
|
|
//日---最优/保证
|
|
|
- cfmday.setDeviationRate3(pcl(windMap.get(key).getRzyglPoints(), bzglpowerPoints, modelpower));
|
|
|
+ cfmday.setDeviationRate3(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRzyglPoints(), bzglpowerPoints, modelpower));
|
|
|
//日---实际/上日实际
|
|
|
- cfmday.setMonthDeviationRate(pcl(windMap.get(key).getRsjglPoints(), dayLastMonthPoints, modelpower));
|
|
|
+ cfmday.setMonthDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), dayLastMonthPoints, modelpower));
|
|
|
//日---实际/同期实际
|
|
|
- cfmday.setYearDeviationRate(pcl(windMap.get(key).getRsjglPoints(), dayLastYearPoints, modelpower));
|
|
|
+ cfmday.setYearDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), dayLastYearPoints, modelpower));
|
|
|
//日---实际/标杆实际
|
|
|
- cfmday.setStandardDeviationRate(pcl(windMap.get(key).getRsjglPoints(), dayStandardPoints, modelpower));
|
|
|
+ cfmday.setStandardDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), dayStandardPoints, modelpower));
|
|
|
|
|
|
mainls.add(cfmday);
|
|
|
//proEconCurveFittingMainService.save(cfmday);
|
|
@@ -576,17 +577,17 @@ public class PowerCurveFittingByTimeService {
|
|
|
cfmmonth.setMonth(String.valueOf(day_month));
|
|
|
|
|
|
//月---实际/最优
|
|
|
- cfmmonth.setDeviationRate1(pcl(windMap.get(key).getYsjglPoints(), windMap.get(key).getYzyglPoints(), modelpower));
|
|
|
+ cfmmonth.setDeviationRate1(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), windMap.get(key).getYzyglPoints(), modelpower));
|
|
|
//月---实际/保证
|
|
|
- cfmmonth.setDeviationRate2(pcl(windMap.get(key).getYsjglPoints(), bzglpowerPoints, modelpower));
|
|
|
+ cfmmonth.setDeviationRate2(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), bzglpowerPoints, modelpower));
|
|
|
//月---最优/保证
|
|
|
- cfmmonth.setDeviationRate3(pcl(windMap.get(key).getYzyglPoints(), bzglpowerPoints, modelpower));
|
|
|
+ cfmmonth.setDeviationRate3(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYzyglPoints(), bzglpowerPoints, modelpower));
|
|
|
//月---实际/上月实际
|
|
|
- cfmmonth.setMonthDeviationRate(pcl(windMap.get(key).getYsjglPoints(), monthLastMonthPoints, modelpower));
|
|
|
+ cfmmonth.setMonthDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), monthLastMonthPoints, modelpower));
|
|
|
//月---实际/同期实际
|
|
|
- cfmmonth.setYearDeviationRate(pcl(windMap.get(key).getYsjglPoints(), monthLastYearPoints, modelpower));
|
|
|
+ cfmmonth.setYearDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), monthLastYearPoints, modelpower));
|
|
|
//月---实际/标杆实际
|
|
|
- cfmmonth.setStandardDeviationRate(pcl(windMap.get(key).getYsjglPoints(), monthStandardPoints, modelpower));
|
|
|
+ cfmmonth.setStandardDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), monthStandardPoints, modelpower));
|
|
|
|
|
|
mainls.add(cfmmonth);
|
|
|
// proEconCurveFittMonthMainService.save(cfmmonth);
|
|
@@ -903,17 +904,17 @@ public class PowerCurveFittingByTimeService {
|
|
|
|
|
|
|
|
|
//年---实际/最优
|
|
|
- cfmyear.setDeviationRate1(pcl(windMap.get(key).getNsjglPoints(), windMap.get(key).getNzyglPoints(), modelpower));
|
|
|
+ cfmyear.setDeviationRate1(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), windMap.get(key).getNzyglPoints(), modelpower));
|
|
|
//年---实际/保证
|
|
|
- cfmyear.setDeviationRate2(pcl(windMap.get(key).getNsjglPoints(), bzglpowerPoints, modelpower));
|
|
|
+ cfmyear.setDeviationRate2(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), bzglpowerPoints, modelpower));
|
|
|
//年---最优/保证
|
|
|
- cfmyear.setDeviationRate3(pcl(windMap.get(key).getNzyglPoints(), bzglpowerPoints, modelpower));
|
|
|
+ cfmyear.setDeviationRate3(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNzyglPoints(), bzglpowerPoints, modelpower));
|
|
|
//年---实际/上月实际
|
|
|
- cfmyear.setMonthDeviationRate(pcl(windMap.get(key).getNsjglPoints(), yearLastMonthPoints, modelpower));
|
|
|
+ cfmyear.setMonthDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), yearLastMonthPoints, modelpower));
|
|
|
//年---实际/同期实际
|
|
|
- cfmyear.setYearDeviationRate(pcl(windMap.get(key).getNsjglPoints(), yearLastYearPoints, modelpower));
|
|
|
+ cfmyear.setYearDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), yearLastYearPoints, modelpower));
|
|
|
//年---实际/标杆实际
|
|
|
- cfmyear.setStandardDeviationRate(pcl(windMap.get(key).getNsjglPoints(), yearStandardPoints, modelpower));
|
|
|
+ cfmyear.setStandardDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), yearStandardPoints, modelpower));
|
|
|
|
|
|
mainls.add(cfmyear);
|
|
|
// proEconCurveFittYearMainService.save(cfmyear);
|
|
@@ -1007,17 +1008,17 @@ public class PowerCurveFittingByTimeService {
|
|
|
cfms.setRecordDate(DateUtils.truncate(current));
|
|
|
|
|
|
|
|
|
- cfms.setDeviationRate1(pcl2(windMap.get(key).getRsjglPoints(), windMap.get(key).getRzyglPoints(), modelpower, speed));
|
|
|
+ cfms.setDeviationRate1(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), windMap.get(key).getRzyglPoints(), modelpower, speed));
|
|
|
//日---实际/保证
|
|
|
- cfms.setDeviationRate2(pcl2(windMap.get(key).getRsjglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
+ cfms.setDeviationRate2(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
//日---最优/保证
|
|
|
- cfms.setDeviationRate3(pcl2(windMap.get(key).getRzyglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
+ cfms.setDeviationRate3(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRzyglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
//日---实际/上日实际
|
|
|
- cfms.setMonthDeviationRate(pcl2(windMap.get(key).getRsjglPoints(), lastMonthPoints, modelpower, speed));
|
|
|
+ cfms.setMonthDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), lastMonthPoints, modelpower, speed));
|
|
|
//日---实际/同期实际
|
|
|
- cfms.setYearDeviationRate(pcl2(windMap.get(key).getRsjglPoints(), lastYearPoints, modelpower, speed));
|
|
|
+ cfms.setYearDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), lastYearPoints, modelpower, speed));
|
|
|
//日---实际/标杆实际
|
|
|
- cfms.setStandardDeviationRate(pcl2(windMap.get(key).getRsjglPoints(), lastStandardPoints, modelpower, speed));
|
|
|
+ cfms.setStandardDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getRsjglPoints(), lastStandardPoints, modelpower, speed));
|
|
|
|
|
|
return cfms;
|
|
|
|
|
@@ -1057,17 +1058,17 @@ public class PowerCurveFittingByTimeService {
|
|
|
|
|
|
|
|
|
//月---实际/最优
|
|
|
- cfmsmonth.setDeviationRate1(pcl2(windMap.get(key).getYsjglPoints(), windMap.get(key).getYzyglPoints(), modelpower, speed));
|
|
|
+ cfmsmonth.setDeviationRate1(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), windMap.get(key).getYzyglPoints(), modelpower, speed));
|
|
|
//月---实际/保证
|
|
|
- cfmsmonth.setDeviationRate2(pcl2(windMap.get(key).getYsjglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
+ cfmsmonth.setDeviationRate2(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
//月---最优/保证
|
|
|
- cfmsmonth.setDeviationRate3(pcl2(windMap.get(key).getYzyglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
+ cfmsmonth.setDeviationRate3(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYzyglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
//月---实际/上月实际
|
|
|
- cfmsmonth.setMonthDeviationRate(pcl2(windMap.get(key).getYsjglPoints(), lastMonthPoints, modelpower, speed));
|
|
|
+ cfmsmonth.setMonthDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), lastMonthPoints, modelpower, speed));
|
|
|
//月---实际/同期实际
|
|
|
- cfmsmonth.setYearDeviationRate(pcl2(windMap.get(key).getYsjglPoints(), lastYearPoints, modelpower, speed));
|
|
|
+ cfmsmonth.setYearDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), lastYearPoints, modelpower, speed));
|
|
|
//月---实际/标杆实际
|
|
|
- cfmsmonth.setStandardDeviationRate(pcl2(windMap.get(key).getYsjglPoints(), lastStandardPoints, modelpower, speed));
|
|
|
+ cfmsmonth.setStandardDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getYsjglPoints(), lastStandardPoints, modelpower, speed));
|
|
|
|
|
|
// proEconCurveFittMonthSubService.save(cfmsmonth);
|
|
|
|
|
@@ -1105,17 +1106,17 @@ public class PowerCurveFittingByTimeService {
|
|
|
// proEconCurveFittYearSubService.save(cfmsyear);
|
|
|
|
|
|
//年---实际/最优
|
|
|
- cfmsyear.setDeviationRate1(pcl2(windMap.get(key).getNsjglPoints(), windMap.get(key).getNzyglPoints(), modelpower, speed));
|
|
|
+ cfmsyear.setDeviationRate1(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), windMap.get(key).getNzyglPoints(), modelpower, speed));
|
|
|
//年---实际/保证
|
|
|
- cfmsyear.setDeviationRate2(pcl2(windMap.get(key).getNsjglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
+ cfmsyear.setDeviationRate2(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
//年---最优/保证
|
|
|
- cfmsyear.setDeviationRate3(pcl2(windMap.get(key).getNzyglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
+ cfmsyear.setDeviationRate3(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNzyglPoints(), bzglpowerPoints, modelpower, speed));
|
|
|
//年---实际/上月实际
|
|
|
- cfmsyear.setMonthDeviationRate(pcl2(windMap.get(key).getNsjglPoints(), lastMonthPoints, modelpower, speed));
|
|
|
+ cfmsyear.setMonthDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), lastMonthPoints, modelpower, speed));
|
|
|
//年---实际/同期实际
|
|
|
- cfmsyear.setYearDeviationRate(pcl2(windMap.get(key).getNsjglPoints(), lastYearPoints, modelpower, speed));
|
|
|
+ cfmsyear.setYearDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), lastYearPoints, modelpower, speed));
|
|
|
//年---实际/标杆实际
|
|
|
- cfmsyear.setStandardDeviationRate(pcl2(windMap.get(key).getNsjglPoints(), lastStandardPoints, modelpower, speed));
|
|
|
+ cfmsyear.setStandardDeviationRate(DeviationRateUtil.calculateDeviationRate(windMap.get(key).getNsjglPoints(), lastStandardPoints, modelpower, speed));
|
|
|
|
|
|
// proEconCurveFittYearSubService.save(cfmsyear);
|
|
|
return cfmsyear;
|
|
@@ -1273,39 +1274,43 @@ public class PowerCurveFittingByTimeService {
|
|
|
logger.warn(String.format("下标不一致的风机编号:{0},实际功率:{1},最有功率:{2}", windturbineId, sjglls.size(), zyglls.size()));
|
|
|
|
|
|
|
|
|
- for (int i = 0; i < sjglls.size(); i++) {
|
|
|
- ProEconWtCurveFittingMonth item = new ProEconWtCurveFittingMonth();
|
|
|
- item.setWindturbineId(windturbineId);
|
|
|
- if (CacheContext.wtmap.containsKey(windturbineId)) {
|
|
|
+ if(!sjglls.isEmpty() && !zyglls.isEmpty() && sjglls.size() == zyglls.size())
|
|
|
+ {
|
|
|
+ for (int i = 0; i < sjglls.size(); i++) {
|
|
|
+ ProEconWtCurveFittingMonth item = new ProEconWtCurveFittingMonth();
|
|
|
+ item.setWindturbineId(windturbineId);
|
|
|
+ if (CacheContext.wtmap.containsKey(windturbineId)) {
|
|
|
|
|
|
- ProBasicEquipment wt = CacheContext.wtmap.get(windturbineId);
|
|
|
- if (wt.getWindpowerstationId().contains(WpType.GDC.id)) {
|
|
|
- continue;
|
|
|
- //item.SPEED = Double.Truncate(pointsF1[i].X);
|
|
|
- } else {
|
|
|
+ ProBasicEquipment wt = CacheContext.wtmap.get(windturbineId);
|
|
|
+ if (wt.getWindpowerstationId().contains(WpType.GDC.id)) {
|
|
|
+ continue;
|
|
|
+ //item.SPEED = Double.Truncate(pointsF1[i].X);
|
|
|
+ } else {
|
|
|
|
|
|
// item.setSpeed(sjglls.get(i).getX());
|
|
|
- item.setSpeed(StringUtils.round(sjglls.get(i).getX(),2));
|
|
|
- }
|
|
|
+ item.setSpeed(StringUtils.round(sjglls.get(i).getX(),2));
|
|
|
+ }
|
|
|
// item.setActualPower(sjglls.get(i).getY());
|
|
|
|
|
|
- int finalI = i;
|
|
|
- OptionalDouble op = zyglls.stream().filter(x -> Objects.equals(x.getX(), sjglls.get(finalI).getX())).mapToDouble(PointVo::getY).findFirst();
|
|
|
+ int finalI = i;
|
|
|
+ OptionalDouble op = zyglls.stream().filter(x -> Objects.equals(x.getX(), sjglls.get(finalI).getX())).mapToDouble(PointVo::getY).findFirst();
|
|
|
|
|
|
- if (op.isPresent()) {
|
|
|
- item.setOptimalPower(op.getAsDouble());
|
|
|
- } else {
|
|
|
- item.setOptimalPower(0.0);
|
|
|
+ if (op.isPresent()) {
|
|
|
+ item.setOptimalPower(op.getAsDouble());
|
|
|
+ } else {
|
|
|
+ item.setOptimalPower(0.0);
|
|
|
+ }
|
|
|
+ item.setActualPower(StringUtils.round(sjglls.get(i).getY(),2));
|
|
|
+ item.setOptimalPower(StringUtils.round(zyglls.get(i).getY(),2));
|
|
|
+ item.setYear(String.valueOf(year));
|
|
|
+ item.setMonth(String.valueOf(month));
|
|
|
+ wtcfls.add(item);
|
|
|
+ //proEconWtCurveFittingMonthService.save(item);
|
|
|
}
|
|
|
- item.setActualPower(StringUtils.round(sjglls.get(i).getY(),2));
|
|
|
- item.setOptimalPower(StringUtils.round(zyglls.get(i).getY(),2));
|
|
|
- item.setYear(String.valueOf(year));
|
|
|
- item.setMonth(String.valueOf(month));
|
|
|
- wtcfls.add(item);
|
|
|
- //proEconWtCurveFittingMonthService.save(item);
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
//*********************************************当月曲线偏差记录**********************************************************/
|
|
|
|
|
@@ -1558,67 +1563,67 @@ public class PowerCurveFittingByTimeService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- //曲线偏差率
|
|
|
- private double pcl(List<PointVo> points1, List<PointVo> points2, Double modelpower) {
|
|
|
- double result = -0;
|
|
|
- double pc = 0;
|
|
|
- if (points1 != null && points1.size() != 0 && points2 != null && points2.size() != 0) {
|
|
|
- double count = 0;
|
|
|
- double sum = 0;
|
|
|
- double max = modelpower;
|
|
|
- for (PointVo point : points1) {
|
|
|
- List<PointVo> item = points2.stream().filter(it -> Objects.equals(it.getX(), point.getX())).collect(Collectors.toList());
|
|
|
- if (item.size() > 0) {
|
|
|
- sum += Math.pow((point.getY() - item.get(0).getY()), 2);
|
|
|
- count++;
|
|
|
- pc += point.getY() - item.get(0).getY();
|
|
|
- }
|
|
|
- }
|
|
|
- sum = Math.sqrt(sum);
|
|
|
- count = Math.sqrt(count);
|
|
|
- max = max * count;
|
|
|
- if (max != 0) {
|
|
|
- result = sum / max * 100;
|
|
|
- }
|
|
|
-
|
|
|
- if (pc < 0) {
|
|
|
- result = 0 - result;
|
|
|
- }
|
|
|
- }
|
|
|
- return result;
|
|
|
- }
|
|
|
-
|
|
|
- //曲线偏差率2
|
|
|
- private double pcl2(List<PointVo> points1, List<PointVo> points2, Double modelpower, double speed) {
|
|
|
- double minSpeed = speed;
|
|
|
- double maxSpeed = minSpeed + 1;
|
|
|
- double result = -0;
|
|
|
- double pc = 0;
|
|
|
- if (points1 != null && points1.size() != 0 && points2 != null && points2.size() != 0) {
|
|
|
- double count = 0;
|
|
|
- double sum = 0;
|
|
|
- double max = modelpower;
|
|
|
- for (PointVo point : points1) {
|
|
|
- List<PointVo> item = points2.stream().filter(it -> Objects.equals(it.getX(), point.getX())).collect(Collectors.toList());
|
|
|
- if (item.size() > 0 && item.get(0).getX() >= minSpeed && item.get(0).getX() < maxSpeed) {
|
|
|
- sum += Math.pow((point.getY() - item.get(0).getY()), 2);
|
|
|
- count++;
|
|
|
- pc += point.getY() - item.get(0).getY();
|
|
|
- }
|
|
|
- }
|
|
|
- sum = Math.sqrt(sum);
|
|
|
- count = Math.sqrt(count);
|
|
|
- max = max * count;
|
|
|
- if (max != 0) {
|
|
|
- result = sum / max * 100;
|
|
|
- }
|
|
|
-
|
|
|
- if (pc < 0) {
|
|
|
- result = 0 - result;
|
|
|
- }
|
|
|
- }
|
|
|
- return result;
|
|
|
- }
|
|
|
+// //曲线偏差率
|
|
|
+// private double DeviationRateUtil.calculateDeviationRate(List<PointVo> points1, List<PointVo> points2, Double modelpower) {
|
|
|
+// double result = -0;
|
|
|
+// double pc = 0;
|
|
|
+// if (points1 != null && points1.size() != 0 && points2 != null && points2.size() != 0) {
|
|
|
+// double count = 0;
|
|
|
+// double sum = 0;
|
|
|
+// double max = modelpower;
|
|
|
+// for (PointVo point : points1) {
|
|
|
+// List<PointVo> item = points2.stream().filter(it -> Objects.equals(it.getX(), point.getX())).collect(Collectors.toList());
|
|
|
+// if (item.size() > 0) {
|
|
|
+// sum += Math.pow((point.getY() - item.get(0).getY()), 2);
|
|
|
+// count++;
|
|
|
+// pc += point.getY() - item.get(0).getY();
|
|
|
+// }
|
|
|
+// }
|
|
|
+// sum = Math.sqrt(sum);
|
|
|
+// count = Math.sqrt(count);
|
|
|
+// max = max * count;
|
|
|
+// if (max != 0) {
|
|
|
+// result = sum / max * 100;
|
|
|
+// }
|
|
|
+//
|
|
|
+// if (pc < 0) {
|
|
|
+// result = 0 - result;
|
|
|
+// }
|
|
|
+// }
|
|
|
+// return result;
|
|
|
+// }
|
|
|
+//
|
|
|
+// //曲线偏差率2
|
|
|
+// private double DeviationRateUtil.calculateDeviationRate(List<PointVo> points1, List<PointVo> points2, Double modelpower, double speed) {
|
|
|
+// double minSpeed = speed;
|
|
|
+// double maxSpeed = minSpeed + 1;
|
|
|
+// double result = -0;
|
|
|
+// double pc = 0;
|
|
|
+// if (points1 != null && points1.size() != 0 && points2 != null && points2.size() != 0) {
|
|
|
+// double count = 0;
|
|
|
+// double sum = 0;
|
|
|
+// double max = modelpower;
|
|
|
+// for (PointVo point : points1) {
|
|
|
+// List<PointVo> item = points2.stream().filter(it -> Objects.equals(it.getX(), point.getX())).collect(Collectors.toList());
|
|
|
+// if (item.size() > 0 && item.get(0).getX() >= minSpeed && item.get(0).getX() < maxSpeed) {
|
|
|
+// sum += Math.pow((point.getY() - item.get(0).getY()), 2);
|
|
|
+// count++;
|
|
|
+// pc += point.getY() - item.get(0).getY();
|
|
|
+// }
|
|
|
+// }
|
|
|
+// sum = Math.sqrt(sum);
|
|
|
+// count = Math.sqrt(count);
|
|
|
+// max = max * count;
|
|
|
+// if (max != 0) {
|
|
|
+// result = sum / max * 100;
|
|
|
+// }
|
|
|
+//
|
|
|
+// if (pc < 0) {
|
|
|
+// result = 0 - result;
|
|
|
+// }
|
|
|
+// }
|
|
|
+// return result;
|
|
|
+// }
|
|
|
|
|
|
//todo-sl 添加数据筛选
|
|
|
private boolean filterData(PointData gl, PointData fs, List<PointData> ztls,List<PointData> qfztls,int i, double maxPower,double maxSpeed, String windturbineId) throws Exception {
|