Skip to main content

SSWS - Site-Specific Wind Speed Adjustment

Location: tact/adjustments/SSWS.py

Overview

The SSWS (Site-Specific Wind Speed) method adjusts turbulence intensity measurements by first correcting wind speed measurements, then recalculating turbulence intensity using the adjusted wind speed.

Methodology

Algorithm Steps

  1. Train Wind Speed Regression (on training data):
  2. Apply Wind Speed Adjustment (to test data):
  3. Recalculate Turbulence Intensity:
  4. Calculate Representative TI:

Key Characteristics

  • Two-stage adjustment: Wind speed first, then TI calculation
  • Error propagation: Errors in WS adjustment affect TI calculation
  • Linear regression: Uses simple linear model for WS correction
  • Train/test split: Builds model on training data, applies to test data

Usage

Basic Example

With DNV Validation

Parameters

Required Parameters

Configuration Requirements

The config file must specify column mappings:

Required Data Columns

The input data must contain:
  • Reference wind speed (e.g., ref_ws)
  • Reference wind speed standard deviation (e.g., ref_sd)
  • RSD wind speed (e.g., rsd_ws)
  • RSD wind speed standard deviation (e.g., rsd_sd)
  • Train/test split indicator (e.g., split)
  • Wind speed bins (e.g., bins)

Output Format

Returned Dictionary

Adjusted Data Columns

The method adds these columns to your data:

Regression Results

Performance Characteristics

When SSWS Works Well

  • Strong linear relationship between RSD and reference wind speed
  • Low noise in wind speed measurements
  • Consistent wind speed bias across all speeds

When SSWS May Struggle

  • Error propagation: WS errors amplify in TI calculation
  • Low wind speeds: Division by small values creates large relative errors
  • Non-linear relationships: Linear regression can’t capture complex patterns
  • High scatter: R² < 0.8 indicates poor model fit

Performance on Example Dataset

Based on DNV RP-0661 LV criteria validation: Note: SSWS performs worse than baseline (90.39% MRBE) on the example dataset due to error propagation. See Method Comparison for details.

Comparison with Other Methods

Implementation Details

Class Definition

Key Functions Used

  • get_regression() - Performs linear regression
  • post_adjustment_stats() - Calculates statistics
  • Column mapping from config file

Troubleshooting

Common Issues

Issue: High MRBE/RRMSE despite good R² Cause: Error propagation from WS adjustment to TI calculation Solution: Try SS-SF method instead (adjusts TI directly)
Issue: Negative adjusted wind speeds Cause: Large negative intercept with low wind speeds Solution: Check regression intercept, consider filtering low WS data
Issue: Very different train vs test performance Cause: Overfitting or non-representative split Solution: Verify train/test split is random and representative

See Also

References

  • DNV GL: DNV-RP-0661 - Remote Sensing Measurement Verification
  • IEC 61400-12-1 - Wind turbine power performance testing

Source Code

Full implementation: tact/adjustments/SSWS.py