9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2025-01-18 07:31:37 +01:00
..
2021-01-25 22:47:43 +01:00
2021-04-27 00:37:09 +02:00
2020-11-11 19:13:04 +01:00
2020-11-11 19:13:04 +01:00
2021-04-19 23:57:28 +02:00
2019-01-25 11:39:31 +01:00
2019-01-25 11:39:31 +01:00
2021-04-17 02:03:31 +02:00
2020-03-30 19:30:29 +02:00
2020-12-23 02:46:27 +01:00
2020-04-07 12:19:17 +02:00
2019-01-25 11:39:31 +01:00
2021-04-27 00:35:18 +02:00
2019-06-27 23:46:30 +02:00
2019-01-25 11:39:31 +01:00
2020-12-08 23:18:47 +01:00
2021-02-17 15:39:57 +01:00
2020-05-12 18:48:51 +02:00
2020-05-12 18:48:51 +02:00
2020-11-11 15:51:19 +01:00
2020-11-11 10:26:36 +01:00
2020-11-11 16:54:41 +01:00
2019-01-25 11:39:31 +01:00
2019-01-25 11:39:31 +01:00
2020-05-25 19:22:10 +02:00
2019-01-25 11:39:31 +01:00
2019-01-25 11:39:31 +01:00
2019-01-25 11:39:31 +01:00
2021-03-22 09:25:36 +01:00
2019-01-29 17:09:08 +01:00
2019-07-02 23:30:36 +02:00
2019-01-25 11:39:31 +01:00
2019-01-25 11:39:31 +01:00
2021-03-31 01:47:38 +02:00
2021-04-17 02:18:57 +02:00
2020-04-21 15:08:10 +02:00
2021-04-17 02:03:31 +02:00
2021-03-31 13:36:42 +02:00

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