|
@@ -31,8 +31,8 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
|
|
|
@Value("${curvefitting.dimension}")
|
|
|
private Integer dimension;
|
|
|
- @Value("${curvefitting.scale}")
|
|
|
- private Double scale;
|
|
|
+
|
|
|
+ private Double scale=1.0;
|
|
|
@Value("${initialcode}")
|
|
|
private String initialcode;
|
|
|
public Map<String, Double> windturbineCapacity;
|
|
@@ -164,7 +164,7 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
List<ProEconCurveFittingMain> mainls=new ArrayList<>();
|
|
|
for (String key : windMap.keySet()) {
|
|
|
|
|
|
- Double modelpower = 1500.0;
|
|
|
+ Double modelpower = 500.0;
|
|
|
if (windturbineCapacity.containsKey(key)) {
|
|
|
modelpower = windturbineCapacity.get(key);
|
|
|
}
|
|
@@ -340,31 +340,20 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
|
|
|
Map<String, ProBasicEquipmentPoint> windturbinetestingpointnewMap = CacheContext.wtpAimap.get(wt.getId());
|
|
|
//设备有功功率
|
|
|
- String pointIdGL = windturbinetestingpointnewMap.get(ContantXk.CJ_SSGL).getNemCode();
|
|
|
+ String pointIdGL = null;
|
|
|
//设备明细状态
|
|
|
- String pointIdZT = windturbinetestingpointnewMap.get(ContantXk.MXZT).getNemCode();
|
|
|
-
|
|
|
- String pointIdFS;
|
|
|
- if (wt.getWindpowerstationId().contains(WpType.GDC.id)) { //测风塔70米风速
|
|
|
-
|
|
|
- if (windturbinetestingpointnewMap.containsKey(ContantXk.FCCFTFS70)) {
|
|
|
- ProBasicEquipmentPoint point = windturbinetestingpointnewMap.get(ContantXk.FCCFTFS70);
|
|
|
+ String pointIdZT = null;
|
|
|
|
|
|
- if (StringUtils.notEmp(point.getNemCode()) && !point.getNemCode().equals(initialcode)) {
|
|
|
- pointIdFS = windturbinetestingpointnewMap.get(ContantXk.FCCFTFS70).getNemCode();
|
|
|
- } else {
|
|
|
- pointIdFS = windturbinetestingpointnewMap.get(ContantXk.CJ_SSFS).getNemCode();
|
|
|
- }
|
|
|
- } else {
|
|
|
- pointIdFS = windturbinetestingpointnewMap.get(ContantXk.CJ_SSFS).getNemCode();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- } else { //设备风速
|
|
|
+ String pointIdFS = null;
|
|
|
+ if (windturbinetestingpointnewMap.containsKey(ContantXk.CJ_SSFS)) {
|
|
|
pointIdFS = windturbinetestingpointnewMap.get(ContantXk.CJ_SSFS).getNemCode();
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
+ if (windturbinetestingpointnewMap.containsKey(ContantXk.MXZT)) {
|
|
|
+ pointIdZT = windturbinetestingpointnewMap.get(ContantXk.MXZT).getNemCode();
|
|
|
+ }
|
|
|
+ if (windturbinetestingpointnewMap.containsKey(ContantXk.CJ_SSGL)) {
|
|
|
+ pointIdGL = windturbinetestingpointnewMap.get(ContantXk.CJ_SSGL).getNemCode();
|
|
|
+ }
|
|
|
CureFittingVo item = new CureFittingVo();
|
|
|
|
|
|
item.setPointIdFS(pointIdFS);
|
|
@@ -398,16 +387,16 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
//拟合月功率曲线
|
|
|
curveFittingBuilder(begin, end, dimension, scale, windMap.get(key).getPointIdGL(), windMap.get(key).getPointIdFS(), windMap.get(key).getPointIdZT(), windMap.get(key).getYsjglPoints(), windMap.get(key).getYzyglPoints(), key);
|
|
|
|
|
|
- List<PointVo> vos = windMap.get(key).getYsjglPoints().stream().filter(it -> it.getX() >= 0 && it.getX() <= 25).sorted(Comparator.comparing(PointVo::getX)).collect(Collectors.toList());
|
|
|
+ List<PointVo> vos = windMap.get(key).getYsjglPoints().stream().filter(it -> it.getX() >= 0 ).sorted(Comparator.comparing(PointVo::getX)).collect(Collectors.toList());
|
|
|
windMap.get(key).setYsjglPoints(vos);
|
|
|
- vos = windMap.get(key).getYzyglPoints().stream().filter(it -> it.getX() >= 0 && it.getX() <= 25).sorted(Comparator.comparing(PointVo::getX)).collect(Collectors.toList());
|
|
|
+ vos = windMap.get(key).getYzyglPoints().stream().filter(it -> it.getX() >= 0 ).sorted(Comparator.comparing(PointVo::getX)).collect(Collectors.toList());
|
|
|
windMap.get(key).setYzyglPoints(vos);
|
|
|
|
|
|
}
|
|
|
List<ProEconCurveFittMonthMain> mainls=new ArrayList<>();
|
|
|
for (String key : windMap.keySet()) {
|
|
|
|
|
|
- Double modelpower = 1500.0;
|
|
|
+ Double modelpower = 500.0;
|
|
|
if (windturbineCapacity.containsKey(key)) {
|
|
|
modelpower = windturbineCapacity.get(key);
|
|
|
}
|
|
@@ -690,7 +679,7 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
List<ProEconCurveFittYearMain> mainls=new ArrayList<>();
|
|
|
for (String key : windMap.keySet()) {
|
|
|
|
|
|
- Double modelpower = 1500.0;
|
|
|
+ Double modelpower = 500.0;
|
|
|
if (windturbineCapacity.containsKey(key)) {
|
|
|
modelpower = windturbineCapacity.get(key);
|
|
|
}
|
|
@@ -1560,13 +1549,13 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
} else {
|
|
|
if (z == 2) {
|
|
|
|
|
|
- b = (x >= 0 && x <= 30 && y >= 0 && y <= maxPower);
|
|
|
+ b = (x >= 0 && x <= 1000 && y >= 0 && y <= maxPower);
|
|
|
|
|
|
if (b) {
|
|
|
- if (x > 3 && y <= 0) {
|
|
|
+ if (x > 0 && y <= 0) {
|
|
|
b = false;
|
|
|
}
|
|
|
- if (x <= 3 && y > 0) {
|
|
|
+ if (x <= 0 && y > 0) {
|
|
|
b = false;
|
|
|
}
|
|
|
}
|
|
@@ -1616,13 +1605,13 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
} else {
|
|
|
if (z == 2) {
|
|
|
|
|
|
- b = (x >= 0 && x <= 30 && y >= 0 && y <= maxPower);
|
|
|
+ b = (x >= 0 && x <= 1000 && y >= 0 && y <= maxPower);
|
|
|
|
|
|
if (b) {
|
|
|
- if (x > 3 && y <= 0) {
|
|
|
+ if (x > 0 && y <= 0) {
|
|
|
b = false;
|
|
|
}
|
|
|
- if (x <= 3 && y > 0) {
|
|
|
+ if (x <= 0 && y > 0) {
|
|
|
b = false;
|
|
|
}
|
|
|
}
|
|
@@ -1650,7 +1639,7 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
}
|
|
|
sjglnhpoints.add(new PointfVo(0.0, 0.0));
|
|
|
|
|
|
- sjglnhpoints = sjglnhpoints.stream().filter(it -> it.getX() >= 3).sorted(Comparator.comparing(PointfVo::getX)).collect(Collectors.toList());
|
|
|
+ sjglnhpoints = sjglnhpoints.stream().filter(it -> it.getX() >= 0).sorted(Comparator.comparing(PointfVo::getX)).collect(Collectors.toList());
|
|
|
// if (sjglnhpoints.stream().min(Comparator.comparing(PointfVo::getX)).isPresent()) {
|
|
|
// double Xmax = sjglnhpoints.stream().max(Comparator.comparing(PointfVo::getX)).get().getX();
|
|
|
// double Ymax = sjglnhpoints.stream().max(Comparator.comparing(PointfVo::getX)).get().getY();
|
|
@@ -1668,7 +1657,7 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
if (!zyglnhpoints.containsKey(0.0))
|
|
|
zyglnhpoints.put(0.0, new PointfVo(0.0, 0.0));
|
|
|
|
|
|
- List<PointfVo> zygltemp = zyglnhpoints.values().stream().filter(it -> it.getX() >= 3).sorted(Comparator.comparing(PointfVo::getX)).collect(Collectors.toList());
|
|
|
+ List<PointfVo> zygltemp = zyglnhpoints.values().stream().filter(it -> it.getX() >= 0).sorted(Comparator.comparing(PointfVo::getX)).collect(Collectors.toList());
|
|
|
if (zygltemp.size() != 0) {
|
|
|
temp = LineUtil.buildLine(zygltemp.stream().mapToDouble(PointfVo::getX).toArray(), zygltemp.stream().mapToDouble(PointfVo::getY).toArray(), zygltemp.size(), dimension, scale);
|
|
|
}
|
|
@@ -1683,15 +1672,15 @@ public class PowerCurveFittingByTimeGfService {
|
|
|
private static void buildMyPoints(List<PointVo> sjglPoints, double scale) {
|
|
|
int coefficient = 1;
|
|
|
int dec = 0;
|
|
|
- int smax = 25;
|
|
|
- if (scale == 0.01) {
|
|
|
- coefficient = 100;
|
|
|
- dec = 2;
|
|
|
- }
|
|
|
- if (scale == 0.1) {
|
|
|
- coefficient = 10;
|
|
|
- dec = 1;
|
|
|
- }
|
|
|
+ int smax = 1000;
|
|
|
+// if (scale == 0.01) {
|
|
|
+// coefficient = 100;
|
|
|
+// dec = 2;
|
|
|
+// }
|
|
|
+// if (scale == 0.1) {
|
|
|
+// coefficient = 10;
|
|
|
+// dec = 1;
|
|
|
+// }
|
|
|
|
|
|
smax *= coefficient;
|
|
|
|