Merged
Conversation
Closed
37277f7 to
04be83f
Compare
g-bauer
requested changes
Dec 2, 2022
Contributor
There was a problem hiding this comment.
Two overarching comments:
- the damping coefficient is \nu in the documentation (theory section) and \beta in the code and in the interfaces which can be confusing when going through the theory section and then work with the code - should we change it to be \nu in the interfaces/code as well (breaking change)?
- nitpick:
drvs\mathrm{d}rfor integrals is different in each document. We should decide which variant to use and use it everywhere.
Awesome PR!
Contributor
Author
|
You are right! The notation in the theory guide should follow the code as close as possible. That is the wohle point of it. So beta is already used of course. alpha is also commonly used when discussing line search, but alpha is used as a segment index. I went with the very explicit |
g-bauer
approved these changes
Dec 4, 2022
This file contains hidden or 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
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.
This PR implements a quickly converging Newton DFT solver that uses a matrix-free linear solver (GMRES) to calculate the linear subsystem. The action fo the Jacobian on the Newton step is calculated efficiently using fast Fourier transforms.
In addition, a solver log is added to every
DFTProfilethat keeps track of the residual and the execution time of the solver. This allows a detailed analysis of the choice of solver and solver parameters for any DFT calculation.closing #74