quantum_package/src/AO_Basis/README.rst

265 lines
9.2 KiB
ReStructuredText
Raw Normal View History

2014-04-03 16:23:27 +02:00
==========
AOs Module
==========
2014-04-10 22:07:04 +02:00
This module describes the atomic orbitals basis set.
An atomic orbital :math:`\chi` centered on nucleus A is represented as:
.. math::
\chi_i({\bf r}) = (x-X_A)^a (y-Y_A)^b (z-Z_A)^c \sum_k c_{ki} e^{-\gamma_{ki} |{\bf r} - {\bf R}_A|^2}
The AO coefficients are normalized as:
.. math::
{\tilde c}_{ki} = \frac{c_{ki}}{ \int \left( (x-X_A)^a (y-Y_A)^b (z-Z_A)^c e^{-\gamma_{ki} |{\bf r} - {\bf R}_A|^2} \right)^2} dr
Warning: ``ao_coef`` contains the AO coefficients given in input. These do not
include the normalization constant of the AO. The ``ao_coef_normalized`` includes
this normalization factor.
The AOs are also sorted by increasing exponent to accelerate the calculation of
the two electron integrals.
2014-04-10 22:07:04 +02:00
Assumptions
===========
2015-05-04 19:44:09 +02:00
* The AO coefficients in the EZFIO files are not necessarily normalized and are normalized after reading
2014-04-10 22:07:04 +02:00
2014-04-03 16:23:27 +02:00
Needed Modules
2014-04-04 00:41:43 +02:00
==============
2015-07-28 16:45:45 +02:00
.. Do not edit this section It was auto-generated
2015-06-04 12:15:54 +02:00
.. by the `update_README.py` script.
2014-04-03 16:23:27 +02:00
2015-06-04 12:15:54 +02:00
.. image:: tree_dependency.png
* `Nuclei <http://github.com/LCPQ/quantum_package/tree/master/src/Nuclei>`_
2014-04-03 16:23:27 +02:00
2015-07-28 17:02:00 +02:00
Needed Modules
==============
.. Do not edit this section It was auto-generated
.. by the `update_README.py` script.
.. image:: tree_dependency.png
* `Nuclei <http://github.com/LCPQ/quantum_package/tree/master/src/Nuclei>`_
Documentation
=============
.. Do not edit this section It was auto-generated
.. by the `update_README.py` script.
2019-02-05 21:59:26 +01:00
`ao_cartesian <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L110>`_
2016-09-22 12:15:20 +02:00
If true, use AOs in Cartesian coordinates (6d,10f,...)
2019-02-05 21:59:26 +01:00
`ao_coef <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L40>`_
2016-09-22 12:15:20 +02:00
Primitive coefficients, read from input. Those should not be used directly, as the MOs are expressed on the basis of **normalized** AOs.
2019-02-05 21:59:26 +01:00
`ao_coef_normalization_factor <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L10>`_
2016-09-22 12:15:20 +02:00
Coefficients including the AO normalization
2019-02-05 21:59:26 +01:00
`ao_coef_normalization_libint_factor <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L46>`_
2016-09-22 12:15:20 +02:00
Coefficients including the AO normalization
2014-05-13 13:57:58 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_coef_normalized <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L9>`_
Coefficients including the AO normalization
2014-05-13 13:57:58 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_coef_normalized_ordered <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L79>`_
Sorted primitives to accelerate 4 index MO transformation
2015-04-13 10:44:49 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_coef_normalized_ordered_transp <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L105>`_
Transposed ao_coef_normalized_ordered
2014-05-13 13:57:58 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_expo <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L248>`_
2016-09-22 12:15:20 +02:00
Exponents for each primitive of each AO
2014-05-13 13:57:58 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_expo_ordered <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L80>`_
Sorted primitives to accelerate 4 index MO transformation
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_expo_ordered_transp <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L119>`_
Transposed ao_expo_ordered
2015-04-13 10:44:49 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_l <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L133>`_
2015-04-13 10:44:49 +02:00
ao_l = l value of the AO: a+b+c in x^a y^b z^c
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_l_char <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L135>`_
2015-04-13 10:44:49 +02:00
ao_l = l value of the AO: a+b+c in x^a y^b z^c
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_l_char_space <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L259>`_
2015-04-13 10:44:49 +02:00
Undocumented
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_l_max <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L134>`_
2016-09-22 12:15:20 +02:00
ao_l = l value of the AO: a+b+c in x^a y^b z^c
`ao_md5 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L6>`_
2016-09-22 12:15:20 +02:00
MD5 key, specific of the AO basis
2015-04-13 10:44:49 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_nucl <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L213>`_
2016-09-22 12:15:20 +02:00
Index of the nucleus on which the AO is centered
2014-05-13 13:57:58 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_num <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L144>`_
2016-09-22 12:15:20 +02:00
number of AOs
2014-05-13 13:57:58 +02:00
2015-06-04 12:15:54 +02:00
2015-06-24 11:33:27 +02:00
`ao_overlap <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L1>`_
2015-06-04 12:15:54 +02:00
Overlap between atomic basis functions:
:math:`\int \chi_i(r) \chi_j(r) dr)`
2019-02-05 21:59:26 +01:00
`ao_overlap_abs <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L72>`_
2015-06-04 12:15:54 +02:00
Overlap between absolute value of atomic basis functions:
:math:`\int |\chi_i(r)| |\chi_j(r)| dr)`
2015-06-24 11:33:27 +02:00
`ao_overlap_x <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L2>`_
2015-06-04 12:15:54 +02:00
Overlap between atomic basis functions:
:math:`\int \chi_i(r) \chi_j(r) dr)`
2015-06-24 11:33:27 +02:00
`ao_overlap_y <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L3>`_
2015-06-04 12:15:54 +02:00
Overlap between atomic basis functions:
:math:`\int \chi_i(r) \chi_j(r) dr)`
2015-06-24 11:33:27 +02:00
`ao_overlap_z <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L4>`_
2015-06-04 12:15:54 +02:00
Overlap between atomic basis functions:
:math:`\int \chi_i(r) \chi_j(r) dr)`
2019-02-05 21:59:26 +01:00
`ao_power <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L75>`_
2016-09-22 12:15:20 +02:00
Powers of x, y and z for each AO
2019-02-05 21:59:26 +01:00
`ao_power_index <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L148>`_
2016-09-22 12:15:20 +02:00
Unique index given to a triplet of powers:
.br
1/2 (l-n_x)*(l-n_x+1) + n_z + 1
2014-05-13 13:57:58 +02:00
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_prim_num <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ezfio_interface.irp.f#L178>`_
2014-05-13 13:57:58 +02:00
Number of primitives per atomic orbital
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`ao_prim_num_max <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L1>`_
max number of primitives
2014-05-14 00:07:58 +02:00
2015-06-04 12:15:54 +02:00
2016-09-22 12:15:20 +02:00
`ao_value <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos_value.irp.f#L1>`_
return the value of the ith ao at point r
`cart_to_sphe_0 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L7>`_
Spherical -> Cartesian Transformation matrix for l=0
`cart_to_sphe_1 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L18>`_
Spherical -> Cartesian Transformation matrix for l=1
`cart_to_sphe_2 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L31>`_
Spherical -> Cartesian Transformation matrix for l=2
`cart_to_sphe_3 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L49>`_
Spherical -> Cartesian Transformation matrix for l=3
`cart_to_sphe_4 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L75>`_
Spherical -> Cartesian Transformation matrix for l=4
`cart_to_sphe_5 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L113>`_
Spherical -> Cartesian Transformation matrix for l=5
`cart_to_sphe_6 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L169>`_
Spherical -> Cartesian Transformation matrix for l=6
`cart_to_sphe_7 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L249>`_
Spherical -> Cartesian Transformation matrix for l=7
`cart_to_sphe_8 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L361>`_
Spherical -> Cartesian Transformation matrix for l=8
`cart_to_sphe_9 <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/spherical_to_cartesian.irp.f#L512>`_
Spherical -> Cartesian Transformation matrix for l=9
`give_all_aos_at_r <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos_value.irp.f#L34>`_
gives the values of aos at a given point r
2019-02-05 21:59:26 +01:00
`l_to_charater <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L162>`_
2015-04-13 10:44:49 +02:00
character corresponding to the "L" value of an AO orbital
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`n_aos_max <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L179>`_
2015-04-13 10:44:49 +02:00
Number of AOs per atom
2015-06-04 12:15:54 +02:00
2015-06-24 11:33:27 +02:00
`n_pt_max_i_x <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/dimensions_integrals.irp.f#L2>`_
2015-06-04 12:15:54 +02:00
Undocumented
2015-06-24 11:33:27 +02:00
`n_pt_max_integrals <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/dimensions_integrals.irp.f#L1>`_
2015-06-04 12:15:54 +02:00
Undocumented
2019-02-05 21:59:26 +01:00
`nucl_aos <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L192>`_
2015-04-13 10:44:49 +02:00
List of AOs attached on each atom
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`nucl_list_shell_aos <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L210>`_
2015-04-13 10:44:49 +02:00
Index of the shell type Aos and of the corresponding Aos
Per convention, for P,D,F and G AOs, we take the index
of the AO with the the corresponding power in the "X" axis
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`nucl_n_aos <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L178>`_
2015-04-13 10:44:49 +02:00
Number of AOs per atom
2015-06-04 12:15:54 +02:00
2019-02-05 21:59:26 +01:00
`nucl_num_shell_aos <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/aos.irp.f#L211>`_
2015-04-13 10:44:49 +02:00
Index of the shell type Aos and of the corresponding Aos
Per convention, for P,D,F and G AOs, we take the index
of the AO with the the corresponding power in the "X" axis
2019-02-05 21:59:26 +01:00
`s_half <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L193>`_
S^{1/2}
`s_half_inv <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L134>`_
Matrix X = S^{-1/2} obtained by SVD
`s_inv <http://github.com/LCPQ/quantum_package/tree/master/src/AO_Basis/ao_overlap.irp.f#L126>`_
S^-1