-
Notifications
You must be signed in to change notification settings - Fork 1
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 integrator in the paired explicit Runge Kutta scheme: Perk p3 single ext #35
Conversation
…i.jl into PERK_p3_single_ext
Review checklistThis checklist is meant to assist creators of PRs (to let them know what reviewers will typically look for) and reviewers (to guide them in a structured review process). Items do not need to be checked explicitly for a PR to be eligible for merging. Purpose and scope
Code quality
Documentation
Testing
Performance
Verification
Created with ❤️ by the Trixi.jl community. |
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.
Great work! I added mostly descriptive comments.
src/time_integration/paired_explicit_runge_kutta/methods_PERK3.jl
Outdated
Show resolved
Hide resolved
src/time_integration/paired_explicit_runge_kutta/methods_PERK3.jl
Outdated
Show resolved
Hide resolved
src/time_integration/paired_explicit_runge_kutta/methods_PERK3.jl
Outdated
Show resolved
Hide resolved
src/time_integration/paired_explicit_runge_kutta/methods_PERK3.jl
Outdated
Show resolved
Hide resolved
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
Co-authored-by: Daniel Doehring <[email protected]>
I'm taking "Make fixed time step and SaveSolutionCallback as per #1958" off the TODO list since: The reason being, this alteration is directly tied to that pull request. In particular, many abstract objects are defined in However, if you'd like me to do it anyway, I can assume that it will be merged and make changes to |
I'm sorry, but I'm unsure if I understand what you say here. Are you suggesting I wait until #1967 is done then come back to this issue later? |
Oh no sorry, I clicked the wrong tab in my browser. |
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.
Okay, final request for changes (I hope)! If you have addressed them we can close this here and you can open up the proper PR to the main repository :)
In order to make save_solution work like the second-order integrator, some functions in methods_PERK2.jl needed to be modified. I'll do this in the draft PR I will open in the main branch. Thank you for the feedback! Good luck with JuliaCon :D @DanielDoehring |
Here is the minimal implementation and some tests added in regard to PERK3
TODO: