/usr/share/psi/samples/dcft6/input.dat is in psi4-data 1:0.3-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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #! DCFT calculation for the triplet O2 using DC-06, DC-12 and CEPA0 functionals.
#! Only two-step algorithm is tested.
memory 250 mb
# DC-06
#CEPA0
molecule OO {
0 3
O
O 1 R
units bohr
R = 2.000
}
set globals {
r_convergence 12
d_convergence 12
ao_basis none
algorithm twostep
basis cc-pcvtz
reference uhf
}
set dcft_functional dc-06
energy('dcft')
set dcft_functional dc-12
energy('dcft')
set dcft_functional cepa0
energy('dcft')
|