-
How to provide a t-range parameter in visualization.plot_rotor_values, such as wind turbine numbers' F01 ',' F02 ',' F03 ',' F04 ',' F05 '. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @zkdtxby , the error you are receiving is because you need to add a comma after the list, i.e., However, the |
Beta Was this translation helpful? Give feedback.
Hi @zkdtxby , the error you are receiving is because you need to add a comma after the list, i.e.,
t_range=[' ....'],
(at the moment, you don't have that comma, so python is not able to understand the difference between the
t_range
argument and thereturn_fig_objects
argument).However, the
wakeviz.plot_rotor_values
is not expecting a list of strings to be passed in. To achieve the behavior, you can specifyt_range
as a list of integer turbine indices, for example,t_range = [0, 1, 2, 3, 4],
.