Replies: 1 comment 4 replies
-
I'm not sure of the intended result here, but just adding some more info. In the current code for wind speed of 4 m/s, that would be: yaw_opt_full * (6.0 - 4.0) / 2.0 = yaw_opt_full * (2.0 / 2.0) = yaw_opt_full However, in the first proposed change, it would be yaw_opt_full * (4.0 - 3.0) / 3.0 = yaw_opt_full * (1.0 / 3.0) = yaw_opt_full / 3 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is not important but,
https://github.com/NREL/floris/blob/main/examples/12_optimize_yaw.py#L166
The above code should be changed like below for ramp up, I think
or
Beta Was this translation helpful? Give feedback.
All reactions