how to start interfacing with two different turbine models? #250
-
Hi everyone, Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello, The turbine's properties are defined in the input You can also change turbine properties programatically, as demonstated in the examples here: https://github.com/NREL/floris/tree/main/examples/change_turbine The latter would be the most useful for your case, as you can define one turbine in the input |
Beta Was this translation helpful? Give feedback.
Hello,
The turbine's properties are defined in the input
.json
file, where you would need to specify the Cp (power
), Ct (thrust
), and wind speed (wind_speed
) tables. You can see ourexample_input.json
for reference here: https://github.com/NREL/floris/blob/main/examples/example_input.jsonYou can also change turbine properties programatically, as demonstated in the examples here: https://github.com/NREL/floris/tree/main/examples/change_turbine
The latter would be the most useful for your case, as you can define one turbine in the input
.json
and then update specific turbines to reflect the other turbine type. Using thechange_turbine
function as shown in the examples, you can also update …