-
Notifications
You must be signed in to change notification settings - Fork 98
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
refactor SDC Newton solver to use burn_t #2600
Conversation
this cleans up some interfaces and reduces memory requirements.
test suite diffs are roundoff: |
this is ready for review. I will follow it up with more cleaning, but I wanted to get these changes in first. |
okay, test suite passes now with no diffs: |
Source/sdc/Castro_sdc_util.H
Outdated
// reevaluating the reactions and { doing the full step update | ||
single_zone_react_source(U_new, R_full, burn_state); | ||
// we solved our system to some tolerance, but let's be sure | ||
// we are conservative by reevaluating the reactions and { |
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.
superfluous {
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.
why?
The idea is that we might have done it one a little bit at a time, and next we want to do it in terms of averages and as a single update
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.
oh... I see what you mean ;)
this cleans up some interfaces and reduces memory requirements.
PR summary
PR motivation
PR checklist
CHANGES
file has been updated, if appropriate