-
Notifications
You must be signed in to change notification settings - Fork 35
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
TIME-X Test Hackathon @ TUD: Test for SwitchEstimator
#404
Merged
Merged
Changes from 32 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
92cf385
Added piecewise linear interpolation to SwitchEstimator
lisawim 4040463
Started with test for SwitchEstimator [WIP]
lisawim 7d6e6f8
Merge remote-tracking branch 'upstream/master' into test_hackathon
lisawim 2a79717
Test to proof sum_restarts when event occuring at boundary
lisawim 4d98155
Started with test to check adapt_interpolation_info [WIP]
lisawim 42aaaf5
Added test for SE.adapt_interpolation_info()
lisawim 0720942
Merge remote-tracking branch 'upstream/master' into test_hackathon
lisawim 7997720
Merge remote-tracking branch 'upstream/master' into test_hackathon
lisawim 2cad220
Update linear interpolation + logging + changing tolerances
lisawim d3c3217
Test for linear interpolation + update of other test
lisawim 19ab5ba
Correction for finite difference + adaption tolerance
lisawim 2268cfa
Added test for DAE case for SE
lisawim 9a6350c
Choice of FD seems to be important for performance of SE
lisawim e1295a3
Removed attributes from dummy probs (since the parent classes have it)
lisawim fb0311e
Merge remote-tracking branch 'upstream/master' into test_hackathon
lisawim 421428e
Test for dummy problems + using functions from battery_model.py
lisawim f4a5294
Moved standard params for test to function
lisawim 019e78b
Updated hardcoded solutions for battery models
lisawim 4bd86c4
Updated hardcoded solutions for DiscontinuousTestODE
lisawim 487573a
Updated docu in SE for FDs
lisawim 28425da
Lagrange Interpolation works better with baclward FD and alpha=0.9
lisawim b5fadcc
Added test for state function + global error
lisawim 658d905
Merge remote-tracking branch 'upstream/master' into test_hackathon
lisawim 563bcfd
Updated LogEvent hooks
lisawim 22f2bcc
Updated hardcoded solutions again
lisawim b07b0cc
Merge remote-tracking branch 'upstream/master' into test_hackathon
lisawim 8ccbebf
Adapted test_problems.py
lisawim 0bfcae7
Minor changes
lisawim 827a8ed
Updated tests
lisawim c3107c5
Speed-up test for buck converter
lisawim 74ee1ff
Black..
lisawim 872e81e
Use msg about convergence info in Newton in SE
lisawim bc751fd
Moved dummy problem to file
lisawim e00236c
Merge remote-tracking branch 'upstream/master' into test_hackathon
lisawim e8bf17e
Speed up loop using mask
lisawim 2affa75
Removed loop
lisawim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 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 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 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 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
how many iterations does this typically have? If it's a lot, you may want to speed this up using masks with sth. like
If the loop is entered only a couple of times, don't bother.