10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-12-22 20:34:58 +01:00
QuantumPackage/src
2023-06-04 16:45:38 +02:00
..
ao_basis
ao_many_one_e_ints
ao_one_e_ints
ao_tc_eff_map
ao_two_e_erf_ints
ao_two_e_ints Accelerated multiply_poly 2023-06-01 21:42:02 +02:00
aux_quantities added the definition of the input density in the AO basis 2019-04-09 00:10:01 +02:00
basis
basis_correction
becke_numerical_grid added Gill grid 2023-05-15 00:31:28 +02:00
bi_ort_ints 5idx arrays need O(N3) temp arrays 2023-06-04 16:45:38 +02:00
bi_ortho_mos
bitmask moved a subroutine from determinant to bitmask 2021-12-17 18:15:47 +01:00
cas_based_on_top added some stuffs for foboscf 2021-04-08 20:37:17 +02:00
ccsd
cipsi
cipsi_tc_bi_ortho
cis
cisd fix test cisd 2023-03-13 10:25:39 +01:00
csf
dav_general_mat added tc_bi_ortho 2023-02-07 17:07:49 +01:00
davidson
davidson_dressed
davidson_keywords
davidson_undressed
density_for_dft
determinants
dft_keywords added the possibility to have a mu(r) in the functionals 2021-10-07 17:37:24 +02:00
dft_one_e
dft_utils_func minor modifs 2023-02-13 20:12:33 +01:00
dft_utils_in_r
dressing Fixed tooth_width=0.0 2022-03-25 09:30:43 +01:00
dummy
electrons
ezfio_files
fci
fci_tc_bi
functionals
generators_cas
generators_full
hartree_fock 4idx transformation with cholesky 2023-05-04 15:50:40 +02:00
iterations
json
kohn_sham
kohn_sham_rs Fixed need for JSON 2023-04-21 18:08:54 +02:00
mo_basis
mo_guess
mo_localization
mo_one_e_ints
mo_optimization
mo_two_e_erf_ints
mo_two_e_ints
mol_properties clean 2023-03-11 23:40:52 +01:00
mpi
mu_of_r
non_h_ints_mu added plot_mu_of_r.irp.f 2023-05-25 12:57:58 +02:00
non_hermit_dav
nuclei
ortho_three_e_ints
perturbation
pseudo
psiref_cas Initial commit 2019-01-25 11:39:31 +01:00
psiref_utils Initial commit 2019-01-25 11:39:31 +01:00
scf_utils Added JSON in FCI 2023-04-24 00:50:07 +02:00
selectors_cassd
selectors_full Fixed previous commit 2019-07-02 23:30:36 +02:00
selectors_utils
single_ref_method
tc_bi_ortho Improve 5idx 2023-06-02 20:32:31 +02:00
tc_keywords
tc_scf
tools
trexio Fix normalization factor in trexio 2023-05-31 11:01:51 +02:00
two_body_rdm
two_rdm_routines
utils
utils_cc
utils_periodic Slowly merging periodic in dev 2020-03-18 16:35:41 +01:00
utils_trust_region
zmq
.gitignore
README.rst

==========================
The core modules of the QP
==========================

*** How are handled the DFT functionals in QP2 ?
================================================
    The Exchange and Correlation energies/potentials can be accessed by the following providers 
    energy_x
    energy_c
    potential_x_alpha_ao
    potential_c_alpha_ao
    potential_x_beta_ao
    potential_c_beta_ao

    These providers are automatically linked to the providers of the actual exchange/correlation energies of a given functional 
    through the character keywords 
    "exchange_functional"
    "correlation_functional"

    All the providers for the available functionals are in the folder "functionals", with one file "my_functional.irp.f" per functional.  

    Ex : if "exchange_functional" == "sr_pbe", then energy_x will contain the exchange correlation functional defined in "functiona/sr_pbe.irp.f", which corresponds to the short-range PBE functional (at the value mu_erf for the range separation parameter) 


*** How to add a new functional in QP2 
======================================

    Creating a new functional and propagating it through the whole QP2 programs is easy as all dependencies are handled by a script. 

    To do so, let us assume that the name of your functional is "my_func". 
    Then you just have to create the file "my_func.irp.f" in the folder "functional" which shoud contain 

    +) if you're adding an exchange functional, then create the provider "energy_x_my_func" 

    +) if you're adding a correlation functional, create the provider "energy_c_my_func" 
    
    +) if you want to add the echange potentials, create the providers "potential_x_alpha_ao_my_func", "potential_x_beta_ao_my_func"  which are the exchange potentials on the AO basis for the alpha/beta electrons 

    +) if you want to add the correlation potentials, create the providers "potential_c_alpha_ao_my_func", "potential_c_beta_ao_my_func"  which are the correlation potentials on the AO basis for the alpha/beta electrons 
    
    That's all :) 
   
    Then, when running whatever DFT calculation or accessing/using the providers: 
    energy_x
    energy_c
    potential_x_alpha_ao
    potential_c_alpha_ao
    potential_x_beta_ao
    potential_c_beta_ao
 
    if exchange_functional = mu_func, then you will automatically have access to what you need, such as kohn sham orbital optimization and so on ...