-
Hello, I have been trying to model and calculate the AEP for two wind farms near each other with a few different layouts, and when I run the model I encounter this warning, "WARNING Some velocities at the rotor are negative". The power output for each wind speed and wind direction is definitely not right but I'm not sure what my problem is. I have successfully been able to calculate for one wind farm on its own using a similar code. My original thought was that because I was modeling two wind farms aligned east to west, but by combining the coordinates into one array with the western-most first and the eastern-most, that maybe the order of the turbines was messing with the model, but then I tried again with two farms aligned north to south and still got the error. Any help on this issue would be much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
This is my code location_params = { def run_simulation(combination, farm_coords_list, turbine_sizes, location_params, model_name):
def main():
|
Beta Was this translation helpful? Give feedback.
-
Hi @nrz22 , this usually happens when turbines are placed close together, so that a turbine may be in the near-wake zone of another turbine. Floris does not model the near wake very well, because turbines are rarely placed in such close proximity. Would you be able to share |
Beta Was this translation helpful? Give feedback.
Hi @nrz22 , this usually happens when turbines are placed close together, so that a turbine may be in the near-wake zone of another turbine. Floris does not model the near wake very well, because turbines are rarely placed in such close proximity. Would you be able to share
fmodel.layout_x
and fmodel.layout_y` for your case? If there is close spacing (say, less than 3 rotor diameters) between any of the turbines, this could be what is causing the negative velocities.