10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-29 08:24:51 +02:00
quantum_package/plugins/Full_CI/H_apply.irp.f

32 lines
505 B
Fortran
Raw Normal View History

2015-06-17 18:22:08 +02:00
use bitmasks
BEGIN_SHELL [ /usr/bin/env python ]
from generate_h_apply import *
2016-03-29 14:13:02 +02:00
s = H_apply("FCI")
2015-06-17 18:22:08 +02:00
s.set_selection_pt2("epstein_nesbet_2x2")
2017-06-26 19:12:44 +02:00
s.unset_skip()
2015-06-17 18:22:08 +02:00
print s
2016-08-26 18:00:49 +02:00
s = H_apply("FCI_PT2")
2015-06-17 18:22:08 +02:00
s.set_perturbation("epstein_nesbet_2x2")
s.unset_skip()
2017-06-26 19:12:44 +02:00
s.unset_openmp()
2015-06-17 18:22:08 +02:00
print s
2016-09-28 21:14:35 +02:00
s = H_apply("FCI_no_selection")
s.set_selection_pt2("dummy")
s.unset_skip()
print s
2015-06-17 18:22:08 +02:00
s = H_apply("FCI_mono")
s.set_selection_pt2("epstein_nesbet_2x2")
2017-06-26 19:12:44 +02:00
s.unset_skip()
2015-06-17 18:22:08 +02:00
s.unset_double_excitations()
2016-02-19 00:20:28 +01:00
s.unset_openmp()
2015-06-17 18:22:08 +02:00
print s
END_SHELL