..
: 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_lcc:
The linearized coupled cluster module
#####################################
Before reading this section, please read the general introduction mentioned
in :ref:`user_posthf_intro`. This part of the Documentation builds upon it.
With PyBEST, you can perform a linearized coupled cluster correction on top of
a single Slater determinant reference function like RHF (see :ref:`user_hf`) or
an RpCCD (see :ref:`user_pccd`) reference function.
Both modules are explained in greater detail below.
Supported features
==================
The linearized coupled cluster module supports spin-restricted orbitals and the
``DenseLinalgFactory`` and ``CholeskyLinalgFactory``.
.. _getstartedlcc:
Quick Guide: RLCC
=================
This is a short introduction to the RLCC 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_rhflcc:
RHF reference function
----------------------
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_output``
(see :ref:`user_hf`).
The code snippet below shows how to perform an RLCCD calculation with an
RHF reference function in PyBEST,
.. code-block:: python
lccd = RLCCD(lf, occ_model)
lccd_output = lccd(kin, ne, eri, hf_output)
The results are returned as an :py:class:`~pybest.io.iodata.IOData` container,
while all results are saved to the ``pybest-results/checkpoint_RLCCD.h5`` file.
Specifically, the :py:class:`~pybest.io.iodata.IOData` container contains
(amongst others) the following attributes
:e_tot: The total RLCCD energy (including all external terms)
:e_corr: The RLCCD correlation energy
:e_ref: The energy of the reference determinant (here, the Hartree-Fock
determinant)
:t_2: The doubles amplitudes
.. note::
The order of arguments does not matter because PyBEST assigns them in an
automatic fashion.
To include single excitations as well, you have to use the
:py:class:`~pybest.cc.rlccsd.RLCCSD` class. The overall input structure
is equivalent to :py:class:`~pybest.cc.rlccd.RLCCD`,
.. code-block:: python
lccsd = RLCCSD(lf, occ_model)
lccsd_output = lccsd(kin, ne, eri, hf_output)
The corresponding :py:class:`~pybest.io.iodata.IOData` container (return value)
will also contain the singles amplitudes in addition to the
:py:class:`~pybest.cc.rlccd.RLCCD` attributes,
:t_1: The singles amplitudes
All results are saved to the ``pybest-results/checkpoint_RLCCSD.h5`` checkpoint file.
.. _qg_pccdlcc:
RpCCD reference function
------------------------
If you use this module, please cite [boguslawski2015b]_.
An RLCC correction on top of a pCCD wave function (with and without orbital
optimization) is performed in a very similar way as a conventional RLCC
calculation.
We assume that you have performed a restricted pCCD calculation, 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 RLCCD calculation with a pCCD
reference function in PyBEST,
.. code-block:: python
lccd = RpCCDLCCD(lf, occ_model)
lccd_output = lccd(kin, ne, eri, pccd_output)
Instead of creating an instance of :py:class:`~pybest.cc.rlccd.RLCCD`,
you have to use the :py:class:`~pybest.cc.rlccd.RpCCDLCCD` class.
The results are returned as an :py:class:`~pybest.io.iodata.IOData` container,
while all results are saved to the ``pybest-results/checkpoint_RpCCDLCCD.h5`` file.
Specifically, the :py:class:`~pybest.io.iodata.IOData` container contains
similar attributes as the :py:class:`~pybest.cc.rlccd.RLCCD`
:py:class:`~pybest.io.iodata.IOData` container. In addition, the pCCD pair
amplitudes ``t_p`` are stored in the container. Thus, we have (amongst others)
the following attributes
:e_tot: The total RpCCDLCCD energy (including all external terms)
:e_corr: The RpCCDLCCD correlation energy
:e_ref: The energy of the reference wave function (here, the total
RpCCD energy)
:t_2: The doubles amplitudes (all pair amplitudes equal zero)
:t_p: The pair amplitudes of pCCD
.. note::
The order of arguments does not matter because PyBEST assigns them in an
automatic fashion.
To include single excitations as well, you have to use the
:py:class:`~pybest.cc.rlccsd.RpCCDLCCSD` class. The overall input structure
is equivalent to :py:class:`~pybest.cc.rlccd.RpCCDLCCD`,
.. code-block:: python
lccsd = RpCCDLCCSD(lf, occ_model)
lccsd_output = lccsd(kin, ne, eri, pccd_output)
The corresponding :py:class:`~pybest.io.iodata.IOData` container (return value)
will also contain the singles amplitudes in addition to the
:py:class:`~pybest.cc.rlccd.RpCCDLCCD` attributes,
:t_1: The singles amplitudes
All results are saved to the ``pybest-results/checkpoint_RpCCDLCCSD.h5`` checkpoint file.
.. _lcc_fc:
Defining a frozen core
----------------------
By default, all core orbitals are kept frozen by PyBEST. If a frozen core
has been selected in the pCCD reference calculation, the same orbitals have
to be frozen in the chosen flavor of LCC correction.
The only exception is the RLCC module, where a frozen core can be defined
even if no frozen core was present in the RHF calculation.
To freeze some specific (occupied) orbitals, the number of frozen cores has to be
specified when an instance of some occupation model is created. For instance,
if you wish to freeze the first 4 (occupied) orbitals in a RLCCSD
calculation, specify the ``ncore`` argument during the initialization of
occupation model.
.. code-block:: python
# Select 4 frozen core orbital
#-----------------------------
occ_model = AufbauOccModel(gobasis, ncore=4)
# Perform LCC calculation, ncore is stored in occ_model
#------------------------------------------------------
lccsd = RLCCSD(lf, occ_model)
lccsd_output = lccsd(kin, ne, eri, hf_output)
This syntax is working for all LCC modules mentioned above.
.. _lcc_restart:
Restart options
---------------
The :py:class:`~pybest.cc.rlccsd.RLCC` module supports restarts from PyBEST's
internal checkpoint files.
Furthermore, only one restart option is currently supported
1. Restart only CC amplitudes (``restart`` keyword)
To restart a calculation, you have to
specify the ``restart`` keyword, which contains the name of the
checkpoint file used for restarts. Since the restart behavior is similar in all
:py:class:`~pybest.cc.rcc.RCC` modules, we select
:py:class:`~pybest.cc.rlccd.RLCCD` as an example.
If your :py:class:`~pybest.cc.rlccd.RLCCD` calculation did not converge and
you wish to restart it and take the amplitudes from a previous calculation as
guess, specify the ``restart`` keyword.
Note that in this case, the :py:class:`~pybest.io.iodata.IOData` container of the
reference calculation still has to be passed as an argument,
.. code-block:: python
lccd = RLCCD(lf, occ_model)
# Restart only amplitudes from checkpoint_RLCCD.h5
lccd_output = lccd(kin, ne, eri, hf_output, restart='pybest-results/checkpoint_RLCCD.h5')
PyBEST will read the amplitudes stored in ``pybest-results/checkpoint_RLCCD.h5`` and
provide those as guess amplitudes to the LCC solver.
.. note::
Currently, PyBEST does not dump the Hamiltonian to disk that is used in the
LCC calculation. Thus, if the user modifies the Hamiltonian, the calculation
might be corrupted and special care is advised.
RLCC on top of RHF
==================
Please read the Quick Guide documentation in :ref:`qg_rhflcc` before
consulting this part of the documentation. This section on the RLCC module
builds upon the Quick Guide above and contains only additional information
that might be useful for the user.
.. _rhflccd:
RLCCD calculations
------------------
In addition to the :py:class:`~pybest.io.iodata.IOData` container attributes
mentioned in the Quick Guide above, the :py:class:`~pybest.cc.rlccd.RLCCD`
container includes the following information
:e_corr_d: The RLCCD correlation energy wrt double excitations
:e_corr_s0: The RLCCD correlation energy wrt the seniority zero sector
of all double excitations
:e_corr_s2: The RLCCD correlation energy wrt the seniority 2 sector of
all double excitations
:e_corr_s4: The RLCCD correlation energy wrt the seniority 4 sector of
all double excitations
:orb_a: A copy of the orbitals used in the RLCCD calculation
:olp: The overlap integrals used in the RLCCD calculation (for restart
purposes)
.. _rhflccsd:
RLCCSD (CEPA(0)) calculations
-----------------------------
If single excitations are included in the cluster operator, the corresponding
correlation energy is stored as a separate component in the
:py:class:`~pybest.io.iodata.IOData` container (in addition to the attributes
mentioned in :ref:`rhflccd`)
:e_corr_s: The RLCCSD correlation energy wrt single excitations
:t_1: The singles amplitudes
.. _lcc_keywords:
Summary of keyword arguments
----------------------------
The :py:class:`~pybest.cc.rcc.RCC` module supports various keyword
arguments that allow us to steer the optimization of the cluster amplitudes.
In the following, all supported keyword
arguments are listed together with their default values. Please note, that for
most cases the default values should be sufficient to reach convergence.
For convergence difficulties see :ref:`lcc_troubleshooting`.
:restart: (str) if provided, a restart from a given checkpoint file
is performed (see :ref:`lcc_restart`)
:initguess: (str or numpy.ndarray) initial guess for the amplitudes, one of:
:random: random numbers
:mp2: performs MP2 calculations before (default)
:const: uses constant number (used for debugging)
:path to file: path to .h5 file containing amplitudes
(saved
as checkpoint_method.h5 by default)
:numpy.ndarray: 1d vector with amplitudes
:{"t_1"\: DenseTwoIndex instance, ...}: dictionary of amplitudes
IOData
(t_1=DenseTwoIndex instance),
IOData instance
:solver: (str) type of solver used. Possible values are one of scipy.optimize.root solvers
or ``pbqn`` (perturbation-based quasi-Newton solver, default),
``krylov``, and ``mix``.
.. note::
``krylov`` is more stable but also much slower than ``pbqn``.
The convergence of the latter may break down for difficult
cases. The ``mix`` option starts with ``pbqn`` and moves to ``krylov``
if ``pbqn`` does not achieve convergence.
:maxiter: (int) Maximum number of iterations (default ``100``)
:threshold_r: (float) Ttolerance for amplitudes (default: 1e-5).
:threshold_e: (float) Tolerance for energy (default: 1e-6, works only in
combination with "pbqn" solver).
Some keyword arguments are only working together with the ``pbqn`` solver.
If the ``krylov`` solver has been selected, they have no effect.
:jacobian: (int) The jacobian approximation used in the ``pbqn`` solver.
Either ``1`` (only diagonal elements of Fock matrix) or ``2``
(contains additional amplitude-independent terms) is
allowed (default ``1``)
:diis: (dictionary) Contains optimization parameters for DIIS used in the PBQN
solver, one of:
:diismax: (int) Maximum number of DIIS vectors (default ``2``)
:diisreset: (boolean) If True deletes selected DIIS vectors (default ``True``)
:diisstart: (int) First iteration of DIIS procedure (default ``0``)
RLCC on top of pCCD
===================
If you use this module, please cite [boguslawski2015b]_.
Please read the Quick Guide documentation in :ref:`qg_pccdlcc` before
consulting this part of the documentation. This section on the RLCC module
builds upon the Quick Guide above and contains only additional information
that might be useful for the user.
.. _pccdlccd:
RpCCD-LCCD calculations
-----------------------
The :py:class:`~pybest.io.iodata.IOData` container of the
:py:class:`~pybest.cc.rlccsd.RpCCDLCCD` module has the same attributes as
described for the :py:class:`~pybest.cc.rlccd.RLCCD` method (see :ref:`rhflccd`)
except that the ``t_2`` amplitudes only contain all broken-pair amplitudes and
the pCCD pair amplitudes are also returned, that is,
:t_2: The doubles amplitudes (all pair amplitudes equal zero)
:t_p: The pair amplitudes of pCCD
.. _pccdlccsd:
RpCCD-LCCSD calculations
------------------------
As in the case of RLCCSD, the :py:class:`~pybest.cc.rlccsd.RpCCDLCCSD` module
additionally returns the correlation energy associated with all single excitations
and the corresponding T1 amplitudes,
:e_corr_s: The RpCCD-LCCSD correlation energy wrt single excitations
:t_1: The singles amplitudes
All remaining attributes are summarized in :ref:`pccdlccd` and :ref:`rhflccd`.
.. _lcc_troubleshooting:
Troubleshooting in LCC calculations
===================================
- **The amplitude solver converges very slowly:**
Usually, a calculation should converge within 10-15 iterations (using the
``krylov`` solver). However, there are cases where the default solver shows
poor convergence. Usually, this means that the CC model is not appropriate to
describe electron correlation in the given system.
In the case of pCCD-LCC, this can also indicate that the corresponding orbitals
are suboptimal and a better solution for the orbitals is to be expected.
For instance, the orbital optimizer in pCCD may have gotten stuck in some local minimum.
You can try to re-optimize the orbitals within pCCD by, for instance, imposing
a small perturbation on the current solution.
.. note::
In any case, the quality of the pCCD solution will strongly affect the
performance/convergence of the LCC correction.
- **The PBQN solver diverges:**
The ``pbqn`` solver might be unstable for difficult cases. You can switch
to the ``krylov`` solver in such cases. Note, however, that the latter
is rather slow.
.. _lcc_lambda_equations:
:math:`\Lambda`-equations
=========================
The LCC module supports the solution of the corresponding :math:`\Lambda`-equations,
which are used to, for instance, determine (selected elements of) the 1-, 2-, 3-, 4-particle
reduced density matrices (RDM's).
The optimization of the :math:`\lambda`-amplitudes is performed by setting the keyword
argument ``lambda_equations=True`` in the corresponding LCC function call.
The following code snippet shows how to optimize the :math:`\lambda`-amplitudes for both pCCD-LCC flavors.
.. code-block:: python
lccd = RpCCDLCCD(lf, occ_model)
lccd_output = lccd(kin, ne, eri, oopccd_output, lambda_equations=True)
.. code-block:: python
lccsd = RpCCDLCCSD(lf, occ_model)
lccsd_output = lccsd(kin, ne, eri, oopccd_output, lambda_equations=True)
The :py:class:`~pybest.io.iodata.IOData` container (return value)
contains the corresponding :math:`\lambda`-amplitudes as attributes as well as all RDM's that are required
for the orbital entanglement module (see :ref:`Orbital Entanglement for pCCD-LCC `)
.. note::
We recommend to use the same convergence threshold for the CC amplitude and the :math:`\Lambda`-equations.
Typically, the default convergence thresholds should be sufficient. If higher accuracy is, however,
desired, we recommend to set a tight convergence threshold of 1e-12 (threshold=1e-12).
Example Python scripts
======================
Several complete examples can be found in the directory ``data/examples/lcc``.
RLCC calculation on the water molecule
--------------------------------------
This is a basic example on how to perform a RLCC calculation in PyBEST.
This script performs a RLCCD calculation followed by a RLCCSD calculation
on the water molecule using the cc-pVDZ basis set.
.. literalinclude:: ../src/pybest/data/examples/lcc/rhflcc_water_cc-pvdz.py
:caption: data/examples/lcc/rhflcc_water_cc-pvdz.py
:lines: 3-
RLCC calculation on the water molecule using a frozen core
----------------------------------------------------------
This is a basic example on how to perform a RLCC calculation in PyBEST.
This script performs a RLCCD calculation followed by a RLCCSD calculation
on the water molecule using the cc-pVDZ basis set and freezing the lowest orbital.
.. literalinclude:: ../src/pybest/data/examples/lcc/rhflcc_frozen_core_water_cc-pvdz.py
:caption: data/examples/lcc/rhflcc_frozen_core_water_cc-pvdz.py
:lines: 3-
pCCD-LCC calculation on the water molecule
------------------------------------------
This is a basic example on how to perform a pCCD-LCC calculation in PyBEST.
This script performs a pCCD-LCCD calculation followed by a pCCD-LCCSD calculation
on the water molecule using the cc-pVDZ basis set.
.. literalinclude:: ../src/pybest/data/examples/lcc/rpccdlcc_water_cc-pvdz.py
:caption: data/examples/lcc/rpccdlcc_water_cc-pvdz.py
:lines: 3-
pCCD-LCC calculation on the water molecule using a frozen core
--------------------------------------------------------------
This is a basic example on how to perform a pCCD-LCC calculation in PyBEST.
This script performs a pCCD-LCCD calculation followed by a pCCD-LCCSD calculation
on the water molecule using the cc-pVDZ basis set and freezing the lowest
orbital.
.. literalinclude:: ../src/pybest/data/examples/lcc/rpccdlcc_frozen_core_water_cc-pvdz.py
:caption: data/examples/lcc/rpccdlcc_frozen_core_water_cc-pvdz.py
:lines: 3-