Velocity profiles in Floris #626
-
Hi, Minimal working example:
Setup_file:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @fwasilczuk My apologies, I must have missed this message entirely. I just ran your script, and I indeed I see that the rotor average velocity, power, and Ct are different in expected ways. Since the 1-point case doesn't resolve the shear layer, the effective wind speed should be the same value as entered in the input file, 10 m/s. The 49-point case more closely captures the shear layer and it is skewed lower close to the ground, so the average velocity is slightly less than the input. This is reflected in the power and thrust, as well.
I also see that the two series on your plot are exactly the same. You're plotting a "cross plane" which is a cross section of the wake, so it's in the y-z plane with three points in the y-direction and 41 points in the z-direction. The points in z are distributed between the bounds (0, 400). "x2" in that case is z or vertical, so the plot is the axial component of velocity as a function of height above ground. Note that your plotting function is using the same number of points in the z-direction for both cases: cross_plane = fi.calculate_cross_plane(y_resolution=3, z_resolution=41, z_bounds = (0, 400), downstream_dist=400) I think you're expecting to see the difference in Ct above reflected in the calculated wake in the figure. This isn't happening because the All this to say that if you want to do this comparison, it's probably easiest to modify the solver directly and export the data to a Numpy file to use in your plot later. Alternatively, you could connect the previously saved Floris settings through to the Let me know if you have any more questions around this. |
Beta Was this translation helpful? Give feedback.
-
Hi @rafmudaf, |
Beta Was this translation helpful? Give feedback.
Hi @fwasilczuk My apologies, I must have missed this message entirely. I just ran your script, and I indeed I see that the rotor average velocity, power, and Ct are different in expected ways. Since the 1-point case doesn't resolve the shear layer, the effective wind speed should be the same value as entered in the input file, 10 m/s. The 49-point case more closely captures the shear layer and it is skewed lower close to the ground, so the average velocity is slightly less than the input. This is reflected in the power and thrust, as well.