9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-22 04:22:06 +02:00
qp2/src/cis/README.rst

46 lines
1.3 KiB
ReStructuredText
Raw Normal View History

2019-01-25 11:39:31 +01:00
===
cis
===
2019-01-29 15:40:00 +01:00
This module contains a |CIS| program.
2019-01-25 11:39:31 +01:00
The user point of view
----------------------
2019-01-29 15:40:00 +01:00
The :ref:`cis` program performs the CI to obtain the ROHF reference + all
single excitations on top of it. This program can be very useful to:
2019-01-25 11:39:31 +01:00
2019-01-29 15:40:00 +01:00
* **Ground state calculations**: generate a guess for the ground state wave
function if one is not sure that the :ref:`scf` program gave the lowest |SCF|
solution. In combination with :ref:`save_natorb` it can produce new |MOs| in
order to reperform an :ref:`scf` optimization.
2019-01-25 11:39:31 +01:00
2019-01-29 15:40:00 +01:00
* **Excited states calculations**: generate guesses for all the
:option:`determinants n_states` wave functions, that will be used by the
:ref:`fci` program.
2019-01-25 11:39:31 +01:00
The main keywords/options to be used are:
2019-01-29 15:40:00 +01:00
* :option:`determinants n_states`: number of states to consider for the |CIS| calculation
2019-01-25 11:39:31 +01:00
2019-01-29 15:40:00 +01:00
* :option:`determinants s2_eig`: force all states to have the desired value of |S^2|
2019-01-25 11:39:31 +01:00
2019-01-29 15:40:00 +01:00
* :option:`determinants expected_s2`: desired value of |S^2|
2019-01-25 11:39:31 +01:00
2019-01-29 15:40:00 +01:00
The programmer's point of view
------------------------------
2019-01-25 11:39:31 +01:00
2019-01-29 15:40:00 +01:00
This module was built by setting the following rules:
2019-01-25 11:39:31 +01:00
* The only generator determinant is the Hartree-Fock (single-reference method)
* All generated singly excited determinants are included in the wave function (no perturbative
selection)
These rules are set in the ``H_apply.irp.f`` file.