Skip to content

Commit c94e995

Browse files
committed
a bit of a cleanup
1 parent 8c6ae1a commit c94e995

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

src/nomad_simulations/schema_packages/basis_set.py

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,9 @@ def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None:
187187

188188
class AtomCenteredFunction(ArchiveSection):
189189
"""
190-
Specifies a single function (term) in a Gaussian-type basis set.
191-
Cartesian Gaussian-type orbitals (GTOs)
190+
Specifies a single function (term) in an atom-centered basis set.
192191
"""
193192

194-
# TODO: add a quantity for spherical-harmonic or Cartesian angular functions
195-
# Most of the codes use only spherical harmonic.
196-
197193
basis_type = Quantity(
198194
type=MEnum(
199195
'spherical',
@@ -206,18 +202,18 @@ class AtomCenteredFunction(ArchiveSection):
206202
)
207203

208204
function_type = Quantity(
209-
type=MEnum('s', 'p', 'd', 'f', 'g', 'h', 'i', 'j'),
205+
type=MEnum('s', 'p', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l'),
210206
description="""
211-
the l value:
212-
l = i + j + k
213-
the angular momentum of GTO to be added.
207+
L=a+b+c
208+
The angular momentum of GTO to be added.
214209
""",
215210
)
216211

217212
n_primitive = Quantity(
218213
type=np.int32,
219214
description="""
220215
Number of primitives.
216+
Linear combinations of the primitive Gaussians are formed to approximate the radial extent of an STO.
221217
""",
222218
)
223219

0 commit comments

Comments
 (0)