You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature: LR-TDDFT support reading fxc from file or calculating fxc by a specified charge file (deepmodeling#5393)
* read fxc or charge for fxc from file
* move xc-dependent functions to a new file
* minor fix
* rename files
* rename init_fxc as init_xc_kernel
* update grad and lapl
* delete useless matrix transformer
* update comments
* rename: lr_init_xc_kernel
* add const before std::set
* rename variables in PotHxcLR
* rename gdr as gradrho
* rename spinsize as n_component
* use something else to replace the for-loop
* [pre-commit.ci lite] apply automatic fixes
* flatten the map
* use std::any_of
* rename new/delete_p2 as new/delete_pointer_dim2
* a usage of std::inner_product
* rename 2order_nested_ptr
* add annotation and minor changes
Co-authored-by: kirk0830 <[email protected]>
* redesign KernelXC: constructor sets all the members
fix compile
fix a initialize bug
* rename and update doc
---------
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
Co-authored-by: kirk0830 <[email protected]>
Copy file name to clipboardexpand all lines: docs/advanced/input_files/input-main.md
+10
Original file line number
Diff line number
Diff line change
@@ -423,6 +423,7 @@
423
423
-[pexsi\_zero\_thr](#pexsi_zero_thr)
424
424
-[Linear Response TDDFT](#linear-response-tddft)
425
425
-[xc\_kernel](#xc_kernel)
426
+
-[lr\_init\_xc\_kernel](#lr_init_xc_kernel)
426
427
-[lr\_solver](#lr_solver)
427
428
-[lr\_thr](#lr_thr)
428
429
-[nocc](#nocc)
@@ -3943,6 +3944,15 @@ These parameters are used to solve the excited states using. e.g. LR-TDDFT.
3943
3944
Currently supported: `RPA`, `LDA`, `PBE`, `HSE`, `HF`.
3944
3945
-**Default**: LDA
3945
3946
3947
+
### lr_init_xc_kernel
3948
+
3949
+
-**Type**: String
3950
+
-**Description**: The method to initalize the xc kernel.
3951
+
- "default": Calculate xc kerenel ($f_\text{xc}$) from the ground-state charge density.
3952
+
- "file": Read the xc kernel $f_\text{xc}$ on grid from the provided files. The following words should be the paths of ".cube" files, where the first 1 (*[nspin](#nspin)==1*) or 3 (*[nspin](#nspin)==2*, namely spin-aa, spin-ab and spin-bb) will be read in. The parameter [xc_kernel](#xc_kernel) will be invalid. Now only LDA-type kernel is supproted as the potential will be calculated by directly multiplying the transition density.
3953
+
- "from_charge_file": Calculate fxc from the charge density read from the provided files. The following words should be the paths of ".cube" files, where the first [nspin]($nspin) files will be read in.
0 commit comments