9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-12-22 19:43:32 +01:00
qp2/src
2022-10-05 17:29:26 +02:00
..
ao_basis
ao_many_one_e_ints
ao_one_e_ints
ao_tc_eff_map added many files and did a lot of documentation for bi-ortho scf 2022-10-05 00:05:22 +02:00
ao_two_e_erf_ints Fixed compile error in previous commit 2020-05-12 19:10:12 +02:00
ao_two_e_ints
aux_quantities
basis
basis_correction
becke_numerical_grid
bi_ort_ints added many files and did a lot of documentation for bi-ortho scf 2022-10-05 00:05:22 +02:00
bi_ortho_aos added many files and did a lot of documentation for bi-ortho scf 2022-10-05 00:05:22 +02:00
bi_ortho_mos
bitmask
cas_based_on_top
cipsi
cis forked v 2022-07-05 01:17:43 +02:00
cisd
csf
dav_general_mat
davidson minor modifs to merge 2022-09-30 16:22:18 +02:00
davidson_dressed
davidson_undressed
density_for_dft
determinants minor modifs to merge 2022-09-30 16:22:18 +02:00
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
dft_utils_in_r
dressing
dummy
electrons
ezfio_files
fci Fixing tests 2022-08-29 15:34:48 +02:00
functionals forked v 2022-07-05 01:17:43 +02:00
generators_cas
generators_full
hartree_fock
iterations
kohn_sham Introduced screening.irp.f 2020-05-12 18:48:51 +02:00
kohn_sham_rs
mo_basis
mo_guess
mo_one_e_ints
mo_two_e_erf_ints forked v 2022-07-05 01:17:43 +02:00
mo_two_e_ints
mpi
mu_of_r
non_h_ints_mu
nuclei
perturbation Revert "Replaces psi_det_size by N_det" 2022-05-25 13:35:45 +02:00
pseudo
psiref_cas
psiref_utils
scf_utils merged with Abdallah 2022-09-30 15:27:43 +02:00
selectors_cassd
selectors_full
selectors_utils
single_ref_method
some_mu_of_r added tc_keywords and three_body_ints 2022-10-05 17:29:26 +02:00
tc_bi_ortho added tc_bi_ortho 2022-10-05 17:01:27 +02:00
tc_keywords added tc_keywords and three_body_ints 2022-10-05 17:29:26 +02:00
tc_scf
three_body_ints added tc_keywords and three_body_ints 2022-10-05 17:29:26 +02:00
tools forked v 2022-07-05 01:17:43 +02:00
two_body_rdm
two_rdm_routines
utils
utils_periodic
zmq
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 ...