Unify RT-TDDFT EXX with the general LCAO H(R) path - #7864
Open
ESROAMER wants to merge 7 commits into
Open
Conversation
Updated the third row's last value in current_tot.txt.ref.
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.
What's changed?
This PR unifies the RT-TDDFT hybrid-functional EXX workflow with the general LCAO H(R) Hamiltonian path.
Previously, RT-TDDFT used a dedicated k-space EXX path (
Add_Hexx_Type::kandadd_Hexx_td), while the ordinary LCAO workflow accumulated EXX in H(R). This resulted in separateHamiltonian assembly and gauge-phase handling for RT-TDDFT.
The new implementation uses the same H(R)-based EXX path for both ordinary LCAO calculations and RT-TDDFT:
OperatorLCAOfolding step constructs H(k) and applies the time-dependent hybrid-gauge phase consistently to all Hamiltonian contributions.add_Hexx_tdinterface are removed.OperatorEXX::contributeHk()is retained only for dedicatedAdd_Hexx_Type::kconsumers such aswrite_vxcand RDMFT.Veffpath is adapted so that Gint contributions are correctly accumulated into complex H(R).The main purpose of this change is to eliminate the divergent RT-TDDFT EXX path and make RT-TDDFT use the same H(R)-based Hamiltonian construction as the general LCAO workflow.