--- license: cc-by-nc-4.0 language: - en pretty_name: THEMol size_categories: - 1B/ mapped_nonisomeric_smiles utf-8 string mapped_isomeric_smiles utf-8 string atomic_numbers (N, 1) int32 coords (N, 3) float64 hessian (3N, 3N) float64 ``` #### Hessian Relax **CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `num_steps`, `h5_file` **HDF5 structure**: ```text // mapped_nonisomeric_smiles utf-8 string mapped_isomeric_smiles utf-8 string atomic_numbers (N, 1) int32 step 0/ energy scalar float64 coords (N, 3) float64 forces (N, 3) float64 ... step k/ energy scalar float64 coords (N, 3) float64 forces (N, 3) float64 ``` #### TorsionScan **CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `torsion_indices`, `h5_file`, `num_constraints` **HDF5 structure**: ```text // mapped_nonisomeric_smiles utf-8 string mapped_isomeric_smiles utf-8 string atomic_numbers (N, 1) int32 torsion_atom_indices (4,) int32 constraint 0/ energy scalar float64 coords (N, 3) float64 forces (N, 3) float64 constraint 1/ ... ``` #### TorsionScan Relax **CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `torsion_indices`, `h5_file`, `num_constraints`, `num_total_steps` **HDF5 structure**: ```text // mapped_nonisomeric_smiles utf-8 string mapped_isomeric_smiles utf-8 string atomic_numbers (N, 1) int32 torsion_atom_indices (4,) int32 constraint 0/ energy (M,) float64 coords (M, N, 3) float64 forces (M, N, 3) float64 constraint 1/ ... ``` Here `M` is the number of steps. #### MBIS **CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `h5_file` **HDF5 structure**: ```text // mapped_nonisomeric_smiles utf-8 string mapped_isomeric_smiles utf-8 string atomic_numbers (N, 1) int32 coords (N, 3) float64 mbis_info/ atomic_volumes (N, 1) float64 atomic_charge (N, 1) float64 atomic_dipole (N, 3) float64 atomic_quadrupole (N, 3, 3) float64 parameters (M, 3) float64 ``` Here `M` is the number of MBIS Slater functions. For `parameters`, each row contains the 0-based parent atom index, the Slater-function charge population `N_i`, and the inverse width `1/sigma_i`. ### Units | Quantity | Unit | | :--- | :--- | | Coordinates | Å | | Energy | kcal mol^-1 | | Force | kcal mol^-1 Å^-1 | | Hessian | kcal mol^-1 Å^-2 | | Charge | e | | Dipole | e Å | | Quadrupole | e Å^2 | | Volume | Å^3 | | 1/sigma_i | Å^-1 | ## Licenses [Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/). ## Citation If you use THEMol in your research or applications, please cite: ```bibtex @misc{THEMol, title={THEMol dataset: Torsion, Hessian, and Energy of Molecules}, author={Jiashu Liang and Tianze Zheng and Yu Xia and Xingyuan Xu and Xu Han and Zhi Wang and Siyuan Liu and Ailun Wang and Yu Liu and Shiqian Tan and Dongfei Liu and Zhichen Pu and Yuanheng Wang and Qiming Sun and Xiaojie Wu and Wen Yan}, year={2026}, eprint={2605.14973}, archivePrefix={arXiv}, primaryClass={physics.chem-ph}, url={https://arxiv.org/abs/2605.14973}, } ```