2014-05-13 13:57:58 +02:00
|
|
|
===========
|
|
|
|
Dets Module
|
|
|
|
===========
|
|
|
|
|
|
|
|
This module contains the determinants of the CI wave function.
|
|
|
|
|
|
|
|
H is applied on the list of generator determinants. Selected determinants
|
|
|
|
are added into the *H_apply buffer*. Then the new wave function is
|
|
|
|
constructred as the concatenation of the odl wave function and
|
|
|
|
some determinants of the H_apply buffer. Generator determinants are built
|
|
|
|
as a subset of the determinants of the wave function.
|
|
|
|
|
|
|
|
|
|
|
|
Assumptions
|
|
|
|
===========
|
|
|
|
|
|
|
|
.. Do not edit this section. It was auto-generated from the
|
|
|
|
.. NEEDED_MODULES file.
|
|
|
|
|
|
|
|
* The MOs are orthonormal
|
|
|
|
* All the determinants have the same number of electrons
|
|
|
|
* The determinants are orthonormal
|
|
|
|
* The number of generator determinants <= the number of determinants
|
|
|
|
* All the determinants in the H_apply buffer are supposed to be different from the
|
|
|
|
wave function determinants
|
|
|
|
* All the determinants in the H_apply buffer are supposed to be unique
|
|
|
|
|
|
|
|
|
|
|
|
Needed Modules
|
|
|
|
==============
|
|
|
|
|
|
|
|
.. Do not edit this section. It was auto-generated from the
|
|
|
|
.. NEEDED_MODULES file.
|
|
|
|
|
|
|
|
* `AOs <http://github.com/LCPQ/quantum_package/tree/master/src/AOs>`_
|
|
|
|
* `BiInts <http://github.com/LCPQ/quantum_package/tree/master/src/BiInts>`_
|
|
|
|
* `Bitmask <http://github.com/LCPQ/quantum_package/tree/master/src/Bitmask>`_
|
|
|
|
* `Electrons <http://github.com/LCPQ/quantum_package/tree/master/src/Electrons>`_
|
|
|
|
* `Ezfio_files <http://github.com/LCPQ/quantum_package/tree/master/src/Ezfio_files>`_
|
|
|
|
* `Hartree_Fock <http://github.com/LCPQ/quantum_package/tree/master/src/Hartree_Fock>`_
|
|
|
|
* `MonoInts <http://github.com/LCPQ/quantum_package/tree/master/src/MonoInts>`_
|
|
|
|
* `MOs <http://github.com/LCPQ/quantum_package/tree/master/src/MOs>`_
|
|
|
|
* `Nuclei <http://github.com/LCPQ/quantum_package/tree/master/src/Nuclei>`_
|
|
|
|
* `Output <http://github.com/LCPQ/quantum_package/tree/master/src/Output>`_
|
|
|
|
* `Utils <http://github.com/LCPQ/quantum_package/tree/master/src/Utils>`_
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
=============
|
|
|
|
|
|
|
|
.. Do not edit this section. It was auto-generated from the
|
|
|
|
.. NEEDED_MODULES file.
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`copy_h_apply_buffer_to_wf <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/H_apply.irp.f#L95>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Copies the H_apply buffer to psi_coef. You need to touch psi_det, psi_coef and N_det
|
|
|
|
after calling this function.
|
2014-05-14 15:40:40 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`fill_h_apply_buffer_no_selection <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/H_apply.irp.f#L181>`_
|
2014-05-25 01:18:41 +02:00
|
|
|
Fill the H_apply buffer with determiants for CISD
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`h_apply_buffer_allocated <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/H_apply.irp.f#L14>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Buffer of determinants/coefficients/perturbative energy for H_apply.
|
|
|
|
Uninitialized. Filled by H_apply subroutines.
|
2014-05-14 00:01:31 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`resize_h_apply_buffer <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/H_apply.irp.f#L45>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Undocumented
|
2014-05-14 00:01:31 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`cisd_sc2 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/SC2.irp.f#L1>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
CISD+SC2 method :: take off all the disconnected terms of a CISD (selected or not)
|
|
|
|
.br
|
|
|
|
dets_in : bitmasks corresponding to determinants
|
|
|
|
.br
|
|
|
|
u_in : guess coefficients on the various states. Overwritten
|
|
|
|
on exit
|
|
|
|
.br
|
|
|
|
dim_in : leftmost dimension of u_in
|
|
|
|
.br
|
|
|
|
sze : Number of determinants
|
|
|
|
.br
|
|
|
|
N_st : Number of eigenstates
|
|
|
|
.br
|
|
|
|
Initial guess vectors are not necessarily orthonormal
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`repeat_excitation <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/SC2.irp.f#L220>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Undocumented
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`connected_to_ref <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/connected_to_ref.irp.f#L95>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Undocumented
|
2014-05-14 00:01:31 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`det_is_not_or_may_be_in_ref <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/connected_to_ref.irp.f#L191>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
If true, det is not in ref
|
|
|
|
If false, det may be in ref
|
2014-05-14 00:01:31 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`is_in_wavefunction <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/connected_to_ref.irp.f#L1>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Undocumented
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`key_pattern_not_in_ref <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/connected_to_ref.irp.f#L225>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Min and max values of the integers of the keys of the reference
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`davidson_converged <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/davidson.irp.f#L383>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
True if the Davidson algorithm is converged
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`davidson_criterion <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/davidson.irp.f#L373>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Can be : [ energy | residual | both | wall_time | cpu_time | iterations ]
|
2014-05-14 15:40:40 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`davidson_diag <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/davidson.irp.f#L18>`_
|
2014-05-14 15:40:40 +02:00
|
|
|
Davidson diagonalization.
|
|
|
|
.br
|
|
|
|
dets_in : bitmasks corresponding to determinants
|
|
|
|
.br
|
|
|
|
u_in : guess coefficients on the various states. Overwritten
|
|
|
|
on exit
|
|
|
|
.br
|
|
|
|
dim_in : leftmost dimension of u_in
|
|
|
|
.br
|
|
|
|
sze : Number of determinants
|
|
|
|
.br
|
|
|
|
N_st : Number of eigenstates
|
|
|
|
.br
|
2014-05-24 02:39:18 +02:00
|
|
|
iunit : Unit number for the I/O
|
|
|
|
.br
|
|
|
|
Initial guess vectors are not necessarily orthonormal
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`davidson_diag_hjj <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/davidson.irp.f#L68>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Davidson diagonalization with specific diagonal elements of the H matrix
|
|
|
|
.br
|
|
|
|
H_jj : specific diagonal H matrix elements to diagonalize de Davidson
|
|
|
|
.br
|
|
|
|
dets_in : bitmasks corresponding to determinants
|
|
|
|
.br
|
|
|
|
u_in : guess coefficients on the various states. Overwritten
|
|
|
|
on exit
|
|
|
|
.br
|
|
|
|
dim_in : leftmost dimension of u_in
|
|
|
|
.br
|
|
|
|
sze : Number of determinants
|
|
|
|
.br
|
|
|
|
N_st : Number of eigenstates
|
|
|
|
.br
|
|
|
|
iunit : Unit for the I/O
|
|
|
|
.br
|
2014-05-14 15:40:40 +02:00
|
|
|
Initial guess vectors are not necessarily orthonormal
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`davidson_iter_max <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/davidson.irp.f#L1>`_
|
2014-05-14 15:40:40 +02:00
|
|
|
Max number of Davidson iterations
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`davidson_sze_max <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/davidson.irp.f#L9>`_
|
2014-05-14 15:40:40 +02:00
|
|
|
Max number of Davidson sizes
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`davidson_threshold <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/davidson.irp.f#L374>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Can be : [ energy | residual | both | wall_time | cpu_time | iterations ]
|
2014-05-24 02:39:18 +02:00
|
|
|
|
2014-06-25 14:58:58 +02:00
|
|
|
`one_body_dm_mo <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/density_matrix.irp.f#L73>`_
|
|
|
|
One-body density matrix
|
|
|
|
|
|
|
|
`one_body_dm_mo_alpha <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/density_matrix.irp.f#L1>`_
|
|
|
|
Alpha and beta one-body density matrix for each state
|
|
|
|
|
|
|
|
`one_body_dm_mo_beta <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/density_matrix.irp.f#L2>`_
|
|
|
|
Alpha and beta one-body density matrix for each state
|
|
|
|
|
2014-07-16 15:31:02 +02:00
|
|
|
`save_natural_mos <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/density_matrix.irp.f#L97>`_
|
2014-06-25 14:58:58 +02:00
|
|
|
Save natural orbitals, obtained by diagonalization of the one-body density matrix in the MO basis
|
|
|
|
|
2014-07-16 15:31:02 +02:00
|
|
|
`set_natural_mos <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/density_matrix.irp.f#L81>`_
|
|
|
|
Set natural orbitals, obtained by diagonalization of the one-body density matrix in the MO basis
|
|
|
|
|
|
|
|
`state_average_weight <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/density_matrix.irp.f#L108>`_
|
2014-06-25 14:58:58 +02:00
|
|
|
Weights in the state-average calculation of the density matrix
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`det_search_key <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L295>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Return an integer*8 corresponding to a determinant index for searching
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`n_det <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L3>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Number of determinants in the wave function
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_average_norm_contrib <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L208>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Contribution of determinants to the state-averaged density
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_average_norm_contrib_sorted <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L229>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Wave function sorted by determinants contribution to the norm (state-averaged)
|
2014-05-14 00:01:31 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_coef <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L153>`_
|
2014-06-06 14:28:47 +02:00
|
|
|
The wave function coefficients. Initialized with Hartree-Fock if the EZFIO file
|
2014-05-30 17:12:10 +02:00
|
|
|
is empty
|
2014-05-14 00:01:31 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_coef_sorted <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L228>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Wave function sorted by determinants contribution to the norm (state-averaged)
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_coef_sorted_bit <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L259>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Determinants on which we apply <i|H|psi> for perturbation.
|
|
|
|
o They are sorted by determinants interpreted as integers. Useful
|
|
|
|
to accelerate the search of a determinant
|
2014-05-30 17:12:10 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_det <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L53>`_
|
2014-06-06 14:28:47 +02:00
|
|
|
The wave function determinants. Initialized with Hartree-Fock if the EZFIO file
|
2014-05-30 17:12:10 +02:00
|
|
|
is empty
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_det_size <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L35>`_
|
2014-05-14 15:40:40 +02:00
|
|
|
Size of the psi_det/psi_coef arrays
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_det_sorted <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L227>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Wave function sorted by determinants contribution to the norm (state-averaged)
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`psi_det_sorted_bit <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L258>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Determinants on which we apply <i|H|psi> for perturbation.
|
|
|
|
o They are sorted by determinants interpreted as integers. Useful
|
|
|
|
to accelerate the search of a determinant
|
2014-05-30 17:12:10 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`read_dets <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L104>`_
|
2014-06-07 22:07:50 +02:00
|
|
|
Reads the determinants from the EZFIO file
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`save_wavefunction <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L310>`_
|
2014-07-16 15:31:02 +02:00
|
|
|
Save the wave function into the EZFIO file
|
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
`save_wavefunction_general <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants.irp.f#L319>`_
|
2014-06-07 22:07:50 +02:00
|
|
|
Save the wave function into the EZFIO file
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`double_exc_bitmask <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants_bitmasks.irp.f#L40>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
double_exc_bitmask(:,1,i) is the bitmask for holes of excitation 1
|
|
|
|
double_exc_bitmask(:,2,i) is the bitmask for particles of excitation 1
|
|
|
|
double_exc_bitmask(:,3,i) is the bitmask for holes of excitation 2
|
|
|
|
double_exc_bitmask(:,4,i) is the bitmask for particles of excitation 2
|
|
|
|
for a given couple of hole/particle excitations i.
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`n_double_exc_bitmasks <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants_bitmasks.irp.f#L31>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Number of double excitation bitmasks
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`n_single_exc_bitmasks <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants_bitmasks.irp.f#L8>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Number of single excitation bitmasks
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`single_exc_bitmask <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/determinants_bitmasks.irp.f#L17>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
single_exc_bitmask(:,1,i) is the bitmask for holes
|
|
|
|
single_exc_bitmask(:,2,i) is the bitmask for particles
|
|
|
|
for a given couple of hole/particle excitations i.
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`ci_eigenvectors <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI.irp.f#L36>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Eigenvectors/values of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`ci_electronic_energy <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI.irp.f#L35>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Eigenvectors/values of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`ci_energy <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI.irp.f#L18>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
N_states lowest eigenvalues of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`diag_algorithm <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI.irp.f#L1>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Diagonalization algorithm (Davidson or Lapack)
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`diagonalize_ci <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI.irp.f#L73>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Replace the coefficients of the CI states by the coefficients of the
|
|
|
|
eigenstates of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`ci_sc2_eigenvectors <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI_SC2.irp.f#L27>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Eigenvectors/values of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`ci_sc2_electronic_energy <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI_SC2.irp.f#L26>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Eigenvectors/values of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`ci_sc2_energy <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI_SC2.irp.f#L1>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
N_states lowest eigenvalues of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`diagonalize_ci_sc2 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI_SC2.irp.f#L46>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
Replace the coefficients of the CI states by the coefficients of the
|
|
|
|
eigenstates of the CI matrix
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`threshold_convergence_sc2 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/diagonalize_CI_SC2.irp.f#L18>`_
|
|
|
|
convergence of the correlation energy of SC2 iterations
|
|
|
|
|
|
|
|
`filter_connected <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/filter_connected.irp.f#L2>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Filters out the determinants that are not connected by H
|
2014-05-22 11:17:36 +02:00
|
|
|
.br
|
|
|
|
returns the array idx which contains the index of the
|
|
|
|
.br
|
|
|
|
determinants in the array key1 that interact
|
|
|
|
.br
|
|
|
|
via the H operator with key2.
|
|
|
|
.br
|
|
|
|
idx(0) is the number of determinants that interact with key1
|
2014-05-24 02:39:18 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`filter_connected_davidson <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/filter_connected.irp.f#L101>`_
|
2014-05-30 17:12:10 +02:00
|
|
|
Filters out the determinants that are not connected by H
|
|
|
|
.br
|
|
|
|
returns the array idx which contains the index of the
|
|
|
|
.br
|
|
|
|
determinants in the array key1 that interact
|
|
|
|
.br
|
|
|
|
via the H operator with key2.
|
|
|
|
.br
|
|
|
|
idx(0) is the number of determinants that interact with key1
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`filter_connected_i_h_psi0 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/filter_connected.irp.f#L233>`_
|
2014-05-22 11:17:36 +02:00
|
|
|
returns the array idx which contains the index of the
|
|
|
|
.br
|
|
|
|
determinants in the array key1 that interact
|
|
|
|
.br
|
|
|
|
via the H operator with key2.
|
|
|
|
.br
|
|
|
|
idx(0) is the number of determinants that interact with key1
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`filter_connected_i_h_psi0_sc2 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/filter_connected.irp.f#L332>`_
|
2014-05-22 11:17:36 +02:00
|
|
|
standard filter_connected_i_H_psi but returns in addition
|
|
|
|
.br
|
|
|
|
the array of the index of the non connected determinants to key1
|
|
|
|
.br
|
|
|
|
in order to know what double excitation can be repeated on key1
|
|
|
|
.br
|
|
|
|
idx_repeat(0) is the number of determinants that can be used
|
|
|
|
.br
|
|
|
|
to repeat the excitations
|
2014-05-24 02:39:18 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_s2 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/s2.irp.f#L1>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Returns <S^2>
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_s2_u0 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/s2.irp.f#L46>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Undocumented
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`s_z <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/s2.irp.f#L36>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Undocumented
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`s_z2_sz <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/s2.irp.f#L37>`_
|
2014-05-24 02:39:18 +02:00
|
|
|
Undocumented
|
2014-06-25 14:58:58 +02:00
|
|
|
|
2014-07-16 15:31:02 +02:00
|
|
|
`save_dets_qmcchem <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/save_for_qmcchem.irp.f#L1>`_
|
|
|
|
Undocumented
|
|
|
|
|
|
|
|
`save_for_qmc <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/save_for_qmcchem.irp.f#L37>`_
|
|
|
|
Undocumented
|
|
|
|
|
2014-06-25 14:58:58 +02:00
|
|
|
`save_natorb <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/save_natorb.irp.f#L1>`_
|
|
|
|
Undocumented
|
2014-05-24 02:39:18 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`a_operator <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L721>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Needed for diag_H_mat_elem
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`ac_operator <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L766>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Needed for diag_H_mat_elem
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`decode_exc <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L76>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Decodes the exc arrays returned by get_excitation.
|
|
|
|
h1,h2 : Holes
|
|
|
|
p1,p2 : Particles
|
|
|
|
s1,s2 : Spins (1:alpha, 2:beta)
|
|
|
|
degree : Degree of excitation
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`det_connections <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L898>`_
|
2014-05-30 23:20:52 +02:00
|
|
|
.br
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`diag_h_mat_elem <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L659>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Computes <i|H|i>
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_double_excitation <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L141>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Returns the two excitation operators between two doubly excited determinants and the phase
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_excitation <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L30>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Returns the excitation operators between two determinants and the phase
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_excitation_degree <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L1>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Returns the excitation degree between two determinants
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_excitation_degree_vector <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L575>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Applies get_excitation_degree to an array of determinants
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_mono_excitation <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L274>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Returns the excitation operator between two singly excited determinants and the phase
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`get_occ_from_key <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L814>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Returns a list of occupation numbers from a bitstring
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`h_u_0 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L830>`_
|
2014-05-14 15:40:40 +02:00
|
|
|
Computes v_0 = H|u_0>
|
|
|
|
.br
|
|
|
|
n : number of determinants
|
|
|
|
.br
|
|
|
|
H_jj : array of <j|H|j>
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`i_h_j <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L355>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
Returns <i|H|j> where i and j are determinants
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`i_h_psi <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L491>`_
|
2014-06-04 21:28:43 +02:00
|
|
|
<key|H|psi> for the various Nstates
|
2014-05-22 11:17:36 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`i_h_psi_sc2 <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L527>`_
|
2014-05-22 11:17:36 +02:00
|
|
|
<key|H|psi> for the various Nstate
|
|
|
|
.br
|
|
|
|
returns in addition
|
|
|
|
.br
|
|
|
|
the array of the index of the non connected determinants to key1
|
|
|
|
.br
|
|
|
|
in order to know what double excitation can be repeated on key1
|
|
|
|
.br
|
|
|
|
idx_repeat(0) is the number of determinants that can be used
|
|
|
|
.br
|
|
|
|
to repeat the excitations
|
2014-05-14 15:40:40 +02:00
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`n_con_int <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/slater_rules.irp.f#L890>`_
|
2014-05-30 23:20:52 +02:00
|
|
|
Number of integers to represent the connections between determinants
|
|
|
|
|
2014-06-20 15:23:04 +02:00
|
|
|
`h_matrix_all_dets <http://github.com/LCPQ/quantum_package/tree/master/src/Dets/utils.irp.f#L1>`_
|
2014-05-14 00:01:31 +02:00
|
|
|
H matrix on the basis of the slater deter;inants defined by psi_det
|
|
|
|
|
2014-05-13 13:57:58 +02:00
|
|
|
|
|
|
|
|