|
@@ -301,7 +301,7 @@ public class WindALG {
|
|
|
PowerPointData item = list.get(i);
|
|
|
double dfwc = 0;
|
|
|
if (equipments.size()>0) {
|
|
|
- dfwc = Math.abs(item.getDfwc()) * 57.2958;//对风误差-弧度转角度
|
|
|
+ dfwc = Math.abs(item.getDfwc()) * 57.2958;//对风误差进行弧度转角度
|
|
|
} else {
|
|
|
dfwc = Math.abs(item.getDfwc());
|
|
|
}
|
|
@@ -382,12 +382,23 @@ public class WindALG {
|
|
|
* @param list
|
|
|
* @return
|
|
|
*/
|
|
|
- public static int[] windDeviationRatio(List<PowerPointData> list){
|
|
|
+ public static int[] windDeviationRatio(List<PowerPointData> list,List<ProBasicEquipment> equipments){
|
|
|
int[] pc = new int[101]; //正负偏差 [-50,-49,....,0,1,2,.....50]
|
|
|
//次数统计
|
|
|
+ List<Double> dfwcls = new ArrayList<>();
|
|
|
+ List<Double> fxls = new ArrayList<>();
|
|
|
for (int i = 0; i < list.size(); i++){
|
|
|
PowerPointData item = list.get(i);
|
|
|
- int ele = (int) (Math.abs(item.getFx()) + Math.abs(item.getDfwc()));
|
|
|
+ double dfwc = 0;
|
|
|
+ if (equipments.size()>0) {
|
|
|
+ dfwc = Math.abs(item.getDfwc()) * 57.2958;
|
|
|
+ dfwcls.add(dfwc);
|
|
|
+ } else {
|
|
|
+ dfwc = Math.abs(item.getDfwc());
|
|
|
+ dfwcls.add(dfwc);
|
|
|
+ }
|
|
|
+ fxls.add(item.getFx());
|
|
|
+ int ele = (int) (Math.abs(item.getFx()) + dfwc);
|
|
|
int index = ele - 180;
|
|
|
if (index >= -50 && index <= 50)
|
|
|
pc[50-(index > 0 ? -index : Math.abs(index))]++;
|
|
@@ -396,7 +407,42 @@ public class WindALG {
|
|
|
return pc;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+// public static int[] windDeviationRatio(List<PowerPointData> list, List<ProBasicEquipment> equipments) {
|
|
|
+// int[] pc = new int[101];
|
|
|
+//
|
|
|
+// for (int i = 0; i < list.size(); i++) {
|
|
|
+// PowerPointData item = list.get(i);
|
|
|
+// double fx = item.getFx();
|
|
|
+// double dfwc = 0;
|
|
|
+//
|
|
|
+//
|
|
|
+// fx = (fx + 360) % 360;
|
|
|
+//
|
|
|
+//
|
|
|
+// if (equipments.size() > 0) {
|
|
|
+// dfwc = Math.abs(item.getDfwc()) * 57.2958;
|
|
|
+// } else {
|
|
|
+// dfwc = Math.abs(item.getDfwc());
|
|
|
+// }
|
|
|
+//
|
|
|
+//
|
|
|
+// double ele = (fx + dfwc) % 360;
|
|
|
+//
|
|
|
+//
|
|
|
+// int index = (int) (ele - 180);
|
|
|
+//
|
|
|
+//
|
|
|
+// if (ele >= 130 && ele <= 230) {
|
|
|
+//
|
|
|
+// int pcIndex = 50 + index;
|
|
|
+// if (pcIndex >= 0 && pcIndex <= 100) {
|
|
|
+// pc[pcIndex]++;
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+//
|
|
|
+// return pc;
|
|
|
+// }
|
|
|
/**
|
|
|
* 风向划分
|
|
|
* 0:0-22.5
|