We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0090e9 commit cdf333bCopy full SHA for cdf333b
src/pymatgen/io/jdftx/inputs.py
@@ -1223,7 +1223,7 @@ def from_jdftxinfile(
1223
]
1224
coords_are_cartesian = False # is default for JDFTx
1225
if "coords-type" in jdftxinfile:
1226
- coords_are_cartesian = jdftxinfile["coords-type"] == "Cartesian"
+ coords_are_cartesian = jdftxinfile["coords-type"].lower() == "cartesian"
1227
if coords_are_cartesian:
1228
coords *= bohr_to_ang
1229
if not _allnone(velocities):
0 commit comments