-
Notifications
You must be signed in to change notification settings - Fork 466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding nacelle drag to AeroDyn #2358
Merged
Merged
Conversation
This file contains 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
This was referenced Aug 5, 2024
andrew-platt
approved these changes
Aug 8, 2024
ebranlard
reviewed
Aug 13, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great. Would it be possible to add a small section in the documentation of the AeroDyn theory as well?
hkross
reviewed
Aug 13, 2024
hkross
reviewed
Aug 13, 2024
@mayankchetan Looks good! I added a couple of small comments above. |
Thank for for the comments @hkross, I have pushed a few changes. |
16 tasks
Merged
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.
Ready to merge.
Feature or improvement description
This PR adds a simple drag model to account for aerodynamic drag on the nacelle. The implimentation is primarily based on code shared by @bjonkman with the addition of froces and moments in the z-direction. The current implimentation allows the user to define the projected areas of the nacelle in the X, Y, Z diections and assign coefficent of drag (
Cd
) to each of them. The loads are passed to the nacelle mesh and is added to the nacelle buoyancy loads if activated. Outputs added for nacelle drag as well as total loads on the nacelle.This replaces PR #1888.
Related issue, if one exists
#162
Impacted areas of the software
AeroDyn module
Additional supporting information
AeroDyn input file updated to include, nacelle projected area, Cd along projected area, and the aerodynamic center where the nacelle drag force is applied.
Test results, if applicable
Below figure shows the calculated nacelle drag in inertial x-axis (blue -> calcualted, orange -> OpenFAST) when inflow velocity
HWindSpeed = 1 m/s
,AirDens = 1.0
,NacArea = [2, 2, 2]
, andNacCd = [1, 1, 1]
. Yaw angle is varied from[180, -180)
few of the new outputs added
Two new OpenFAST test cases are added in PR (OpenFAST/r-test#131) to the r-test repo,
5MW_Land_DLL_WTurb_wNacDrag
- modified from5MW_Land_DLL_WTurb
to add nacelle dragMHK_RM1_Floating_wNacDrag
- modified fromMHK_RM1_Floating
to add nacelle dragTODO from #1888
attn: @hkross, @gdeskos