GASP BWB Aero Implementation#801
Merged
jkirk5 merged 41 commits intoOpenMDAO:mainfrom Jul 7, 2025
Merged
Conversation
jkirk5
approved these changes
Jul 2, 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
This PR implements GASP aerodynamics subsystems for BWB aircraft. Five new components are added:
BWBBodyLiftCurveSlopeBWBFormFactorAndSIWBBWBAeroSetupBWBLiftCoeffBWBLiftCoeffCleanTwo group components
CruiseAeroandLowSpeedAeroare configured for BWB as an option (default to conventional aircraft).Currently, there are only three unit tests: one for cruise and two for low speed aero. Now, nineteen new unit tests are added for individual components using BWB data.
In GASP, friction due to nacelle is removed from the computation of
SA5(see below). Instead, it is computed separately and is added in the drag computation.alpha_stallandCL_maxare computed based on wing only. We expect that they will be updated in the future.Table based aerodynamics is still available to BWB. A new table based BWB model will be provided in the future.
Comparison of
BWBAeroSetupwith GASPThe differences are due to several reasons:
cf.SA5. Nacelle friction is done in engine computation and is added in drag computation. But in Aviary, nacelle friction is included inSA5and not in drag computation.Comparison of
CruiseAerowith GASPAs we see,
CLmatches closely butCDdoesn't. This is because the differences inBWBAeroSetup(see above).Comparison of
LowSpeedAerowith GASPAs we see,
CLmatches closely butCDdoesn't. This is because the differences inBWBAeroSetup(see above).Related Issues
Backwards incompatibilities
None
New Dependencies
None