Datasets:
Tasks:
Other
Formats:
csv
Size:
100K - 1M
ArXiv:
Tags:
floating-offshore-wind-turbine
tower-fatigue
22-MW-wind-turbine
IEA-22-reference-turbine
tabular-dataset
benchmark-dataset
License:
Update dataset card: add paper, project page, and GitHub links
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,45 +1,69 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
-
pretty_name: "FLOATBench: Wind Turbine Tower Damage"
|
| 4 |
size_categories:
|
| 5 |
-
|
| 6 |
task_categories:
|
| 7 |
-
|
|
|
|
| 8 |
tags:
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
configs:
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
---
|
| 35 |
|
| 36 |
# FLOATBench: Wind Turbine Tower Damage
|
| 37 |
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
damage records across three tower geometries: the IEA-22 reference
|
| 41 |
-
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
## Layout
|
| 45 |
|
|
@@ -58,10 +82,7 @@ FLOATBench/
|
|
| 58 |
|
| 59 |
## Schema
|
| 60 |
|
| 61 |
-
Columns appear in the order below. Each `*_id` grid index sits
|
| 62 |
-
immediately before the value it indexes (`wind_speed_id` before
|
| 63 |
-
`wind_speed`, `wave_hs_id` before `wave_hs`, `wave_tp_id` before
|
| 64 |
-
`wave_tp`).
|
| 65 |
|
| 66 |
`data.csv` (16 cols):
|
| 67 |
|
|
@@ -72,8 +93,7 @@ section_id, section_height_m, section_radius_m, section_thickness_m,
|
|
| 72 |
damage_weight, damage
|
| 73 |
```
|
| 74 |
|
| 75 |
-
`train_damage.csv` / `test_damage.csv` (18 cols): same order, with
|
| 76 |
-
`wind_group, wave_group` inserted right before `damage_weight`.
|
| 77 |
|
| 78 |
The tables below describe each column grouped by category.
|
| 79 |
|
|
@@ -120,31 +140,20 @@ The tables below describe each column grouped by category.
|
|
| 120 |
| `damage` | float | Miner-summed fatigue damage at the section (dimensionless) |
|
| 121 |
| `damage_weight` | float | Probability of occurrence over the 25-year service life |
|
| 122 |
|
| 123 |
-
Lifetime damage at a section is recovered as
|
| 124 |
-
`sum(damage_i * damage_weight_i)` over all conditions.
|
| 125 |
|
| 126 |
## Regime-aware split
|
| 127 |
|
| 128 |
-
The recommended train/test partition is **regime-aware**: an
|
| 129 |
-
alpha-shape over the joint wind/wave operating envelope partitions
|
| 130 |
-
test points into `In-train` / `Interpolate` / `Extrapolate` regimes
|
| 131 |
-
on both the wind and wave axes, populating all nine cells of the
|
| 132 |
-
3×3 wind×wave regime grid. Per tower:
|
| 133 |
|
| 134 |
| Subset | Rows | Conditions | Description |
|
| 135 |
|--------|---------|------------|----------------------------------------------|
|
| 136 |
| Train | 51,840 | 288 | All `In-train`/`In-train` cell |
|
| 137 |
| Test | 142,200 | 790 | Spans the remaining 8 wind×wave regime cells |
|
| 138 |
|
| 139 |
-
Train rows carry `wind_group = wave_group = In-train` by
|
| 140 |
-
construction. Test rows carry the assigned regime labels so the
|
| 141 |
-
9-cell evaluation can be run directly.
|
| 142 |
-
|
| 143 |
### Reproducing the split from grid IDs
|
| 144 |
|
| 145 |
-
The partition is **fully determined by the integer grid IDs**
|
| 146 |
-
(`wind_speed_id`, `wave_hs_id`, `wave_tp_id`) shipped on every row.
|
| 147 |
-
A row is in train iff its three IDs all fall in the train sets:
|
| 148 |
|
| 149 |
```python
|
| 150 |
TRAIN_WS_IDS = {2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14,
|
|
@@ -157,49 +166,20 @@ is_train = (df.wind_speed_id.isin(TRAIN_WS_IDS)
|
|
| 157 |
& df.wave_tp_id.isin(TRAIN_TP_IDS))
|
| 158 |
```
|
| 159 |
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
This regenerates `train_damage.csv` / `test_damage.csv` byte-for-byte
|
| 173 |
-
identical to the shipped files, plus a `split_metadata.json` and
|
| 174 |
-
plots of the partition and train spacing.
|
| 175 |
-
|
| 176 |
-
## Quickstart
|
| 177 |
-
|
| 178 |
-
```python
|
| 179 |
-
import pandas as pd
|
| 180 |
-
|
| 181 |
-
train = pd.read_csv("ref/train_damage.csv")
|
| 182 |
-
test = pd.read_csv("ref/test_damage.csv")
|
| 183 |
-
|
| 184 |
-
# evaluate on the worst-case wind+wave extrapolation cell
|
| 185 |
-
ex_ex = test[(test.wind_group == "Extrapolate") &
|
| 186 |
-
(test.wave_group == "Extrapolate")]
|
| 187 |
```
|
| 188 |
|
| 189 |
## License
|
| 190 |
|
| 191 |
-
Released under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).
|
| 192 |
-
|
| 193 |
-
## Authors
|
| 194 |
-
|
| 195 |
-
- João Alves Ribeiro (corresponding), Massachusetts Institute of
|
| 196 |
-
Technology, `jpar@mit.edu`
|
| 197 |
-
- Bruno Alves Ribeiro, Brown University
|
| 198 |
-
- Francisco Pimenta, University of Porto
|
| 199 |
-
- Sérgio M. O. Tavares, University of Aveiro
|
| 200 |
-
- Faez Ahmed, Massachusetts Institute of Technology, `faez@mit.edu`
|
| 201 |
-
|
| 202 |
-
## Contact
|
| 203 |
-
|
| 204 |
-
For questions or issues with the dataset, contact the corresponding
|
| 205 |
-
author João Alves Ribeiro at `jpar@mit.edu`.
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
| 3 |
size_categories:
|
| 4 |
+
- 100K<n<1M
|
| 5 |
task_categories:
|
| 6 |
+
- other
|
| 7 |
+
pretty_name: 'FLOATBench: Wind Turbine Tower Damage'
|
| 8 |
tags:
|
| 9 |
+
- floating-offshore-wind-turbine
|
| 10 |
+
- tower-fatigue
|
| 11 |
+
- 22-MW-wind-turbine
|
| 12 |
+
- IEA-22-reference-turbine
|
| 13 |
+
- tabular-dataset
|
| 14 |
+
- benchmark-dataset
|
| 15 |
configs:
|
| 16 |
+
- config_name: ref
|
| 17 |
+
data_files:
|
| 18 |
+
- split: train
|
| 19 |
+
path: ref/train_damage.csv
|
| 20 |
+
- split: test
|
| 21 |
+
path: ref/test_damage.csv
|
| 22 |
+
- config_name: opt1
|
| 23 |
+
data_files:
|
| 24 |
+
- split: train
|
| 25 |
+
path: opt1/train_damage.csv
|
| 26 |
+
- split: test
|
| 27 |
+
path: opt1/test_damage.csv
|
| 28 |
+
- config_name: opt2
|
| 29 |
+
data_files:
|
| 30 |
+
- split: train
|
| 31 |
+
path: opt2/train_damage.csv
|
| 32 |
+
- split: test
|
| 33 |
+
path: opt2/test_damage.csv
|
| 34 |
---
|
| 35 |
|
| 36 |
# FLOATBench: Wind Turbine Tower Damage
|
| 37 |
|
| 38 |
+
[**Paper**](https://huggingface.co/papers/2605.25717) | [**Project Page**](https://joao97ribeiro.github.io/FLOATBench/) | [**GitHub**](https://github.com/Joao97ribeiro/FLOATBench)
|
| 39 |
+
|
| 40 |
+
Tabular fatigue dataset for 22 MW floating offshore wind turbine (FOWT) towers. Contains 582,120 labelled tower section fatigue damage records across three tower geometries: the IEA-22 reference turbine baseline (`ref`) and two FLOAT-derived re-designs (`opt1`, `opt2`).
|
| 41 |
+
|
| 42 |
+
FLOATBench is the first FOWT fatigue benchmark for tabular surrogate modeling, offering an evaluation protocol that generalizes to engineering surrogates defined over physical operating envelopes.
|
| 43 |
+
|
| 44 |
+
## Sample Usage
|
| 45 |
+
|
| 46 |
+
### Using the `datasets` library
|
| 47 |
+
```python
|
| 48 |
+
from datasets import load_dataset
|
| 49 |
+
|
| 50 |
+
# Load the IEA-22 reference turbine baseline
|
| 51 |
+
ds = load_dataset('DeCoDELab/FLOATBench', 'ref')
|
| 52 |
+
print(ds)
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
### Using `pandas`
|
| 56 |
+
```python
|
| 57 |
+
import pandas as pd
|
| 58 |
+
|
| 59 |
+
# Load from local CSVs (after downloading)
|
| 60 |
+
train = pd.read_csv("ref/train_damage.csv")
|
| 61 |
+
test = pd.read_csv("ref/test_damage.csv")
|
| 62 |
+
|
| 63 |
+
# Evaluate on the worst-case wind+wave extrapolation cell
|
| 64 |
+
ex_ex = test[(test.wind_group == "Extrapolate") &
|
| 65 |
+
(test.wave_group == "Extrapolate")]
|
| 66 |
+
```
|
| 67 |
|
| 68 |
## Layout
|
| 69 |
|
|
|
|
| 82 |
|
| 83 |
## Schema
|
| 84 |
|
| 85 |
+
Columns appear in the order below. Each `*_id` grid index sits immediately before the value it indexes (`wind_speed_id` before `wind_speed`, `wave_hs_id` before `wave_hs`, `wave_tp_id` before `wave_tp`).
|
|
|
|
|
|
|
|
|
|
| 86 |
|
| 87 |
`data.csv` (16 cols):
|
| 88 |
|
|
|
|
| 93 |
damage_weight, damage
|
| 94 |
```
|
| 95 |
|
| 96 |
+
`train_damage.csv` / `test_damage.csv` (18 cols): same order, with `wind_group, wave_group` inserted right before `damage_weight`.
|
|
|
|
| 97 |
|
| 98 |
The tables below describe each column grouped by category.
|
| 99 |
|
|
|
|
| 140 |
| `damage` | float | Miner-summed fatigue damage at the section (dimensionless) |
|
| 141 |
| `damage_weight` | float | Probability of occurrence over the 25-year service life |
|
| 142 |
|
| 143 |
+
Lifetime damage at a section is recovered as `sum(damage_i * damage_weight_i)` over all conditions.
|
|
|
|
| 144 |
|
| 145 |
## Regime-aware split
|
| 146 |
|
| 147 |
+
The recommended train/test partition is **regime-aware**: an alpha-shape over the joint wind/wave operating envelope partitions test points into `In-train` / `Interpolate` / `Extrapolate` regimes on both the wind and wave axes, populating all nine cells of the 3×3 wind×wave regime grid. Per tower:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 148 |
|
| 149 |
| Subset | Rows | Conditions | Description |
|
| 150 |
|--------|---------|------------|----------------------------------------------|
|
| 151 |
| Train | 51,840 | 288 | All `In-train`/`In-train` cell |
|
| 152 |
| Test | 142,200 | 790 | Spans the remaining 8 wind×wave regime cells |
|
| 153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
### Reproducing the split from grid IDs
|
| 155 |
|
| 156 |
+
The partition is **fully determined by the integer grid IDs** (`wind_speed_id`, `wave_hs_id`, `wave_tp_id`) shipped on every row. A row is in train iff its three IDs all fall in the train sets:
|
|
|
|
|
|
|
| 157 |
|
| 158 |
```python
|
| 159 |
TRAIN_WS_IDS = {2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14,
|
|
|
|
| 166 |
& df.wave_tp_id.isin(TRAIN_TP_IDS))
|
| 167 |
```
|
| 168 |
|
| 169 |
+
## Citation
|
| 170 |
+
|
| 171 |
+
```bibtex
|
| 172 |
+
@misc{ribeiro2026floatbenchdatasetbenchmarkfloating,
|
| 173 |
+
title={FLOATBench: A Dataset and Benchmark for Floating Offshore Wind Turbine Tower Fatigue},
|
| 174 |
+
author={João Alves Ribeiro and Bruno Alves Ribeiro and Francisco Pimenta and Sérgio M. O. Tavares and Faez Ahmed},
|
| 175 |
+
year={2026},
|
| 176 |
+
eprint={2605.25717},
|
| 177 |
+
archivePrefix={arXiv},
|
| 178 |
+
primaryClass={cs.AI},
|
| 179 |
+
url={https://arxiv.org/abs/2605.25717},
|
| 180 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
```
|
| 182 |
|
| 183 |
## License
|
| 184 |
|
| 185 |
+
Released under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|