qp2/src
..
ao_basis
ao_one_e_ints added some providers and the first tutorial for plugins 2024-03-22 14:56:39 +01:00
ao_two_e_ints
aux_quantities
basis
becke_numerical_grid
bitmask
cas_based_on_top
casscf_cipsi
ccsd
cipsi
cipsi_utils
cis
cisd
csf
dav_general_mat
davidson
davidson_dressed non_sym dress: comb 2023-03-15 10:23:48 +01:00
davidson_keywords
davidson_undressed
density_for_dft
determinants
dft_keywords
dft_one_e
dft_utils_func
dft_utils_in_r
dressing
dummy
electrons
ezfio_files
fci
functionals
generators_cas Fixed small bugs 2019-06-27 23:46:30 +02:00
generators_full
generators_full_tc
hamiltonian
hartree_fock
iterations
json
kohn_sham
kohn_sham_rs
mo_basis
mo_guess
mo_one_e_ints
mo_optimization
mo_two_e_ints cas_ful -> cas_full 2023-11-11 16:13:23 +01:00
mol_properties
mpi
mu_of_r
nuclei
perturbation
pseudo
psiref_cas
psiref_utils
scf_utils
selectors_cassd
selectors_full
selectors_utils
single_ref_method
tools
trexio
two_body_rdm
two_rdm_routines
utils Changed total memory to resident memory in check 2024-04-02 17:41:19 +02:00
utils_cc
utils_periodic
utils_trust_region
zmq
.gitignore
README.rst

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 ...