-
Notifications
You must be signed in to change notification settings - Fork 67
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
Some Birkhoff constraints are now treated as linear. #1043
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
The state segment end values are no longer a variable in the birkhoff transcription. Birkhoff linear constraints are now improving sparsity on a lot of problems. Fixed an issue with abs/promoted path names for timeseries plotting.
…ile, simulation and solution cases do not match.
…but needs derivatives and polynomials to work also
… derivative matrices when n is not high enough.
… have no higher order derivatives
…rmat to coo so that data is a contiguous 1D array.
kaushikponnapalli
approved these changes
Mar 11, 2024
@@ -33,7 +33,7 @@ class BirkhoffCollocationComp(om.ExplicitComponent): | |||
|
|||
def __init__(self, **kwargs): | |||
super().__init__(**kwargs) | |||
self._no_check_partials = not dymos_options['include_check_partials'] | |||
# self._no_check_partials = not dymos_options['include_check_partials'] |
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.
Should this change be included?
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 dense block in the Birkhoff transcription's sparsity pattern is due to a matrix used to compute the state defects as a function of the state rates. This matrix is constant and, as long as the states are a design variable, this constraint is linear.
Making this constraint linear significantly improves the sparsity coloring for the Phase. The Birkhoff transcription maintains the sparsity, and good conditioning, even when the number of nodes is extremely high.
There were several changes to tests since Birkhoff doesn't have a notion of segments anymore.
The timeseries output come was providing noisy derivatives with higher orders (really small but nonzero noise).
Now it behaves as a passthru if no interpolation is being performed.
Related Issues
Backwards incompatibilities
None
New Dependencies
None