10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-30 00:44:28 +02:00
quantum_package/src/Full_CI/H_apply.irp.f

42 lines
788 B
FortranFixed
Raw Normal View History

2014-05-28 23:12:00 +02:00
use bitmasks
BEGIN_SHELL [ /usr/bin/env python ]
from generate_h_apply import *
2014-06-06 16:19:14 +02:00
s = H_apply("FCI")
2014-07-16 14:03:05 +02:00
s.set_selection_pt2("epstein_nesbet_2x2")
2014-05-28 23:12:00 +02:00
print s
2014-06-06 16:19:14 +02:00
s = H_apply("FCI_PT2")
2014-07-16 14:03:05 +02:00
s.set_perturbation("epstein_nesbet_2x2")
print s
2015-03-19 21:14:52 +01:00
2015-03-24 09:39:13 +01:00
if False:
s = H_apply("FCI_mono")
s.set_selection_pt2("epstein_nesbet_2x2")
s.unset_double_excitations()
print s
2015-03-19 21:14:52 +01:00
2015-03-24 09:39:13 +01:00
s = H_apply("select_mono_delta_rho")
s.unset_double_excitations()
s.set_selection_pt2("delta_rho_one_point")
print s
2015-03-19 21:14:52 +01:00
2015-03-24 09:39:13 +01:00
s = H_apply("pt2_mono_delta_rho")
s.unset_double_excitations()
s.set_perturbation("delta_rho_one_point")
print s
2015-03-19 21:14:52 +01:00
s = H_apply("select_mono_di_delta_rho")
s.set_selection_pt2("delta_rho_one_point")
print s
s = H_apply("pt2_mono_di_delta_rho")
s.set_perturbation("delta_rho_one_point")
print s
2014-05-28 23:12:00 +02:00
END_SHELL