GASP aero table conversion#829
Merged
jkirk5 merged 24 commits intoOpenMDAO:mainfrom Aug 7, 2025
Merged
Conversation
jkirk5
approved these changes
Aug 7, 2025
Contributor
jkirk5
left a comment
There was a problem hiding this comment.
Since the split table is the "true" GASP format I suggest flipping GASP and GASP_ALT table formats
Kenneth-T-Moore
approved these changes
Aug 7, 2025
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.
Summary
The current conversion of GASP aero table does not convert real GASP aero tables. I believe the current conversion works on GASP outputs. The real GASP aero tables come from running high fidelity CFD tools and they have a different format.
This PR allows users to convert real GASP aero tables (the CL and CD tables). The file format is flagged as
GASP. The existing aero table format is not the actual GASP aero table format. User still can convert them but it is flagged asGASP_ALTnow.In this case, we assume that
CL = f(Mach, Altitude, Alpha)andCD = f(Mach, Altitude, CL). There is a possibility thatAltitudeis replaced byReynoldsbut we have not implemented this option.In this case, we assume that there are only two tables: CL table and CD table. There is a possibility that a third CD0 table is provided and CD table is actually CDi table. but we have not implemented this option.
Test is done for BWB cruise using table based aero table. There is no low speed aero table test because we don't have aero tables for flaps and ground effect. GASP never has those tables.
Document is updated in "Command Line Tools" page. Read the doc page to see how to use it.
Related Issues
Backwards incompatibilities
None
New Dependencies
None