.. : 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_eomcc_intro: Quick Guide ########### Before reading this section, please read the general introduction mentioned in :ref:`user_posthf_intro`. This part of the Documentation builds upon it. The current version of PyBEST offers excited-state calculations with a RpCCD (see :ref:`user_pccd`) reference function using the Equation of Motion (EOM) formalism. The EOM module is explained in greater detail below. Supported features ================== The EOM module supports spin-restricted orbitals and the ``DenseLinalgFactory`` and ``CholeskyLinalgFactory``. .. _getstartedeom: How to: REOM ============ This is a short introduction to the REOM module. More information on the input and output structure can be found in the following sections. 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 .. _qg_eomccs: CCS reference function ---------------------- PyBEST supports EOM-CCS calculations, which are equivalent to CIS (configuration interaction singles) calculations (for excited states; see also :ref:`qg_rci`). Complete examples can be found in the following subsections (:ref:`eom_examples`). EOM-CCS ^^^^^^^ We assume that you have performed a restricted CCS calculation, whose results are stored in the :py:class:`~pybest.io.iodata.IOData` container ``ccs_output``. The code snippet below shows how to perform an :py:class:`~pybest.ee_eom.eom_ccs.REOMCCS` calculation where only single excitations are described within the EOM formalism. The number of target states is passed through the ``nroot`` keyword argument. .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMCCS(lf, occ_model) eom_output = eom(kin, ne, eri, ccs_output, nroot=3) .. note:: The ``nroot`` keyword indicates the number of excited states (beyond the ground state). .. note:: The order of arguments does not matter because PyBEST assigns them in an automatic fashion. The results are returned as an :py:class:`~pybest.io.iodata.IOData` container, while all results are saved to the ``pybest-results/checkpoint_EOMCCS.h5`` file. Specifically, the :py:class:`~pybest.io.iodata.IOData` container contains (amongst others) the following attributes :e_ee: The excitation energies (including the ground state, which equals 0.0) :civ_ee: The CI vector (that is, the eigenvectors) for each state (column) (including the ground states as a first column vector) :t_1: The singles amplitudes of CCS The eigenvalues and eigenvectors are stored as numpy arrays, not as instances of the :py:class:`~pybest.linalg.base.LinalgFactory`. .. _qg_eompccd: RpCCD reference function ------------------------ This version of PyBEST supports EOM-pCCD calculations with two different excitation operators 1. electron-pair excited states only (:py:class:`~pybest.ee_eom.eom_pccd.REOMpCCD`) 2. singly and electron-pair excited states (:py:class:`~pybest.ee_eom.eom_pccd_s.REOMpCCDS` and :py:class:`~pybest.ee_eom.eom_pccd_s.REOMpCCDCCS`) Complete examples can be found in the following subsections (:ref:`eom_examples`). EOM-pCCD: Electron-pair excitations ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ If you use this module, please cite [boguslawski2016a]_ and [boguslawski2017c]_. We assume that you have performed a restricted pCCD calculation (either with or without orbital optimization), whose results are stored in the :py:class:`~pybest.io.iodata.IOData` container ``pccd_output`` (see :ref:`user_pccd`). The code snippet below shows how to perform an :py:class:`~pybest.ee_eom.eom_pccd.REOMpCCD` calculation where only electron-pair excitations are described within the EOM formalism. The number of target states is passed through the ``nroot`` keyword argument. .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMpCCD(lf, occ_model) eom_output = eom(kin, ne, eri, pccd_output, nroot=3) The results are returned as an :py:class:`~pybest.io.iodata.IOData` container, while all results are saved to the ``pybest-results/checkpoint_EOMpCCD.h5`` file. Specifically, the :py:class:`~pybest.io.iodata.IOData` container contains (amongst others) the following attributes :e_ee: The excitation energies (including the ground state, which equals 0.0) :civ_ee: The CI vector (that is, the eigenvectors) for each state (column) (including the ground states as a first column vector) :t_p: The pair amplitudes of pCCD The eigenvalues and eigenvectors are stored as numpy arrays, not as instances of the :py:class:`~pybest.linalg.base.LinalgFactory`. EOM-pCCD+S and EOM-pCCD-CCS: Single and electron-pair excitations ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ If you use this module, please cite [boguslawski2016a]_ and [boguslawski2017c]_. To include single excitations as well, you can use the :py:class:`~pybest.ee_eom.eom_pccd_s.REOMpCCDS` class, which performs an EOM-pCCD+S calculation. The overall input structure is equivalent to :py:class:`~pybest.ee_eom.eom_pccd.REOMpCCD`, .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMpCCDS(lf, occ_model) eom_output = eom(kin, ne, eri, pccd_output, nroot=3) The corresponding :py:class:`~pybest.io.iodata.IOData` container (return value) will also contain all singly-excited states in the ``civ_ee`` attribute. All results are saved to the ``pybest-results/checkpoint_EOMpCCD+S.h5`` checkpoint file. .. note:: The EOM-pCCD+S method is not size-intensive. Thus, the ground state energy eigenvalue will not be 0.0 au. All excitation energies (and hence also total energies) have to be adjusted wrt to the ground state energy shift. The (rows of the) eigenvectors are sorted as follows: reference (pCCD) state, all singly-excited states, all doubly-excited states. To recover size-intensivity, the :py:class:`~pybest.ee_eom.eom_pccd_ccs.REOMpCCDCCS` flavor can be used, which exploits a pCCD-CCS reference function. To perform a :py:class:`~pybest.ee_eom.eom_pccd_ccs.REOMpCCDCCS`, a pCCD-CCS reference function is required. Here, we assume that the corresponding output results are stored in the :py:class:`~pybest.io.iodata.IOData` container ``pccdccs_output``. The code snippet below shows how to perform the corresponding EOM calculation for the 3 energetically lowest excited states. .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMpCCDCCS(lf, occ_model) eom_output = eom(kin, ne, eri, pccdccs_output, nroot=3) .. _qg_eomlcc: LCC reference function ---------------------- PyBEST supports EOM-LCC calculations with two different reference functions 1. linearized coupled-cluster doubles (:py:class:`~pybest.ee_eom.eom_lccd.REOMLCCD`) 2. linearized coupled-cluster singles doubles (:py:class:`~pybest.ee_eom.eom_lccsd.REOMLCCSD`) Complete examples can be found in the following subsections (:ref:`eom_examples`). EOM-LCCD and EOM-LCCSD ^^^^^^^^^^^^^^^^^^^^^^ We assume that you have performed a restricted LCCD or LCCSD calculation, whose results are stored in the :py:class:`~pybest.io.iodata.IOData` container ``lcc_output`` (see :ref:`qg_rhflcc`). The code snippet below shows how to perform an :py:class:`~pybest.ee_eom.eom_lccd.REOMLCCD` calculation where only double excitations are described within the EOM formalism. The number of target states is passed through the ``nroot`` keyword argument. .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMLCCD(lf, occ_model) eom_output = eom(kin, ne, eri, lcc_output, nroot=3) The results are returned as an :py:class:`~pybest.io.iodata.IOData` container, while all results are saved to the ``pybest-results/checkpoint_EOMLCCD.h5`` file. Specifically, the :py:class:`~pybest.io.iodata.IOData` container contains (amongst others) the following attributes :e_ee: The excitation energies (including the ground state, which equals 0.0) :civ_ee: The CI vector (that is, the eigenvectors) for each state (column) (including the ground states as a first column vector) :t_2: The doubles amplitudes of LCCD The eigenvalues and eigenvectors are stored as numpy arrays, not as instances of the :py:class:`~pybest.linalg.base.LinalgFactory`. To perform an :py:class:`~pybest.ee_eom.eom_lccd.REOMLCCSD` calculation where in addition singles excitations are described within the EOM formalism, you have to use the :py:class:`~pybest.ee_eom.eom_lccd.REOMLCCSD` class, .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMLCCSD(lf, occ_model) eom_output = eom(kin, ne, eri, lcc_output, nroot=3) Again, we assume that the results of the LCCSD calculations are stored in the :py:class:`~pybest.io.iodata.IOData` container ``lcc_output``. In addition, the output container ``eom_output`` also contains information on the singles amplitudes, :t_1: The singles amplitudes of LCCSD .. _qg_eompccdlcc: pCCD-LCC reference function --------------------------- If you use these modules, please cite [boguslawski2019]_. PyBEST also supports EOM-pCCD-LCC calculations with two different reference functions 1. pCCD with a linearized coupled-cluster doubles correction (:py:class:`~pybest.ee_eom.eom_lccd.REOMpCCDLCCD`) 2. pCCD with a linearized coupled-cluster singles doubles correction (:py:class:`~pybest.ee_eom.eom_lccsd.REOMpCCDLCCSD`) Complete examples can be found in the following subsections (:ref:`eom_examples`). EOM-pCCD-LCCD and EOM-pCCD-LCCSD ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ We assume that you have performed a restricted pCCD-LCCD or pCCD-LCCSD calculation, whose results are stored in the :py:class:`~pybest.io.iodata.IOData` container ``pccdlcc_output`` (see :ref:`qg_pccdlcc`). The code snippet below shows how to perform an :py:class:`~pybest.ee_eom.eom_lccd.REOMpCCDLCCD` calculation where only double excitations (including electron pairs) are described within the EOM formalism. The number of target states is passed through the ``nroot`` keyword argument. .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMpCCDLCCD(lf, occ_model) eom_output = eom(kin, ne, eri, pccdlcc_output, nroot=3) The results are returned as an :py:class:`~pybest.io.iodata.IOData` container, while all results are saved to the ``pybest-results/checkpoint_EOMpCCDLCCD.h5`` file. Specifically, the :py:class:`~pybest.io.iodata.IOData` container contains (amongst others) the following attributes :e_ee: The excitation energies (including the ground state, which equals 0.0) :civ_ee: The CI vector (that is, the eigenvectors) for each state (column) (including the ground states as a first column vector) :t_2: The doubles amplitudes of pCCD-LCCD :t_p: The electron-pair amplitudes of pCCD (fixed in pCCD-LCCD) The eigenvalues and eigenvectors are stored as numpy arrays, not as instances of the :py:class:`~pybest.linalg.base.LinalgFactory`. To perform an :py:class:`~pybest.ee_eom.eom_lccsd.REOMpCCDLCCSD` calculation where, in addition, singles excitations are described within the EOM formalism, you have to use the :py:class:`~pybest.ee_eom.eom_lccsd.REOMpCCDLCCSD` class, .. code-block:: python # Calculate 3 lowest-lying roots (excluding the ground state) eom = REOMpCCDLCCSD(lf, occ_model) eom_output = eom(kin, ne, eri, pccdlcc_output, nroot=3) Again, we assume that the results of the pCCD-LCCSD calculations are stored in the :py:class:`~pybest.io.iodata.IOData` container ``pccdlcc_output``. In addition, the output container ``eom_output`` also contains information on the singles amplitudes, :t_1: The singles amplitudes of pCCD-LCCSD .. _eom_fc: Defining a frozen core ---------------------- By default, all (occupied and virtual) orbitals are active. If a frozen core has been selected in the CC reference calculation, the same orbitals have to be frozen in the chosen EOM flavor. To freeze some (occupied) orbitals, the number of frozen cores has to be specified when an instance of some :py:class:`~pybest.ee_eom.eom_base.REOMCC` class is created. For instance, if you wish to freeze the first 4 (occupied) orbitals in an EOM-pCCD+S calculation, specify the ``ncore`` argument during the initialization of some occupation model class, .. code-block:: python # Select 4 frozen core orbital #----------------------------- occ_model = AufbauOccModel(gobasis, ncore=4) # Perform EOM-CC calculation, ncore is stored in occ_model #--------------------------------------------------------- eom = REOMpCCDS(lf, occ_model) eom_output = eom(kin, ne, eri, pccd_output) This syntax is working for all EOM modules mentioned above. .. _eom_restart: Restart options --------------- Restart options are not supported yet.