/usr/share/psi/samples/psithon1/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 | #! Spectroscopic constants of H2, and the full ci cc-pVTZ level of theory
import diatomic
memory 250 mb
molecule h2{
H
H 1 R
}
energies = []
rvals = [0.65, 0.7, 0.75, 0.8, 0.85]
set {
basis cc-pvtz
d_convergence 12
e_convergence 12
r_convergence 12
}
for r in rvals:
h2.R = r
energies.append(energy('fci'))
# Since h2 is the active molecule it will be used by default in diatomic.anharmonicity
# However, if you need to provide the routine a molecule pass it as the third parameter:
# phys_const = diatomic.anharmonicity(rvals, energies, h2)
phys_consts = diatomic.anharmonicity(rvals, energies)
|