Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions windIO/examples/turbine/IEA-15-240-RWT.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ assembly:
rotor_diameter: 241.35064632
rated_power: 15000000.0
lifetime: 25.0
cut_in_wind_speed: 3.0
cut_out_wind_speed: 25.0
components:
blade:
reference_axis:
Expand Down
2 changes: 2 additions & 0 deletions windIO/examples/turbine/IEA-15-240-RWT_VolturnUS-S.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ assembly:
rotor_diameter: 242.23775645
rated_power: 15000000.0
lifetime: 25.0
cut_in_wind_speed: 3.0
cut_out_wind_speed: 25.0
components:
blade:
reference_axis:
Expand Down
2 changes: 2 additions & 0 deletions windIO/examples/turbine/IEA-22-280-RWT.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ assembly:
rotor_diameter: 284.0
rated_power: 22000000.0
lifetime: 25.0
cut_in_wind_speed: 3.0
cut_out_wind_speed: 25.0
components:
blade:
reference_axis:
Expand Down
2 changes: 2 additions & 0 deletions windIO/examples/turbine/IEA-22-280-RWT_Floater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ assembly:
rotor_diameter: 284.0
rated_power: 22000000.0
lifetime: 25.0
cut_in_wind_speed: 3.0
cut_out_wind_speed: 25.0
components:
blade:
reference_axis:
Expand Down
12 changes: 12 additions & 0 deletions windIO/schemas/turbine/turbine_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ properties:
units: yr
minimum: 0
default: 25.0
cut_in_wind_speed:
type: number
description: Cut-in wind speed, i.e. the minimum wind speed at which the turbine starts producing power.
units: m/s
minimum: 0
default: 3.0
cut_out_wind_speed:
type: number
description: Cut-out wind speed, i.e. the maximum wind speed at which the turbine produces power.
units: m/s
minimum: 0
default: 25.0
components:
type: object
description: Nested dictionary structure of components describing the wind turbine assembly
Expand Down