-
Notifications
You must be signed in to change notification settings - Fork 34
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
Datatype DAEMesh
for DAEs
#384
Merged
+471
−303
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
901e3e4
Added DAE mesh
lisawim 18806f3
Updated all DAE problems and the SDC-DAE sweeper
lisawim 2ca0d5c
Updated playgrounds with new DAE datatype
lisawim 64dbb94
Adapted tests
lisawim c7f4cfd
Minor changes
lisawim eaf4448
Black.. :o
lisawim 20b8f40
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim b001b7c
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim 0fd9525
Added DAEMesh only to semi-explicit DAEs + update for FI-SDC and Prob…
lisawim 49de7ef
Black :D
lisawim bbb605a
Removed unnecessary approx_solution hook + replaced by LogSolution hook
lisawim 9594e1d
Update WSCC9 problem class
lisawim 68cc407
Removed unnecessary comments
lisawim 6315781
Removed test_misc.py
lisawim 88e8175
Removed registering of newton_tol from child classes
lisawim af1848e
Update test_problems.py
lisawim 87d6d56
Rename error hook class for logging global error in differential vari…
lisawim ad0ca26
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim bda5014
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim c68305b
Added MultiComponentMesh - @brownbaerchen + @tlunet + @pancetta Thank…
lisawim 1555ee9
Updated stuff with new version of DAE data type
lisawim 561061e
(Hopefully) faster test for WSCC9
lisawim 4b3c09c
Test for DAEMesh
lisawim da5e663
Renaming
lisawim a45900d
..for DAEMesh.py
lisawim 82b692d
Bug fix
lisawim be4f248
Another bug fix..
lisawim 04fdedc
Preparation for PDAE stuff (?)
lisawim 58101ea
Changes + adapted first test for PDAE stuff
lisawim 522d80c
Commented out test_WSCC9_SDC_detection() - too long runtime
lisawim 3af100f
Minor changes for test_DAEMesh.py
lisawim bdc548c
Extended test for DAEMesh - credits for @brownbaerchen
lisawim 9540354
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim 40bf6c6
Test for HookClass_DAE.py
lisawim 70ef02e
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim 75d1d8b
Update for DAEMesh + tests
lisawim 27ea264
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim d44e2a2
:tada: - speed up test a bit (at least locally..)
lisawim e24ff2b
Forgot to enable other tests again
lisawim 486cfbb
Removed if-else-statements for mesh type
lisawim c359d22
Merge remote-tracking branch 'upstream/master' into dae_meshtype
lisawim 5921aff
View for unknowns in implSysFlatten
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
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.
you can just give the shape as an argument to the function and call the function multiple times with the decorator
scipy.mark.parametrize(shape, [(6,), (4, 6)])
. You can just assign random values.