You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Structure files generated using molSimplify (mol3D.py?) separate coordinate columns with tabs rather than spaces. See: "writexyz" and "coord_string" functions with commands like ss += "%s \t%f\t%f\t%f\n" % (atom.sym, xyz[0], xyz[1], xyz[2])", among others.
This behaviour is undesirable as:
It is inconsistent with other programs which generate structures (Avogadro, ASE).
Suggested fix:
If possible, i.e. if structure files will still work with your calculator of choice (TeraChem?), replace tab insertion with insertion of 8 spaces.
The text was updated successfully, but these errors were encountered:
Structure files generated using molSimplify (mol3D.py?) separate coordinate columns with tabs rather than spaces. See: "writexyz" and "coord_string" functions with commands like ss += "%s \t%f\t%f\t%f\n" % (atom.sym, xyz[0], xyz[1], xyz[2])", among others.
This behaviour is undesirable as:
(Orca requires coordinate columns to be space separated: https://orcaforum.kofo.mpg.de/viewtopic.php?f=11&t=11726&p=47766&hilit=xyz+syntax#p47766).
Suggested fix:
If possible, i.e. if structure files will still work with your calculator of choice (TeraChem?), replace tab insertion with insertion of 8 spaces.
The text was updated successfully, but these errors were encountered: