OpenFAST / openfast

Main repository for the NREL-supported OpenFAST whole-turbine and FAST.Farm wind farm simulation codes.
http://openfast.readthedocs.io
Apache License 2.0
671 stars 452 forks source link

Modifying the aerodynamic data of the blade sections #1084

Closed JasonWuTkuTw closed 2 years ago

JasonWuTkuTw commented 2 years ago

Hi,

We're trying to modify the aerodynamic coefficients of the blade sections in 5MWBaseline/Airfoil/*.dat files to account for Reynolds number effects in the wind tunnel simulations of our 1/150 geometrically scaled NREL 5 MW turbine model. However, we think simply replacing the new aerodynamic coefficients may not be enough to tell FAST to correctly reflect the overall thrust coefficient. We tried changing the aerodynamic coefficients to zeros but the resulted time-averaged thrust coefficient increased by 100% instead of reducing to zero. We're wondering if it is due to the inclusion of unsteady aerodynamic data so we also tried to turn off this option by setting 'InclUAdata' to False in the blade_shape.dat files. However, this leads to a fatal error in running 'AirfoilInfo' at line #17, where the variable "NumAlf" was not found.

Any suggestions are appreciated.

Thanks,

Jason Wu

jjonkman commented 2 years ago

Hi @JasonWuTkuTw,

Regarding your error, I'm guessing there is something wrong with the formatting of your airfoil data input file, but you'd have to share your file(s) to comment.

Please note that to disable unsteady airfoil aerodynamic entirely, you should set AFAeroMod = 1 in the AeroDyn v15 primary input file.

If the aerodynamic coefficients are zero and unsteady airfoil aerodynamics are disabled, I would expect that you'd have zero aerodynamic rotor thrust (AeroDyn v15 output RtAeroFxh = 0).

Best regards,

JasonWuTkuTw commented 2 years ago

Dear @jjonkman

We really appreciate your help. Changing AFAeroMod = 1 in AeroDyn v15 is exactly what we need.

Here are a few more questions regarding the AeroDyn15 inputs/outputs and wondering if you have any suggesion?

We're trying to look at the angle of attack and axial induction factors for each section of blade 1.

Thanks,

Jason Wu

jjonkman commented 2 years ago

Dear @JasonWuTkuTw,

Regarding your AOA/Alpha and AIF/AxInd results, have you set NBlOuts = 9? Which blade analysis nodes have you selected as output nodes via BlOutNd? (The up-to-nine output nodes are user-selectable via AeroDyn v15 inputs NBlOuts and BlOutNd.) See the AeroDyn v15 documentation for more information: https://openfast.readthedocs.io/en/main/source/user/aerodyn/input.html#outputs.

If you want to output airfoil data at more than the the nine nodes available via NBlOuts and BlOutNd. you can use the nodal outputs option of AeroDyn v15 as documented here: https://openfast.readthedocs.io/en/main/source/user/aerodyn/input.html#nodal-outputs.

Best regards,

JasonWuTkuTw commented 2 years ago

Dear @jjonkman

Modifying NBlOuts = 9 and BlOutNd to the desired node numbering in AeroDyn v15 gives more reasonable results.

Very appreciated.

Jason Wu