9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-12-27 13:53:29 +01:00
qp2/src
eginer 22241d5b33
Some checks failed
continuous-integration/drone/push Build is failing
Merge branch 'dev-stable' of https://github.com/QuantumPackage/qp2 into dev-stable
2024-05-07 21:07:33 +02:00
..
ao_basis working on aos debug 2024-05-07 01:56:14 +02:00
ao_one_e_ints Force MOs to be on axes. Nice for atoms 2024-04-05 17:51:48 +02:00
ao_two_e_ints Fixed nested parallelism in cholesky 2024-03-20 09:20:21 +01:00
aux_quantities
basis
becke_numerical_grid TC SPRING CLEANING: BEGINNING 2024-05-01 20:25:01 +02:00
bitmask
cas_based_on_top
casscf_cipsi
ccsd Avoid divergence in (T) 2024-04-17 18:06:53 +02:00
cipsi Updated documentation 2024-03-20 16:06:44 +01:00
cipsi_utils Add nthreads_pt2 to (T) 2024-04-03 16:59:15 +02:00
cis Fixing tests 2023-10-17 23:35:14 +02:00
cisd Fixing tests 2023-10-18 00:13:10 +02:00
csf
dav_general_mat added non-sym diag for tc-rpa 2023-12-22 20:15:58 +01:00
davidson bugfix davidson recontraction + update 2024-03-27 16:56:05 +01:00
davidson_dressed
davidson_keywords
davidson_undressed
density_for_dft
determinants does not compile but working on it 2024-05-06 18:30:05 +02:00
dft_keywords
dft_one_e
dft_utils_func
dft_utils_in_r new keywords for Jastrow 2024-01-15 12:02:38 +01:00
dressing Fixed tooth_width=0.0 2022-03-25 09:30:43 +01:00
dummy
electrons
ezfio_files Add nthreads_pt2 to (T) 2024-04-03 16:59:15 +02:00
fci
functionals added the possibility to have a mu(r) in the functionals 2021-10-07 17:37:24 +02:00
generators_cas Fixed small bugs 2019-06-27 23:46:30 +02:00
generators_full
generators_full_tc Add NEED in generators_full_tc 2024-03-12 17:32:38 +01:00
hamiltonian
hartree_fock
iterations fixed n_states > 1 for TC 2024-03-12 15:30:52 +01:00
json Added JSON in FCI 2023-04-24 00:50:07 +02:00
kohn_sham
kohn_sham_rs
mo_basis Fix underflow in EZFIO 2024-04-05 14:25:32 +02:00
mo_guess removed bug in subroutine of dav_general_mat 2022-01-20 20:10:50 +01:00
mo_one_e_ints added swaping between Left/Right MOs when large angles 2024-02-26 15:33:36 +01:00
mo_optimization Merge branch 'dev-stable' of github.com:AbdAmmar/qp2 into AbdAmmar-dev-stable 2024-05-06 17:32:37 +02:00
mo_two_e_ints
mol_properties saving lcpq-ampere 2024-04-07 00:43:44 +02:00
mp2 Added MP2 program 2024-04-09 12:41:53 +02:00
mpi
mu_of_r
nuclei
perturbation
pseudo
psiref_cas
psiref_utils
scf_utils fixed a bug in src/scf_utils/roothaan_hall_scf.irp.f 2024-05-03 11:34:30 +02:00
selectors_cassd
selectors_full
selectors_utils Initial commit 2019-01-25 11:39:31 +01:00
single_ref_method
tools saving olympe2 modif 2024-04-07 00:29:40 +02:00
trexio Add metadata to TREXIO 2024-04-05 14:25:45 +02:00
two_body_rdm
two_rdm_routines
utils Merge branch 'dev-stable' of github.com:AbdAmmar/qp2 into AbdAmmar-dev-stable 2024-05-06 17:32:37 +02:00
utils_cc
utils_periodic
utils_trust_region
zmq
.gitignore Commented out select_singles in TC 2024-03-12 17:38:30 +01:00
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 ...