Yes sir, I want to convert the 10MW blade and aerodyn files to aerodyn v13 so that I can run an equivalent model in the FAST v7 Seismic Module.
Dear @Kashyap.Subham,
To convert the blade data from AeroDyn v15 to v13, just keep in mind a few things:
- In AeroDyn v15, you must have aerodynamic nodes at the root and tip of the blade and any number of nodes whereever you want them at local radii in between (
BlSpn
). - In AeroDyn v13, the blade is divided into a number (
BldNodes
) of elements (of lengthDRNodes
) and each node must be placed at the center of those elements (RNodes
). So, the sum ofDRNodes
must equal the total blade length (TipRad-HubRad
) andRNodes
can be calculated fromDRNodes
. (For example,RNodes(1) = HubRad+DRNodes(1)/2
,RNodes(2) = RNodes(1) + (DRNodes(1)+DRNodes(2))/2
, etc.) - You can interpolate
AeroTwist
andChord
fromBlTwist
andBlChord
based on the locations ofRNodes
in AeroDyn v13 andBlSpn
in AeroDyn v15. - Interpolating airfoil data is more difficult, so, I’d suggest just picking
NFoil
at eachRNodes
fromBlAFID
based on the the closest value ofBlSpn
.
Best regards,
Dear Sir,
Can aerodyn 15 be compiled with FAST v7 along with the seismic module?
Subham
Dear @Kashyap.Subham,
No. The interface for AeroDyn v15 follows the OpenFAST modularization framework, which is not supported by FAST v7. AeroDyn v15 is interfaceable to FAST v8 and OpenFAST.
Best regards,
I cant fairly understand where/how do I start the process of conversion of the aerodyn files for compatible files. Can you please assist for the same by giving me a starting points and a few checkpoints as well.
Subham
Dear @Kashyap.Subham,
I’m not aware of scripts that will convert AeroDyn v13 files from FAST v7 to the newest AeroDyn v15 version available in OpenFAST. However, there were MATLAB scripts available in the MATLAB Toolbox (GitHub - OpenFAST/matlab-toolbox: Collection of Matlab tools developed for use with OpenFAST) that converted AeroDyn v13 files from FAST v7 to AeroDyn v15 files from OpenFAST, as documented in the FAST v8 ReadMe file: https://openfast.readthedocs.io/en/main/_downloads/5f2ddf006568adc9b88d8118dc3f1732/FAST8_README.pdf. These scripts should help with the process, but you’ll have to update the scripts or change files manually to do the full conversion.
Best regards,