REVIEW 5 major objections 8 minor 37 references
Three-Stage Composite Outlier Identification of Wind Power Data: Integrating Physical Rules with Regression Learning and Mathematical Morphology
T0 review · 5 major / 8 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read Wind-power data outliers can be found by a three-stage pipeline combining physical rules, RANSAC regression, and image morphology.
desk verdict A plausible three-stage composition of known outlier-identification tools, with a clean write-up and some independent labeled checks, but the headline metric can reward over-removal and needs label-based confirmation. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the image-morphology envelope check. The remaining wind speed-power points are normalized, quantized into a $(q+1) imes(q+1)$ binary matrix, and treated as a digital image; a circular structuring element of diameter $d=6$ is used to erode the image and then dilate the eroded result, removing thin noise while preserving the main band of normal data. The upper and lower boundaries of the nonzero pixels in each column are interpolated into a smooth envelope, and any original point outside the envelope is flagged as an outlier. This stage is what the paper credits with catching dense stacked outliers that the regression stage misses.
What would settle it
Construct a synthetic dataset whose normal points form two separated bands (for example, two power setpoints at overlapping wind speeds), run the morphology stage alone, and count how many injected normal points fall outside the interpolated envelope; a false-positive rate much higher than on a single-band control dataset would show that the single-envelope assumption is load-bearing.
Extended reading notes
Core claim
The paper's central claim is that a three-stage composite outlier identification method can reliably and adaptively identify both dispersive outliers and stacked outliers in wind speed-power data, including stacked outliers densely packed near normal data. Stage one applies simple physical operating rules, such as rejecting negative wind speed, negative power, nonzero power below cut-in speed, and zero power above cut-in speed. Stage two trains a cubic-polynomial RANSAC regression model on stratified samples and uses interquartile-range thresholds on prediction errors to flag most remaining anomalies. Stage three rasterizes the residual data into a binary image, applies erosion and dilation with a circular structuring element, interpolates the upper and lower boundary of the surviving nonzero pixels, and marks every original point outside that envelope as an outlier. Numerical tests on three real turbines and one simulated dataset are used to argue that the composite method beats LOF, Quartile-DBSCAN, MDUE, regression-learning alone, and morphology alone, while retaining computational efficiency and improving wind-power prediction accuracy.
Load-bearing premise
The final stage assumes that after shrinking and regrowing the point cloud, every legitimate wind-speed-power point lies inside one continuous band; if legitimate data form separate clusters or thin tails, the method will flag valid points as outliers.
Editorial extensions
If this is right
- Wind-farm operators can clean operational data without hand-tuning detection thresholds: the IQR step derives its thresholds from the data, and the morphology step adapts to the shape of the normal power curve.
- Cleaned wind-power curves on the tested turbines keep normalized root-mean-square fitting error at or below 0.037 per unit, compared with 0.058 to 0.141 for the comparison methods on the same datasets.
- On the labeled turbine dataset, accuracy stays above 96% and F1 above 0.94; on the simulated dataset, accuracy stays above 94% and F1 reaches 0.928.
- Removing and interpolating the identified outliers reduces short-term wind-power prediction MAE and RMSE by roughly 20% relative to using the unprocessed dataset.
- The paper argues the same three-stage scheme can be extended to other types of wind-turbine SCADA measurements beyond wind speed and power.
Reading between the lines
- A natural extension would reuse the morphology stage as a generic bivariate data-quality filter wherever normal operation forms a band, such as rotor speed versus power or temperature versus output.
- The method is only partly 'adaptive': the IQR factor $k$ and the structuring-element diameter $d$ still come from user-chosen default ranges, so a fully data-driven selection of these two parameters would be the next step.
- Because the cleaned points retain the natural vertical scatter of the power curve instead of collapsing to a single line, the output could also feed condition-monitoring tasks that look for deviations from a normal operating band.
- The strongest confirmation of the dense-stacked-outlier claim would come from a controlled benchmark with injected outlier fractions at known densities, rather than only the one labeled dataset used here.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a three-stage composite outlier identification method for wind speed-power SCADA data. Stage 1 applies physical rules to remove points violating basic turbine operating principles (negative speed/power, zero power above cut-in, nonzero power below cut-in, missing/duplicate records). Stage 2 fits a cubic polynomial wind speed-power model using RANSAC with stratified sampling and 5-fold cross-validation, then flags points whose prediction errors fall outside IQR-based adaptive thresholds. Stage 3 converts the remaining data into a binary image, applies erosion and dilation with a circular structuring element, extracts an envelope from the cleaned image, and marks points outside the envelope as outliers. The method is evaluated on five real SCADA datasets (WT1-WT5) and one simulated dataset (WT6), with comparisons to LOF, Quartile-DBSCAN, MDUE, regression learning alone, and mathematical morphology alone. Metrics include wind power curve fitting RMSE, classification accuracy/F1 on the labeled WT3 dataset, wind power prediction error after cleaning, and computation time. The authors conclude that the method is reliable, adaptive, and superior to the baselines, with F1 above 0.94 on labeled data, fitting errors below 0.037 p.u., and a 20% improvement in prediction accuracy.
Significance. The problem addressed is practically important: SCADA wind power data are heavily contaminated, and existing outlier identification methods often fail on stacked outliers near normal data. The proposed integration of physical rules, robust regression, and morphological image processing is a sensible and reasonably novel combination, and the paper provides a substantial experimental study across multiple real and simulated datasets. The labeled WT3 dataset and the simulated WT6 dataset with known ground truth are valuable assets for verification. The method is computationally efficient enough for practical use. However, the significance of the claimed superiority is currently undermined by evaluation design issues: the primary comparative metric on unlabeled datasets rewards over-removal, the regression model is structurally misspecified at the plateaus of the power curve, and the morphological envelope assumption may discard legitimate data in sparse or multimodal distributions. If these concerns are addressed with additional label-based evaluations and robustness analyses, the method could be a useful contribution to wind power data quality improvement.
major comments (5)
- [Section IV-B, Table III; Eq. (22)] The central comparative metric on unlabeled datasets WT1 and WT2 is the wind power curve fitting RMSE (Ermse in Eq. (22)) computed after outlier removal. This metric structurally rewards any method that deletes points far from a smooth curve, regardless of whether those points are true outliers, and Stage 2 of the proposed method removes exactly the points with large regression residuals. Therefore the observed Ermse reduction is partly a consequence of the method's construction, and the claimed superiority over LOF, Quartile-DBSCAN, and MDUE on these datasets is not established. The authors should report label-based precision, recall, and F1 on datasets where ground truth is available or can be constructed (e.g., expert annotation on a subset of WT1/WT2, or additional synthetic labeled datasets), and should also report the fraction of points removed by each method so that over-removal can be assessed.
- [Section III-B, Eq. (7) and Eqs. (11)-(13)] The cubic polynomial regression model is structurally misspecified for the wind speed-power curve, which has a flat zero-power region below cut-in and a rated-power plateau at the top. After physical rule preprocessing, low-speed zero-power points and rated-power points remain in the data, and a single cubic polynomial cannot represent these plateaus. The residuals of legitimate points at the plateaus will be systematically large, and the IQR thresholds in Eqs. (11)-(13) will consequently flag valid boundary points as outliers. The authors should either replace the cubic model with a piecewise or physically constrained model, or demonstrate via labeled data that this misspecification does not cause a material number of false positives.
- [Section III-C, Steps 2 and 3; Eqs. (20)-(21)] The mathematical morphology refinement assumes that the normal data form a single connected envelope, so that erosion followed by dilation with a circular structuring element of diameter d=6 yields a band that contains all legitimate points. This assumption will fail if normal data are sparse, split into multiple separated clusters, or contain legitimate narrow tails in the wind speed-power distribution, and in those cases the method will mark valid data as outliers. The paper provides no analysis of how the envelope extraction depends on data density or cluster structure. The authors should test the method on simulated data with controlled normal distributions (varying density, multiple clusters, and narrow tails) and report precision/recall breakdowns to characterize the failure modes of this stage.
- [Section V; Section IV-A] The conclusion states that more than 30% of the points in the case studies are anomalous, but this contamination level is not discussed in the data description or in the threshold-setting stage. When more than 30% of the error distribution is contaminated, the quartiles Q1 and Q3 in Eq. (11) are themselves influenced by outliers, so the 'adaptive' IQR thresholds in Eqs. (12)-(13) are not guaranteed to provide reliable separation. The authors should quantify the contamination ratio for each dataset, analyze the robustness of the IQR thresholding as a function of contamination level, and justify why the thresholds remain appropriate under the observed heavy contamination.
- [Section IV-B, Table III and Fig. 13] All comparative performance metrics are reported as single point estimates without error bars, confidence intervals, or statistical significance tests. The RL stage of the proposed method uses 5-fold cross-validation, and the paper says the results are averaged over folds, yet only one value is presented. For a fair and convincing comparison, the authors should report mean and standard deviation over cross-validation folds or multiple runs for the proposed method and for stochastic baselines, and perform a significance test (e.g., paired t-test or Wilcoxon) for the differences in Table III and Fig. 13.
minor comments (8)
- [Table VI] The row 'WT5 100% 0% 1.000' appears twice; one duplicate should be removed.
- [Fig. 15] The x-axis tick labels appear corrupted as '43 5 6 7 8' and should read '3 4 5 6 7 8'.
- [Section III-B, Eq. (8)] The function Me(x) is described as 'estimates the mean value of all the elements in x', but Eq. (8) computes the mean absolute deviation around the median. The definition should be clarified.
- [Section III-C, Eqs. (17)-(19)] The floor function definition in Eq. (19) is nonstandard for negative values; please clarify with a concrete example how negative normalized values are mapped to integer coordinates.
- [References] References [2] and [24] are the same paper (F. Shojaei et al.) and should be merged or differentiated.
- [Table VII] For WT5, the proposed method reduces Ermse from 0.103 to 0.090, which is much smaller than the reduction seen on WT4 (0.130 to 0.027). The authors should explain this limited improvement on WT5, as it may indicate reduced effectiveness on certain data distributions.
- [Section IV-A] The statement that more than 30% of data points are anomalous should be introduced in the data description section rather than appearing only in the conclusion, so that the reader can interpret the subsequent results in that context.
- [Section III-D, Eq. (22)] The description of the bin method and cubic spline interpolation used to compute the power curve for Eq. (22) is brief; please provide enough detail to make the computation reproducible.
Circularity Check
Partial circularity in the unlabeled evaluation: post-cleaning curve-fit RMSE largely re-measures the method's own removal rule, though labeled F1 results are independent.
-
fitted input called prediction
[Section III-B Eq. (14) as evaluated by Section III-D Eq. (22) and Table III]
"Ua ={(vi,pi)| (vi,pi)∈ U,ei≤tlow or ei≥tup} Un ={(vi,pi)| (vi,pi)∈ U,tlow <e i <t up} (14); Ermse = 1/C sqrt(1/N sum (ˆpi−pi)^2) (22). First, since the wind power curve fitting error is widely used ... it is chosen as the straightforward metric to initially assess the potential of the proposed methodology in removing outliers far from the normal wind power curve."
Stage 2 defines the 'normal' set as points whose errors relative to the RANSAC-fitted cubic regression fall inside IQR thresholds. The main unlabeled evaluation then measures Ermse by fitting a bin-method power curve to the cleaned dataset. Because the cleaning rule explicitly discards points far from a smooth regression, the post-cleaning bin-curve fit is close to that regression by construction; the reported Ermse reduction is partly a built-in consequence of the removal rule rather than an independent test of whether those points are truly anomalous. On unlabeled WT1 and WT2, where no labels exist, comparing methods via Ermse rewards aggressive removal, so the claimed superiority over LOF, Quartile-DBSCAN, and MDUE is not fully established by those rows.
full rationale
The three-stage method itself is not definitionally circular: each stage operates on input data with stated rules, and no fitted parameter is simultaneously used as its own ground truth. The labeled WT3 and WT6 experiments give external F1/accuracy evidence that the central outlier-identification claim has independent content. However, the paper's unlabeled WT1/WT2 comparisons rest on post-cleaning wind-power-curve RMSE, and that metric is confounded with the cleaning rule: Eq. (14) removes points with large regression residuals, and Eq. (22) then measures how close the remaining points are to a smooth curve. Since the method is explicitly designed to keep points near a smooth curve, its low Ermse is partly guaranteed by construction, and methods that retain legitimate scatter are penalized. This is a real partial circularity in the evaluation logic, but it does not collapse the whole derivation, because the labeled metrics are independent and the method's stages do not import their conclusions from the paper's own citations. Overall score reflects partial evaluation circularity, not a fully self-referential derivation.
Assumptions & free parameters
free parameters (6)
- RANSAC threshold multiplier c =
1.43
- RANSAC maximum iterations Nmax =
1000
- IQR adjustment factor k =
1.5
- Structuring element diameter d =
6
- Image quantization level q =
100
- Polynomial expansion degree =
3
assumptions (5)
- domain assumption Normal wind speed-power data form a connected, band-like two-dimensional distribution after quantization.
- domain assumption A single cubic polynomial can represent the normal wind speed-power relationship across the full operating range.
- domain assumption Zero power above cut-in and nonzero power below cut-in are always anomalous.
- domain assumption The synthetic labels of WT3 are representative of real outlier distributions.
- standard math Standard properties of mathematical morphology erosion and dilation transfer to binary images of SCADA data.
Cite this review
Pith. "Pith review of Three-Stage Composite Outlier Identification of Wind Power Data: Integrating Physical Rules with Regression Learning and Mathematical Morphology." pith.science (2026). https://pith.science/paper/BSXE4N33
@misc{pith2026250421354,
author = {Pith},
title = {Pith review of: Three-Stage Composite Outlier Identification of Wind Power Data: Integrating Physical Rules with Regression Learning and Mathematical Morphology},
year = {2026},
howpublished = {\url{https://pith.science/paper/BSXE4N33}},
note = {Machine review of arXiv:2504.21354}
}
read the original abstract
Existing studies on identifying outliers in wind speed-power datasets are often challenged by the complicated and irregular distributions of outliers, especially those being densely stacked yet staying close to normal data. This could degrade their identification reliability and robustness in practice. To address this defect, this paper develops a three-stage composite outlier identification method by systematically integrating three complementary techniques, i.e., physical rule-based preprocessing, regression learning-enabled detection, and mathematical morphology-based refinement. Firstly, the raw wind speed-power data are preprocessed via a set of simple yet efficient physical rules to filter out some outliers obviously going against the physical operating laws of practical wind turbines. Secondly, a robust wind speed-power regression learning model is built upon the random sample consensus algorithm. This model is able to reliably detect most outliers with the help of an adaptive threshold automatically set by the interquartile range method. Thirdly, by representing the wind speed-power data distribution with a two-dimensional image, mathematical morphology operations are applied to perform refined outlier identification from a data distribution perspective. This technique can identify outliers that are not effectively detected in the first two stages, including those densely stacked ones near normal data points. By integrating the above three techniques, the whole method is capable of identifying various types of outliers in a reliable and adaptive manner. Numerical test results with wind power datasets acquired from distinct wind turbines in practice and from simulation environments extensively demonstrate the superiority of the proposed method as well as its potential in enhancing wind power prediction.
Figures
Figures from the paper (14 more)
Reference graph
Works this paper leans on
-
[1]
L. Ye, C. Zhang, Y . Tang, W. Zhong, Y . Zhao, P. Lu, B. Zhai, H. Lan, and Z. Li, “Hierarchical model predictive control strategy based on dynamic active power dispatch for wind power cluster integration,” IEEE Trans. Power Syst., vol. 34, no. 6, pp. 4617–4629, 2019
work page 2019
-
[3]
Sequential data-driven automatic calibration of wind turbine fault information in smart grids,
L. Zhu and Y . Song, “Sequential data-driven automatic calibration of wind turbine fault information in smart grids,” IEEE Internet Things J. , vol. 9, no. 11, pp. 8943–8952, 2022
work page 2022
-
[4]
Time series data-driven online prognosis of wind turbine faults in presence of scada data loss,
L. Zhu and X. Zhang, “Time series data-driven online prognosis of wind turbine faults in presence of scada data loss,” IEEE Trans. Sustain. Energy, vol. 12, no. 2, pp. 1289–1300, 2021
work page 2021
-
[5]
Wind power curve modeling and wind power forecasting with inconsistent data,
Y . Wang, Q. Hu, D. Srinivasan, and Z. Wang, “Wind power curve modeling and wind power forecasting with inconsistent data,” IEEE Trans. Sustain. Energy, vol. 10, no. 1, pp. 16–25, 2019
work page 2019
-
[7]
L. Yang, F. Tsung, K. Wang, and J. Zhou, “Wind power forecasting based on a spatialtemporal graph convolution network with limited engineering knowledge,” IEEE Trans. Instrum. Meas. , vol. 73, pp. 1–13, 2024
work page 2024
-
[8]
Low-voltage ride-through remote testing method for offshore wind turbines,
Z. Jiang and Y . Liu, “Low-voltage ride-through remote testing method for offshore wind turbines,” IEEE Trans. Instrum. Meas., vol. 69, no. 6, pp. 2905–2913, 2020
work page 2020
-
[9]
Collection system topol- ogy for deep-sea offshore wind farms considering wind characteristics,
Y . Fu, Y . Liu, L.-l. Huang, F. Ying, and F. Li, “Collection system topol- ogy for deep-sea offshore wind farms considering wind characteristics,” IEEE Trans. Energy Convers. , vol. 37, no. 1, pp. 631–642, 2022
work page 2022
-
[10]
Z. Khan, M. Naeem, U. Khalil, D. M. Khan, S. Aldahmani, and M. Hamraz, “Feature selection for binary classification within functional genomics experiments via interquartile range and clustering,” IEEE Access, vol. 7, pp. 78 159–78 169, 2019. 13
work page 2019
Show all 37 references
-
[11]
Comparing threshold selection methods for network anomaly detection,
A. Komadina, M. Martini, S. Gro, and . Mihajlovi, “Comparing threshold selection methods for network anomaly detection,” IEEE Access, vol. 12, pp. 124 943–124 973, 2024
2024
-
[12]
An adaptive identification method of abnormal data in wind and solar power stations,
H. Wang, N. Zhang, E. Du, J. Yan, S. Han, N. Li, H. Li, and Y . Liu, “An adaptive identification method of abnormal data in wind and solar power stations,” Renewable Energy, vol. 208, pp. 76–93, 2023
2023
-
[13]
Models for monitoring wind farm power,
A. Kusiak, H. Zheng, and Z. Song, “Models for monitoring wind farm power,” Renewable Energy, vol. 34, no. 3, pp. 583–590, 2009
2009
-
[14]
Modeling wind-turbine power curve: A data partitioning and mining approach,
T. Ouyang, A. Kusiak, and Y . He, “Modeling wind-turbine power curve: A data partitioning and mining approach,” Renewable Energy, vol. 102, pp. 1–8, 2017
2017
-
[15]
A combined algorithm for cleaning abnor- mal data of wind turbine power curve based on change point grouping algorithm and quartile algorithm,
X. Shen, X. Fu, and C. Zhou, “A combined algorithm for cleaning abnor- mal data of wind turbine power curve based on change point grouping algorithm and quartile algorithm,” IEEE Trans. Sustain. Energy, vol. 10, no. 1, pp. 46–54, 2018
2018
-
[16]
Raw wind data preprocessing: A data- mining approach,
L. Zheng, W. Hu, and Y . Min, “Raw wind data preprocessing: A data- mining approach,” IEEE Trans. Sustain. Energy, vol. 6, no. 1, pp. 11–19, 2015
2015
-
[17]
Data-driven correction approach to refine power curve of wind farm under wind curtailment,
Y . Zhao, L. Ye, W. Wang, H. Sun, Y . Ju, and Y . Tang, “Data-driven correction approach to refine power curve of wind farm under wind curtailment,” IEEE Trans. Sustain. Energy , vol. 9, no. 1, pp. 95–105, 2018
2018
-
[18]
An abnormal data processing method based on an ensemble algorithm for early warning of wind turbine failure,
Q. Zhao, K. Bao, Z. Wei, Y . Han, and J. Wang, “An abnormal data processing method based on an ensemble algorithm for early warning of wind turbine failure,” IEEE Access, vol. 9, pp. 69 044–69 060, 2021
2021
-
[19]
Copula-based model for wind turbine power curve outlier rejection,
Y . Wang, D. G. Infield, B. Stephen, and S. J. Galloway, “Copula-based model for wind turbine power curve outlier rejection,” Wind Energy, vol. 17, no. 11, pp. 1677–1688, 2014
2014
-
[20]
Image-based abnormal data detection and cleaning algorithm via wind power curve,
H. Long, L. Sang, Z. Wu, and W. Gu, “Image-based abnormal data detection and cleaning algorithm via wind power curve,” IEEE Trans. Sustain. Energy, vol. 11, no. 2, pp. 938–946, 2019
2019
-
[21]
A fast abnormal data cleaning algorithm for performance evaluation of wind turbine,
Z. Wang, L. Wang, and C. Huang, “A fast abnormal data cleaning algorithm for performance evaluation of wind turbine,” IEEE Trans. Instrum. Meas., vol. 70, pp. 1–12, 2021
2021
-
[22]
Wind power curve data cleaning algorithm via image thresholding,
Y . Su, F. Chen, G. Liang, X. Wu, and Y . Gan, “Wind power curve data cleaning algorithm via image thresholding,” in 2019 IEEE International Conference on Robotics and Biomimetics (ROBIO) , 2019, pp. 1198– 1203
2019
-
[23]
Wind power curve data cleaning by image thresholding based on class uncertainty and shape dissimilarity,
G. Liang, Y . Su, F. Chen, H. Long, Z. Song, and Y . Gan, “Wind power curve data cleaning by image thresholding based on class uncertainty and shape dissimilarity,” IEEE Trans. Sustain. Energy , vol. 12, no. 2, pp. 1383–1393, 2021
2021
-
[24]
Filters optimized tuning for wind farms reactive power calculation,
F. Shojaei, H. Samet, and T. Ghanbari, “Filters optimized tuning for wind farms reactive power calculation,” IEEE Trans. Instrum. Meas. , vol. 70, pp. 1–9, 2021
2021
-
[25]
Deep belief network-based hammer- stein nonlinear system for wind power prediction,
F. Li, M. Zhang, Y . Yu, and S. Li, “Deep belief network-based hammer- stein nonlinear system for wind power prediction,” IEEE Trans. Instrum. Meas., vol. 73, pp. 1–12, 2024
2024
-
[26]
Robust calibration approach for robot base coordinate system based on ransac-svd,
G. Wang, J. Wen, X. Gao, L. Yan, and I.-M. Chen, “Robust calibration approach for robot base coordinate system based on ransac-svd,” IEEE Trans. Instrum. Meas. , vol. 72, pp. 1–9, 2023
2023
-
[27]
An image matching op- timization algorithm based on pixel shift clustering ransac,
S. Ma, P. Guo, H. You, P. He, G. Li, and H. Li, “An image matching op- timization algorithm based on pixel shift clustering ransac,” Information Sciences, vol. 562, pp. 452–474, 2021
2021
-
[28]
An enhanced mutated particle filter tech- nique for system state estimation and battery life prediction,
M. Ahwiadi and W. Wang, “An enhanced mutated particle filter tech- nique for system state estimation and battery life prediction,” IEEE Trans. Instrum. Meas. , vol. 68, no. 3, pp. 923–935, 2019
2019
-
[29]
Dependency analysis of accuracy estimates in k-fold cross validation,
T.-T. Wong and N.-Y . Yang, “Dependency analysis of accuracy estimates in k-fold cross validation,” IEEE Trans. Knowl. Data Eng. , vol. 29, no. 11, pp. 2417–2427, 2017
2017
-
[30]
Performance prediction us- ing high-order differential mathematical morphology gradient spectrum entropy and extreme learning machine,
H. Zhao, H. Liu, J. Xu, and W. Deng, “Performance prediction us- ing high-order differential mathematical morphology gradient spectrum entropy and extreme learning machine,” IEEE Trans. Instrum. Meas. , vol. 69, no. 7, pp. 4165–4172, 2020
2020
-
[31]
Multi-focus image fusion through gradient- based decision map construction and mathe- matical morphology,
X. Bai, M. Liu, Z. Chen, P. Wang, and Y . Zhang, “Multi-focus image fusion through gradient- based decision map construction and mathe- matical morphology,” IEEE Access, vol. 4, pp. 4749–4760, 2016
2016
-
[32]
Method for cleaning abnormal data of wind turbine power curve based on density clustering and boundary extraction,
Z. Luo, C. Fang, C. Liu, and S. Liu, “Method for cleaning abnormal data of wind turbine power curve based on density clustering and boundary extraction,” IEEE Trans. Sustain. Energy, vol. 13, no. 2, pp. 1147–1159, 2022
2022
-
[33]
A normal behavior model based on power curve and stacked regressions for condition monitoring of wind turbines,
F. Bilendo, H. Badihi, N. Lu, P. Cambron, and B. Jiang, “A normal behavior model based on power curve and stacked regressions for condition monitoring of wind turbines,” IEEE Trans. Instrum. Meas. , vol. 71, pp. 1–13, 2022
2022
-
[34]
Accelerated evaluation of quasi-static interaction integrals via cubic spline interpolation in the framework of the peec method,
D. Romano, I. Kovacevic-Badstuebner, G. Antonini, and U. Grossner, “Accelerated evaluation of quasi-static interaction integrals via cubic spline interpolation in the framework of the peec method,” IEEE Trans. Electromagn. Compat., vol. 66, no. 3, pp. 829–836, 2024
2024
-
[35]
Accessed: Oct
Wtg anomaly data identification and cleaning. Accessed: Oct. 2024. [Online]. Available: https://www.datafountain.cn/competitions/451
2024
-
[36]
Exploratory data analysis,
Tukey and J. W, “Exploratory data analysis,” Reading/Addison-Wesley, 1977
1977
-
[37]
The birth of mathematical morphology,
G. Matheron and J. Serra, “The birth of mathematical morphology,” in Proceedings of the 6th International Symposium on Mathematical Morphology, pp. 1–16, 2002
2002
-
[38]
Mammadov
E. Mammadov. Wind turbine fault identification using machine learning techniques applied to scada data. Accessed: Oct. 2024. [Online]. Available: https://github.com/GCShawn/WT fault identification.git
2024
-
[39]
Accessed: Dec
Wind farm - induction generator. Accessed: Dec. 2024. [Online]. Available: https://www.mathworks.com/help/sps/ug/wind-farm-ig.html
2024
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.