/usr/share/psi/samples/cc26/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 | #! Single-point gradient, analytic and via finite-differences of 2-1A1 state of H2O with EOM-CCSD
memory 250 mb
molecule h2o {
0 1
H -0.107055195862289 0.000000000000000 -1.832806614599657
O -0.107055195862289 0.000000000000000 0.094714436481352
H 1.806098405595803 0.000000000000000 0.329620161376194
units bohr
}
set {
basis DZ
roots_per_irrep [1, 0, 0, 0]
}
gradient('eom-ccsd')
analytic_grad = psi4.get_gradient()
gradient('eom-ccsd', dertype=0)
findif_grad = psi4.get_gradient()
# Use 5-pt. formula
set findif points 5
gradient('eom-ccsd', dertype=0)
findif_grad = psi4.get_gradient()
|