.. : 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_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.eomcc.eom_cc.REOMpCCD`) 2. singly and electron-pair excited states (:py:class:`~pybest.eomcc.eom_cc.REOMpCCDS`) Complete examples can be found in the following subsections (:ref:`eom_pccd_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_`` (see :ref:`user_pccd`). The code snippet below shows how to perform an :py:class:`~pybest.eomcc.eom_cc.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 (including ground state) eom = REOMpCCD(lf, occ_model) eom_ = eom(kin, ne, eri, pccd_, nroot=3) .. note:: The ``nroot`` keyword includes the ground state as the first root. 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`. .. note:: The order of arguments does not matter because PyBEST assigns them in an automatic fashion. EOM-pCCD+S: 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.eomcc.eom_cc.REOMpCCDS` class, which performs an EOM-pCCD+S calculation. The overall input structure is equivalent to :py:class:`~pybest.eomcc.eom_cc.REOMpCCD`, .. code-block:: python # Calculate 3 lowest-lying roots (including ground state) eom = REOMpCCDS(lf, occ_model) eom_ = eom(kin, ne, eri, pccd_) 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. .. _eom_fc: Defining a frozen core ---------------------- By default, all (occupied and virtual) orbitals are active. If a frozen core has been selected in the pCCD 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.eomcc.eom_cc.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 :py:class:`~pybest.eomcc.eom_cc.REOMpCCDS` class, .. code-block:: python # Select 4 frozen core orbital #----------------------------- eom = REOMpCCDS(lf, occ_model, ncore=4) eom_ = eom(kin, ne, eri, pccd_) This syntax is working for all EOM modules mentioned above. .. _eom_restart: Restart options --------------- Restart options are not supported yet.