Add blade distributed load output to AeroDyn-InflowWind C bindings#2470
Merged
deslaughter merged 4 commits intoOpenFAST:devfrom Oct 17, 2024
Merged
Add blade distributed load output to AeroDyn-InflowWind C bindings#2470deslaughter merged 4 commits intoOpenFAST:devfrom
deslaughter merged 4 commits intoOpenFAST:devfrom
Conversation
…ut of hub height wind velocity. Rename debugverbose to DebugLevel
andrew-platt
approved these changes
Oct 17, 2024
Collaborator
andrew-platt
left a comment
There was a problem hiding this comment.
Looks good! Thanks for making that change!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is ready to be merged.
Feature or improvement description
This PR adds a flag,
PointLoadOutput, to theADI_C_PreInitsubroutine in the ADI C Bindings libraryAeroDyn_Inflow_C_Binding.f90which allows the user to select between point load or distributed load output at the blade mesh points. Setting this value to0will cause distributed loads to be output and setting it to1will output point loads, which is the typical output from this library.This PR also adds the parameter
HHVel_C, a 3 element float array, toADI_C_GetRotorLoadswhich will contain the hub height wind velocity components (X,Y,Z), ifstoreHHVelwas set to1inADI_C_Init; otherwise, it will contain zeros. Previously, the velocities would be stored, but were not accessible through the API.The python library,
aerodyn_inflow_library.py, was updated to reflect the changes in the API.Impacted areas of the software
AeroDyn_Inflow_C_Binding.f90andaerodyn_inflow_library.pyAdditional supporting information
Test results, if applicable
Test results were unaffected.