Replies: 1 comment 2 replies
-
Hi @ZaneFrey, The As for doing something similar in the current FLORIS, you could access the A small script to get you start is below. fi = FlorisInterface("inputs/gch.yaml")
fi.calculate_wake()
print(fi.floris.grid.x_sorted)
print(fi.floris.grid.y_sorted)
print(fi.floris.grid.z_sorted)
print(fi.floris.flow_field.u)
print(fi.floris.flow_field.v)
print(fi.floris.flow_field.w) Please let me know if you get stuck. Also, once you integrate this to a netCDF format, please share! I'm interested in this and we could incorporate that into the |
Beta Was this translation helpful? Give feedback.
-
Hi all,
Is there a simple way to extract the entire flow field from a simulation? I am picking up code from a previous user who ran FLORIS in an older version (v3.2 I believe?), and it seems that the simple function of
get_flow_data()
from FlorisInterface no longer exists in that form? This was called aftercalculate_wake()
. If there is a new function that does this, is it not in the FlorisInterface framework? My goal is to extract the entire flow field with coordinates, speeds, etc. to ultimately be converted to a netCDF file for later analysis and to be able to run this code in the latest version (v3.5).I'm fairly new to the FLORIS framework, so I apologize if this seems like a super basic question! I just haven't been able to find a clear answer in the documentation that works in v3.5. Any help would be greatly appreciated. Thank you!
Z
Beta Was this translation helpful? Give feedback.
All reactions