.. : PyBEST: Pythonic Black-box Electronic Structure Tool : Copyright (C) 2016-- The PyBEST Development Team : : This file is part of PyBEST. : : PyBEST is free software; you can redistribute it and/or : modify it under the terms of the GNU General Public License : as published by the Free Software Foundation; either version 3 : of the License, or (at your option) any later version. : : PyBEST is distributed in the hope that it will be useful, : but WITHOUT ANY WARRANTY; without even the implied warranty of : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the : GNU General Public License for more details. : : You should have received a copy of the GNU General Public License : along with this program; if not, see : : -- Orbital entanglement analysis ############################# .. _orbital_entanglement: Orbital entanglement and orbital correlation ============================================ In quantum chemistry, the interaction between orbitals is commonly used to understand chemical processes. For example, molecular orbital diagrams, frontier orbital theory, and ligand field theory all use orbitals to understand and justify chemical phenomena. The interaction between orbitals can be quantified using concepts of quantum information theory. Specifically, the interaction between one orbital and all the other orbitals can be measured by the single-orbital entropy :math:`s(1)_i` (or one-orbital entropy). It is calculated from the eigenvalues :math:`\omega_{\alpha,i}` of the one-orbital reduced density matrix (1-RDM) .. math:: s(1)_i = -\sum_{\alpha=1}^4 \omega_{\alpha,i}\ln \omega_{\alpha,i}. The one-orbital RDM is obtained from the N-particle RDM by tracing out all other orbital degrees of freedom except those of orbital *i*. This leads to an RDM whose dimension is equal to the dimension of the one-orbital Fock space. For spatial orbitals, the one-orbital Fock space has a dimension of 4 (one for unoccupied, one for doubly occupied and two for singly occupied). Similarly, the two-orbital entropy :math:`s(2)_{i,j}` quantifies the interaction of an orbital pair :math:`i,j` and all other orbitals. It is calculated from the eigenvalues of the two-orbital RDM :math:`\omega_{\alpha, i, j}` (with 16 possible states for spatial orbitals) .. math:: s(2)_{i,j} =-\sum_{\alpha=1}^{16} \omega_{\alpha, i, j} \ln \omega_{\alpha, i, j}. The total amount of correlation between any pair of orbitals :math:`(i,j)` can be evaluated from the orbital-pair mutual information. The orbital-pair mutual information is calculated using the single- and two-orbital entropy and thus requires the one- and two-orbital RDMs, .. math:: I_{i|j} = s(2)_{i,j} - s(1)_{i} - s(1)_{j}, where we impose that :math:`i\neq j`, that is, we exclude self-interactions. Note that a correlated wave function is required to have non-zero orbital entanglement and correlation. In the case of an uncorrelated wave function (for instance, a single Slater determinant) the (orbital) entanglement entropy is zero. For more information on orbital entanglement and correlation, see refs. [boguslawski2015a]_ and [boguslawski2016b]_. Supported features ================== Unless mentioned otherwise, the orbital entanglement module only supports restricted orbitals, ``DenseLinalgFactory`` and ``CholeskyLinalgFactory``. The current version of PyBEST offers 1. :ref:`Calculation of single-orbital entropy and orbital-pair mutual information for a seniority-zero wave function ` Supported wave function models are 1. :ref:`pCCD ` (seniority-zero wave function) .. _orbital_entanglementseniorityzero: Seniority zero wave functions ============================= If you use this module, please cite [boguslawski2015a]_, [boguslawski2016b]_, and [boguslawski2017b]_. .. _qg_oe_pccd: Quick Guide ----------- To evaluate the single-orbital entropy and orbital-pair mutual information for a given (**seniority-zero**) wave function model, the corresponding one and two-particle RDMs need to be calculated first. Then the one- and two-particle RDMs are used to evaluate the one- and two-orbital RDMs whose eigenvalues are needed to calculate the single-orbital and two-orbital entropy. In PyBEST, the corresponding RDMs (if available) are by default determined in each module and hence no additional steps are necessary. pCCD ^^^^ The single-orbital entropy and the orbital-pair mutual information for a pCCD wave function can only be determined if the :py:class:`~pybest.geminal.rpccd.ROOpCCD` module is used as the (response) 1- and 2-RDM are only determined if the orbital-optimization is switched on. For the :py:class:`~pybest.geminal.rpccd.RpCCD` module, the :math:`\Lambda`-equations are not solved and hence no response density matrices can be calculated (see also :ref:`user_pccd`) We thus assume that you have performed a :py:class:`~pybest.geminal.rpccd.ROOpCCD` calculation, whose results are stored in the :py:class:`~pybest.io.iodata.IOData` container ``pccd_``. Furthermore, we will assume the following names for all PyBEST objects :lf: A :py:class:`~pybest.linalg.base.LinalgFactory` instance (see :ref:`user_linalg_intro`). The code snippet below shows how the single-orbital entropy and the orbital-pair mutual information for a pCCD wave function are calculated, .. literalinclude:: ../src/pybest/data/examples/orbital_entanglement/water.py :lines: 54-58 The above function call will generate ``.dat`` files, which contain all unique values for the single-orbital entropy and the orbital-pair mutual information. The former is stored in ``pybest-results/s1-pccd.dat``, while the latter is dumped to the ``pybest-results/i12-pccd.dat`` file. PyBEST supplies a script that will allow you to generate (separate) diagrams for both the single-orbital entropy and the orbital-pair mutual information (see :ref:`correlation_diagrams` for more details). .. _correlation_diagrams: Correlation diagrams ==================== To generate the single-orbital entropy diagram and the orbital-pair mutual information plot, execute the ``pybest-entanglement.py`` script shipped together with PyBEST, .. code-block:: bash pybest-entanglement.py threshold [--iname pybest-results/i12-pccd.dat --sname pybest-results/s1-pccd.dat] where **threshold** determines the lower cutoff value of the mutual information and must be given in orders of magnitude (1, 0.1, 0.01, 0.001, etc.). Orbital correlations that are smaller than **cutoff** will not be displayed in the mutual information diagram. This script offers additional optional arguments. To obtain more information on the ``pybest-entanglement.py`` script, you can display the help messages, .. code-block:: bash pybest-entanglement.py -h By default, the single-orbital entropy is written to ``pybest-results/s1.pdf``, while the orbital-pair mutual information plot is saved under ``pybest-results/i12.pdf``. Example Python scripts ====================== Orbital entanglement analysis of an pCCD wave function ------------------------------------------------------- This is a basic example of how to perform an orbital entanglement analysis in PyBEST. This script performs an orbital-optimized pCCD calculation, followed by an orbital entanglement analysis of the pCCD wave function for the water molecule using the cc-pVDZ basis set. .. literalinclude:: ../src/pybest/data/examples/orbital_entanglement/water.py :caption: data/examples/orbital_entanglement/water.py :lines: 3-