QM7X
QM7X
¶
Bases: BaseDataset
QM7X is a collection of almost 4.2 million conformers from 6,950 unique organic molecules. The molecules with up to seven heavy (C, N, O, S, Cl) atoms are considered from the GDB13 database. For generating conformations, OpenBabel is utilized to get an initial structure using the MMFF94 force field. Using the initial structure, meta- stable conformational isomers are generated using the Confab tool along with the MMFF94 force field. The structure is then re-optimized with density-functional tight binding (DFTB) supplemented with many-body dispersion (MBD) interactions. The lowest energy structure is then considered as the final equilibrium conformer. Additionally, non -equilibrium conformations are generated by displacing the equilibrium geometry along a linear combination of normal mode coordinates computed at the DFTB3-MBD level within the harmonic approximation. The dataset has energy values for each geometry computed at PBE0-MBD and DFTB3-MBD method.
Usage:
from openqdc.datasets import QM7X
dataset = QM7X()
Source code in openqdc/datasets/potential/qm7x.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
QM7X_V2
¶
Bases: QM7X
QM7X_V2 is an extension of the QM7X dataset containing PM6 labels for each of the 4.2M geometries.
Usage:
from openqdc.datasets import QM7X_V2
dataset = QM7X_V2()
Source code in openqdc/datasets/potential/qm7x.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|