10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-10-19 22:41:48 +02:00
quantum_package/src/cis
2019-01-16 11:47:09 +01:00
..
.gitignore Renaming in lowercase 2018-12-18 16:11:25 +01:00
20.cis.bats Fixed tests 2019-01-12 15:24:58 +01:00
cis.irp.f Working on doc 2019-01-16 11:47:09 +01:00
EZFIO.cfg Added tests for CIS and CISD 2018-12-25 18:40:39 +01:00
h_apply.irp.f Removed uppercases in filenames 2018-12-18 16:52:15 +01:00
NEED Renaming in lowercase 2018-12-18 16:11:25 +01:00
README.rst Cleaning in scripts 2019-01-14 15:20:51 +01:00

===
cis
===

This module contains a CIS program.

The user point of view
----------------------

The :command:`cis` program performs the CI of the ROHF-like + all single excitations on top of it.
This program can be very useful to :

* **Ground state calculations**: generate a guess for the ground state wave function if one is not sure that the :c:func:`scf` program gave the lowest SCF solution. In combination with :c:func:`save_natorb` it can produce new |MOs| in order to reperform an :c:func:`scf` optimization.

* **Excited states calculations**: generate guess for all the :option:`determinants n_states` wave functions, that will be used by the :c:func:`fci` program.


The main keywords/options to be used are:

* :option:`determinants n_states` : number of states to consider for the |CIS| calculation

* :option:`determinants s2_eig` : force all states to have the desired value of :math:`S^2`

* :option:`determinants expected_s2` : desired value of :math:`S^2`




The programmer point of view
----------------------------

This module have been built by setting the following rules:

* 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.