How to set up the flow calculation area? #716
-
"WARNING The calculated flow field contains points outside of the the user-defined heterogeneous inflow bounds. For these points, the interpolated value has been filled with the freestream wind speed. If this is not the desired behavior, the user will need to expand the heterogeneous inflow bounds to fully cover the calculated flow field area." When I use the heterogeneous inflow config that set by myself, there is a warning coming out. So how can I set the calculated area to fit it? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Hi @zevenlordsa please share the |
Beta Was this translation helpful? Give feedback.
-
@zevenlordsa Thanks for reaching out. The warning that you received is meant to alert the user in case there are points outside of their defined heterogenous inputs. In this case, this is occurring because of the default bounds that are used in FLORIS'
Using these bounds and running your code with a smaller set of heterogenous data points (that still include the min/max x and y coordinates but use a subset to allow for faster calculation), I am able to get the figure below without the warning. I've included my down-selected set of heterogenous points for reference. |
Beta Was this translation helpful? Give feedback.
@zevenlordsa Thanks for reaching out. The warning that you received is meant to alert the user in case there are points outside of their defined heterogenous inputs. In this case, this is occurring because of the default bounds that are used in FLORIS'
calculate_horizontal_plane
are beyond the bounds that you have defined in your.csv
file. If this behavior is acceptable, you don't need to change annything and keep the code as is. If not, a simple fix would be to supply bounds to thecalculate_horizontal_plane
that are within your defined area usingx_bounds
andy_bounds
, such as below: