2015-06-17 18:22:08 +02:00
|
|
|
use bitmasks
|
|
|
|
BEGIN_SHELL [ /usr/bin/env python ]
|
|
|
|
from generate_h_apply import *
|
|
|
|
|
2016-02-19 00:20:28 +01:00
|
|
|
s = H_apply_zmq("FCI")
|
2015-06-17 18:22:08 +02:00
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
2016-02-19 00:20:28 +01:00
|
|
|
s.unset_openmp()
|
2015-06-17 18:22:08 +02:00
|
|
|
print s
|
|
|
|
|
2016-02-19 00:20:28 +01:00
|
|
|
s = H_apply_zmq("FCI_PT2")
|
2015-06-17 18:22:08 +02:00
|
|
|
s.set_perturbation("epstein_nesbet_2x2")
|
2016-02-19 00:20:28 +01:00
|
|
|
s.unset_openmp()
|
2015-06-17 18:22:08 +02:00
|
|
|
print s
|
|
|
|
|
2016-02-19 00:20:28 +01:00
|
|
|
s = H_apply_zmq("FCI_no_skip")
|
2015-06-17 18:22:08 +02:00
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
|
|
|
s.unset_skip()
|
2016-02-19 00:20:28 +01:00
|
|
|
s.unset_openmp()
|
2015-06-17 18:22:08 +02:00
|
|
|
print s
|
|
|
|
|
|
|
|
s = H_apply("FCI_mono")
|
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
s = H_apply("select_mono_delta_rho")
|
|
|
|
s.unset_double_excitations()
|
|
|
|
s.set_selection_pt2("delta_rho_one_point")
|
2016-02-19 00:20:28 +01:00
|
|
|
s.unset_openmp()
|
2015-06-17 18:22:08 +02:00
|
|
|
print s
|
|
|
|
|
|
|
|
s = H_apply("pt2_mono_delta_rho")
|
|
|
|
s.unset_double_excitations()
|
|
|
|
s.set_perturbation("delta_rho_one_point")
|
2016-02-19 00:20:28 +01:00
|
|
|
s.unset_openmp()
|
2015-06-17 18:22:08 +02:00
|
|
|
print s
|
|
|
|
|
|
|
|
s = H_apply("select_mono_di_delta_rho")
|
|
|
|
s.set_selection_pt2("delta_rho_one_point")
|
2016-02-19 00:20:28 +01:00
|
|
|
s.unset_openmp()
|
2015-06-17 18:22:08 +02:00
|
|
|
print s
|
|
|
|
|
|
|
|
s = H_apply("pt2_mono_di_delta_rho")
|
|
|
|
s.set_perturbation("delta_rho_one_point")
|
2016-02-19 00:20:28 +01:00
|
|
|
s.unset_openmp()
|
2015-06-17 18:22:08 +02:00
|
|
|
print s
|
|
|
|
|
|
|
|
|
|
|
|
END_SHELL
|
|
|
|
|