-
Notifications
You must be signed in to change notification settings - Fork 134
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
Feature: Ground state projection tool for RT-TDDFT #5477
base: develop
Are you sure you want to change the base?
Conversation
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 do we need this file, and the file is huge.
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.
This image is used to display the results of the example. I can convert it to JPEG format, or maybe I should just delete it?
tools/rt-tddft-tools/examples/ground-state-projection-Si/On_0.dat
Outdated
Show resolved
Hide resolved
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.
the file is large, too
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.
This one will keep only 10 bands and 100 steps of data.
tools/rt-tddft-tools/examples/ground-state-projection-Si/Si_ONCV_PBE-1.0.upf
Outdated
Show resolved
Hide resolved
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.
file too large
symbols = atoms0.get_chemical_symbols() | ||
element_counts = Counter(symbols) | ||
unique_elements = set(symbols) | ||
assert orb_file_num == len(unique_elements), f"轨道数目{orb_file_num}与元素数目{len(unique_elements)}不一致!" |
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.
do not use Chinese
…ed_band_for_ik1.png
…a_8au_100Ry_2s2p1d.orb
…ed_band_for_ik1.jpeg
Background
For Rt-TDDFT calculations, the ground-state projection is an important feature. By projecting the excited-state wavefunction at time t onto the reference state at time 0, real-time excitation infos can be obtained. Below, we use N2 as an example to demonstrate this feature.
By applying a Gaussian pulse around 2 fs, the electrons in N2 are excited and begin to oscillate. This oscillation can be observed by monitoring the electric dipole.
Meanwhile, the number of electrons in the ground state begins to decrease. By summing the number of ground-state electron
By analyzing the real-time projection matrix, we can clearly observe three main excitations:
HOMO-1 -> LUMO+1
HOMO-2 -> LUMO
HOMO -> LUMO+2
These three excitations can be clearly seen in the absorption spectrum obtained via Fourier transformation.
What's changed?
Linked Issue
#4925