.. : 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 : : -- .. _user_estruct_rci: The Configuration Interaction Module #################################### Before reading this section, please read the general introduction mentioned in :ref:`user_posthf_intro`. This part of the Documentation builds upon it. PyBEST allows you also to perform Restricted Configuration Interaction calculations on top of any single-reference wave function. Similar to the previous modules, we will assume the following names for all PyBEST objects :lf: A :py:class:`~pybest.linalg.base.LinalgFactory` instance (see :ref:`user_linalg_intro`). :occ_model: An Aufbau occupation model of the :py:class:`~pybest.scf.occ.AufbauOccModel` class :kin: The kinetic energy integrals :ne: The nucleus-electron attraction integrals :eri: The two-electron repulsion integrals Currently, PyBEST supports the following variants of CI calculations * restricted Configuration Interaction Singles (RCIS) * restricted Configuration Interaction Doubles (RCID) * restricted Configuration Interaction Singles and Doubles (RCISD) The details are shown below. Quick Guide: RCIS/RCID/RCISD ============================ This is a short step-by-step introduction to different CI calculations available in PyBEST. Example input file for the water molecule can be found in the section :ref:`rci_example`. .. _qg_rcis: RCI on top of RHF ----------------- We assume that you have performed a restricted Hartree-Fock calculation, whose results are stored in the :py:class:`~pybest.io.iodata.IOData` container ``hf_out`` (see :ref:`user_hf`). The code snippet below demonstrates how to perform default RCIS/RCID/RCISD calculations with an RHF reference function in PyBEST, .. code-block:: python rcis = RCIS(lf, occ_model) rcis_out = rcis(kin, ne, eri, hf_out) rcid = RCID(lf, occ_model) rcid_out = rcid(kin, ne, eri, hf_out) rcisd = RCISD(lf, occ_model) rcisd_out = rcisd(kin, ne, eri, hf_out) .. note:: By default, only one root is calculated. That is, for :py:class:`~pybest.ci.rcis.RCIS` only the lowest-lying excited state is determined, while for :py:class:`~pybest.ci.rcid.RCID` and :py:class:`~pybest.ci.rcisd.RCISD` only the ground-state root is optimized. See :ref:`rci_keywords` for more details. The results are returned as an :py:class:`~pybest.io.iodata.IOData` container and can be found in the ``./pybest-results`` directory, where all data is stored in the ``checkpoint_CIS.h5``, ``checkpoint_CID.h5``, and ``checkpoint_CISD.h5`` files, respectively. Specifically, the :py:class:`~pybest.io.iodata.IOData` container contains the following attributes :e_corr: The RCIS/RCID/RCISD correlation energy :civ: The eigenvectors of the RCIS/RCID/RCISD Hamiltonian :e_ref: The energy of the reference determinant (here, the Hartree-Fock determinant) .. _rci_keywords: Summary of keyword arguments ---------------------------- The :py:class:`~pybest.ci.rci.RCIS`, :py:class:`~pybest.ci.rci.RCID`, and :py:class:`~pybest.ci.rci.RCISD` modules support various keyword arguments that allow the user to steer the process of the RCIS/RCID/RCISD Hamiltonian diagonalization. In the following, all supported keyword arguments are listed together with their default values. Please note that the default values should be sufficient to reach convergence in simple systems. :nroot: (int) the number of states (default: 1; ground state for RCID/RCISD; first excited state for RCIS) :nguessv: (int) total number of guess vectors (default: (nroot-1)*4+1) :tolerance: (float) tolerance for energies (default: 1e-6) :tolerancev: (float) tolerance for eigenvectors (default: 1e-5) :maxiter: (int) maximum number of iterations (default: 200). :davidson: (boolean) if True, a Davidson diagonalization is performed, otherwise an exact diagonalization is performed (for RCIS only, default: True). :threshold: (float) printing tolerance for contributions of RCI wave function (default: 0.1). :maxvectors: (int) maximum number of Davidson vectors (default: nroot*10) :scc: (boolean) determines whether a size-consistency correction is to be calculated (default: True) :threshold_c_0: a threshold that helps verifying the accuracy of Davidson-type corrections :csf: (boolean) take spin-adapted configurations (configuration state functions) as basis instead of working with Slater determinants (default: False). Currently: only supported for RCIS. .. _rcis_frozen_core: Frozen core RCI --------------- By default, all (occupied and virtual) orbitals are active. To freeze some (occupied) orbitals, the number of frozen cores has to be specified during the initialization of the instance of the chosen :py:class:`~pybest.ci.rci.RCI` class. The code snippet below shows how to freeze the first (occupied) orbital in a :py:class:`~pybest.ci.rci.RCIS`, :py:class:`~pybest.ci.rci.RCID`, :py:class:`~pybest.ci.rci.RCISD` calculation, by specifying the ``ncore`` argument during the initialization of the chosen flavour of :py:class:`~pybest.ci.rci.RCI` .. code-block:: python # Select 1 frozen core orbital #----------------------------- rcis = RCIS(lf, occ_model, ncore=1) rcis_out = rcis(kin, ne, er, hf_out) rcid = RCID(lf, occ_model, ncore=1) rcid_out = rcid(kin, ne, er, hf_out) rcisd = RCISD(lf, occ_model, ncore=1) rcisd_out = rcisd(kin, ne, er, hf_out) .. _user_estruct_scc: Size-consistency Corrections ---------------------------- The RCI module allows you to calculate Davidson-type corrections for the ground state. The following variants of Davidson-type corrections are supported * ``Davidson:`` [davidson-corr]_ .. math:: :label: dc E_{DC}=(1-\alpha^2)(E_{RCI} - E_{RF}) * ``Renormalized Davidson:`` [scc-overview]_ .. math:: :label: rdc E_{RDC}=\left(\frac{1-\alpha_0^2}{\alpha_0^2}\right)(E_{RCI} - E_{RF}) * ``Modified Pople:`` [scc-overview]_ .. math:: :label: pc E_{PC}=E_{RDC}\left(1-\frac{2}{n_e}\right) * ``Meissner:`` [meissner-overview]_ .. math:: :label: mc E_{MC}=E_{RDC}\left( \frac{(n_e-2)(n_e-3)}{n_e(n_e-1)} \right) * ``Duch and Diercksen:`` [meissner-overview]_ .. math:: :label: ddc E_{DDC}=E_{RCI}\left(\frac{1-\alpha_0^2}{2\left(\frac{n_e-1}{n_e-2}\right)c_0^2-1} \right), where :math:`E_{RCI}` indicates the total energy of the :py:class:`~pybest.io.iodata.RCI` method, :math:`E_{RF}` is the energy of the reference method, :math:`c_0` is the contribution of the reference determinant of the reference method, and :math:`n_e` denotes the total number of electrons in the system. .. note:: Please note that PyBEST supports size-consistency calculations for two variants of the :py:class:`~pybest.ci.rci.RCI` module: :py:class:`~pybest.io.iodata.RCID` and :py:class:`~pybest.io.iodata.RCISD`. The size-consistency corrections are calculated directly by setting the ``scc`` keyword argument to True (see also :ref:`rci_keywords`). By default, all size-consistency corrections are calculated. .. _rci_example: RCI calculations for the water molecule ####################################### This is a basic example on how to perform a CI calculation in PyBEST. This script performs an RCIS, RCID, RCISD calculation on the water molecule using the cc-pVDZ basis set. .. literalinclude:: ../src/pybest/data/examples/rci/rci_water_cc-pvdz.py :caption: data/examples/rci/rci_water_cc-pvdz.py :lines: 3-