I am trying to understand whether PSI4 performs its calculations using spherical Gaussian-type orbitals (GTOs) or Cartesian GTOs. Could someone with experience in this area help clarify?
Additionally, if possible, could you provide:
The complete mathematical expressions for the p- and d-type basis functions in both Cartesian and spherical forms?
Any relevant transformation rules between the two representations (e.g., how Cartesian d-orbitals map to spherical harmonics)?
PSI4 can either use spherical harmonic type functions, or use Cartesian type functions. As far as I know, PSI4 uses spherical harmonics by default. You can check this information in PSI4 output, which would look like
-AO BASIS SET INFORMATION:
Name = STO-3G
Blend = STO-3G
Total number of shells = 5
Number of primitives = 15
Number of AO = 7
Number of SO = 7
Maximum AM = 1
Spherical Harmonics = TRUE
When using user-defined basis set in the input file, one can choose which type of functions to be used, e.g.
Note the spherical above **** means spherical harmonics. If you modify it into cartesian, Cartesian type functions would be used.
For the relationship between two types, you can find that in this blog. It is written mainly in Chinese, but I guess you can read formulae and symbols therein. Please keep in mind that blog is written using conventions in the Gaussian software package, which might not be exactly the same as conventions in PSI4, but the technique detail or spirit is supposed to be very similar.
yes I had used Al to correct my statement. I will avoid that in the future.
Thanks everyone for your reply.
I want to write H2O example in detail with each vector and matrix ( H, F, Veff, I, C, …) and how their expression change while , Psi4 handle QC of DFT.
I think the details are useful for beginners so that they do not use a tool and benefit from its results without understanding its essence.
I looked to SCF source code :
“”"
Integral generation from Psi4’s MintsHelper
wfn = psi4.core.Wavefunction.build(mol, psi4.core.get_global_option(‘BASIS’))
t = time.time()
mints = psi4.core.MintsHelper(wfn.basisset())
S = np.asarray(mints.ao_overlap())
“”"
if i am not mistake, Psi4 use cartesian formula to get overlap integral even you specify spherical harmonic basis set,
“…AO (Atomic Orbitals): Cartesian Gaussians (6D, 10F, etc.), (L + 1)(L + 2)/2 functions per shell of angular momentum L. The ordering of Cartesian exponents for a given L is given by the standard ordering…”
the same situation for Kinetic and Columbic attraction matrix:
“”"
Compute required quantities for SCF
V = np.asarray(mints.ao_potential())
T = np.asarray(mints.ao_kinetic())
I = np.asarray(mints.ao_eri())
print(‘\nTotal time taken for integrals: %.3f seconds.’ % (time.time() - t))
t = time.time()
Using AI for editing is fine. Your post looked like it was generated by AI for content-scraping, which is not allowed. In future, please explain why you’re asking questions from the start.
I suggest you look at the Psi4Numpy tutorials. I suspect that what you want to do is already done.