design_turbine
¶
Functions:
-
onshore_turbine_from_avg_wind_speed–Convenience function for backward compatibility, will be removed soon.
-
turbine_design_from_avg_wind_speed–Suggest onshore turbine design characteristics (capacity, hub height, rotor diameter, specific power) for a 2050 European context based on an average wind speed value.
onshore_turbine_from_avg_wind_speed
¶
Convenience function for backward compatibility, will be removed soon. All kwargs are passed to turbine_design_from_avg_wind_speed() with technology='onshore'.
wind_speed : numeric or array_like Local average wind speed close to or at the hub height.
Source code in reskit/wind/core/design_turbine.py
turbine_design_from_avg_wind_speed
¶
turbine_design_from_avg_wind_speed(
wind_speed,
technology,
constant_rotor_diam=None,
base_capacity=None,
base_hub_height=None,
base_rotor_diam=None,
reference_wind_speed=None,
reference_wind_speed_hubheight=None,
reference_wind_speed_specpow=None,
min_tip_height=None,
min_specific_power=None,
max_hub_height=None,
tech_year=2050,
baseline_turbine_fp=None,
convention="RybergEtAl2019",
)
Suggest onshore turbine design characteristics (capacity, hub height, rotor diameter, specific power) for a 2050 European context based on an average wind speed value. The default values and the function's normalization correspond to the baseline turbine design considered by Ryberg et al. [1] for a wind speed equal to 6.7 m/s. See notes.
Parameters #TODO remove all default values, depends on the default baseline turbine file!
wind_speed : numeric or array_like Local average wind speed close to or at the hub height.
technology : str Either "onshore" or "offshore" to define the turbine scaling functions.
constant_rotor_diam : bool, optional Whether the rotor diameter is maintained constant or not, by default True
base_capacity : numeric or array_like, optional Baseline turbine capacity in kW, by default 4200.
base_hub_height : numeric or array_like, optional Baseline turbine hub height in m, by default 120.
base_rotor_diam : numeric or array_like, optional Baseline turbine rotor diameter in m, by default 136.
reference_wind_speed : numeric, optional Average wind speed corresponding to the baseline turbine design, by default 6.7.
reference_wind_speed_hubheight : numeric, optional Average wind speed corresponding to the baseline hub height value, takes effect only for conventions which differentiate between parameter- specific windspeeds (e.g. WinklerEtAl2026).
reference_wind_speed_specpow : numeric, optional Average wind speed corresponding to the baseline specific power value, takes effect only for conventions which differentiate between parameter- specific windspeeds (e.g. WinklerEtAl2026).
min_tip_height : numeric, optional. Minimum distance in m between the lower tip of the blades and the ground, by default 20.
min_specific_power : numeric, optional Minimum specific power allowed in kw/m2, by default 180.
max_hub_height : numeric, optional Maximum allowed hub height, any higher optimal hub height will be reduced to this value, by default 200.
tech_year : int, optional The year defining the baseline turbine design that shall be used.
baseline_turbine_fp : str, optional A json or csv file that contains baseline turbine parameters. Will replace the default data.
convention : str, optional Author and year of the publication that contains the exact scaling approach of hub height and specific power over wind speed. Available conventions (depending on the technology) might be: - RybergEtAl2019 : Approach from [1] - WinklerEtAl2026 : unpublished, coming soon
Returns:
-
dict or pandas DataFrame–Returns a the suggested values of hub height in m, specific power in W/m2, and capacity in kW as dictionary when numeric values are input or as a pandas DataFrame when array-like objects are input.
Notes
The default baseline onshore turbine has 4200 kW capacity, 120m hub height, and 136m rotor diameter [1]
References
[1] David S. Ryberg, Dilara C. Caglayan, Sabrina Schmitt, Jochen Linssen, Detlef Stolten, Martin Robinius - The Future of European Onshore Wind Energy Potential: Detailed Distributionand Simulation of Advanced Turbine Designs, Energy, 2019, available at https://www.sciencedirect.com/science/article/abs/pii/S0360544219311818
Source code in reskit/wind/core/design_turbine.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | |