Skip to content

Commit

Permalink
more docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Gubler committed Jul 12, 2024
1 parent eeecd93 commit 9d97a19
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyqint/cgf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,12 @@ def add_gto(self, c, alpha, l, m, n):

def add_spherical_gto(self, c, alpha, l, m):
"""
Add Spherical Gaussian Type Orbital to Contracted Gaussian Function
Add Spherical Gaussian Type Orbital to Contracted Gaussian Function.
l and m are the coefficients of the requested spherical harmonic function.
l must be <= 6 and -l <= m <= l.
"""
for gto in sh.spherical_harmonics[l][m]:
self.add_gto(gto[0], alpha, gto[1][0], gto[1][1], gto[1][2])
self.add_gto(gto[0] * c, alpha, gto[1][0], gto[1][1], gto[1][2])

def get_amp_f(self, x, y, z):
"""
Expand Down

0 comments on commit 9d97a19

Please sign in to comment.