tmol
parse_tmol_file(filename)
Convert a provided turbomole coord file into an array of atomic numbers and cartesian positions
Parameters
filename: str path to the turbomole file to read
Returns
tuple of :obj:np.ndarray
array of (N) atomic numbers and (N, 3) Cartesian positions
read from the given file
Source code in chmpy/fmt/tmol.py
parse_tmol_string(contents, filename=None)
Convert provided turbomole coord file contents into an array of atomic numbers and cartesian positions
Parameters
contents: str text contents of the .xyz file to read
Returns
tuple of :obj:np.ndarray
array of (N) atomic numbers and (N, 3) Cartesian positions
read from the given file