/usr/share/psi4/samples/fci-h2o/test.in is in psi4-data 1:1.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #! 6-31G H2O Test FCI Energy Point
refnuc = 9.2342185209120 #TEST
refscf = -75.9853236724118 #TEST
refci = -76.1210978591481 #TEST
refcorr = refci - refscf #TEST
molecule h2o {
O .0000000000 .0000000000 -.0742719254
H .0000000000 -1.4949589982 -1.0728640373
H .0000000000 1.4949589982 -1.0728640373
units bohr
}
set {
basis 6-31G
}
thisenergy = energy('fci')
# 7 digits on CI seems ok, but we may need to back it down to 6 later #TEST
compare_values(refnuc, h2o.nuclear_repulsion_energy(), 9, "Nuclear repulsion energy") #TEST
compare_values(refscf, get_variable("SCF total energy"), 8, "SCF energy") #TEST
compare_values(refci, thisenergy, 7, "CI energy") #TEST
compare_values(refcorr, get_variable("CI CORRELATION ENERGY"), 7, "CI correlation energy") #TEST
|