Class BasisSet
namedtuple("BasisSet", ("name", "backup", "nstar", "nplus", "is_ecp", "is_ps", "numd", "numf")) --+
|
BasisSet
A Pythonic wrapper for basis set information.
|
__new__(cls,
name,
backup,
nstar,
nplus,
is_ecp,
is_ps,
numd,
numf)
Create a BasisSet object using the return values from
mm.mmjag_basis_get(). |
|
|
str
|
backup
The basis set used for non-effective-core-potential atoms
|
bool
|
is_ecp
Does this basis set use effective core potentials on heavy atoms?
|
bool
|
is_ps
Is this basis set pseudospectral?
|
str
|
name
The name of the basis set
|
int
|
nplus
The availability of diffuse functions
|
int
|
nstar
The availability of polarization functions
|
int
|
numd
The number of d functions
|
int
|
numf
The number of f functions
|