iodata.formats.wfn module¶
Gaussian/GAMESS-US WFN file format.
Only use this format if the program that generated it does not offer any alternatives that HORTON can load. The WFN format has the disadvantage that it cannot represent contractions and therefore expands all orbitals into a decontracted basis. This makes the post-processing less efficient compared to formats that do support contractions of Gaussian functions.
- build_obasis(icenters, type_assignments, exponents, lit)[source]¶
Construct a basis set using the arrays read from a WFN or WFX file.
- Parameters:
icenters (
ndarray
[Any
,dtype
[int
]]) – The center indices for all basis functions. shape=(nbasis,). Lowest index is zero.type_assignments (
ndarray
[Any
,dtype
[int
]]) – Integer codes for basis function names. shape=(nbasis,). Lowest index is zero.exponents (
ndarray
[Any
,dtype
[float
]]) – The Gaussian exponents of all basis functions. shape=(nbasis,)
- Return type:
- get_mocoeff_scales(obasis)[source]¶
Get the L2-normalization of the un-normalized Cartesian basis functions.
- Parameters:
obasis (
MolecularBasis
) – The molecular orbital basis.- Return type:
- Returns:
Scaling factors to be multiplied into the molecular orbital coefficients.
- load_one(lit)[source]¶
Load a single frame from a WFN file.
- Parameters:
lit (
LineIterator
) – The line iterator to read the data from.- Return type:
- Returns:
result (dict) – A dictionary with IOData attributes. The following attributes are guaranteed to be loaded:
atcoords
,atnums
,energy
,mo
,obasis
,title
,extra
.
- load_wfn_low(lit)[source]¶
Load data from a WFN file into arrays.
- Parameters:
lit (
LineIterator
) – The line iterator to read the data from.- Return type:
- prepare_dump(data, allow_changes, filename)[source]¶
Check the compatibility of the IOData object with the WFN format.
- Parameters:
- Return type:
- Returns:
data – The given
IOData
object or a shallow copy with some new attributes.- Raises:
PrepareDumpError – If the given
IOData
instance is not compatible with the WFN format.PrepareDumpWarning – If the a converted
IOData
instance is returned.