/usr/share/psi4/samples/scf-guess-read1/input.dat 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 | #! Sample UHF/cc-pVDZ H2O computation on a doublet cation, using
#! RHF/cc-pVDZ orbitals for the closed-shell neutral as a guess
molecule h2o {
O
H 1 0.96
H 1 0.96 2 104.5
}
set scf d_convergence 6
set basis cc-pVDZ
energy('scf')
clean()
h2o.set_multiplicity(2)
h2o.set_molecular_charge(1)
set scf reference uhf
set scf guess read
energy('scf')
|