Halo8: a dataset of chemical reaction pathways incorporating halogen chemistry
Authors/Creators
Description
# Halo8 Database
Halo8 is a ASE-based database containing total 20,116,288 structures, each with properties computed by DFT.
You can directly access the common properties below with the following code:
Coordinates
Energy
Force
```python
from ase.db import connect
db_path = 'your/path/to/db'
with connect(db_path) as db:
for row in db.select():
atoms = row.toatoms()
coords = atoms.get_positions() # Coordinates
energy = atoms.get_potential_energy() # Energy
forces = atoms.get_forces() # Force
```
All of the extra properties below are stored in row.data and can be accessed by their keys:
dand_id
HOMO_idx
HOMO_level
LUMO_idx
LUMO_level
Mulliken_charges
Lowdin_charges
Dipole_moment
Nuclear_repulsion_energy
Electronic_energy
One_electron_energy
Two_electron_energy
Exchange_energy
Correlation_energy
Dispersion_correction
```python
from ase.db import connect
db_path = 'your/path/to/db'
with connect(db_path) as db:
for row in db.select():
your_property = row.data['keys_for_property']
```
The dand_id field follows the format: [Source]_[Formula]_rxn[XXXXX]_[Y]
- Source:
T1x(reactions from the Transition1x dataset) orHalogen(newly added halogen-containing reactions) - Formula: chemical formula of the system
- rxnXXXXX: reaction index number
- Y: structure index within a given reaction
Each reaction pathway consists of 10 images in total: 1 reactant (Y=0), 8 intermediate NEB images, and 1 product (Y=9).
The final block of 8 intermediates plus the fixed endpoints form the converged MEP.
For example, if the Y indices for a reaction are:
0 1 2 3 4 5 6 7 8 9
10 11 12 13 14 15 16 17
18 19 20 21 22 23 24 25
....
178 179 180 181 182 183 184 185
The converged MEP of this example is: 0 → 178 → 179 → 180 → 181 → 182 → 183 → 184 → 185 → 9 (10 images total)
The initial interpolation path (Y=1-8) and subsequent NEB optimization cycles (Y=10-17, 18-25, ...) are not part of the final pathway. The highest-energy image along the final MEP corresponds to the transition state.
Note that all geometries are optimized at the GFN2-xTB level and should not be interpreted as DFT-level stationary points.
Files
README.txt
Files
(47.0 GB)
| Name | Size | |
|---|---|---|
|
md5:42414f607507470da41148ed78f2ceb3
|
3.8 GB | Download |
|
md5:c61c7b5559169b067281c61d095e3683
|
3.1 GB | Download |
|
md5:1e5f21d2fffd23c7342c553ed9357b99
|
4.0 GB | Download |
|
md5:f9fdb44c5ff5a163800e3c1efaf2c214
|
5.4 GB | Download |
|
md5:4b62393d42c242c10e5e6aa741315875
|
4.0 GB | Download |
|
md5:14880d55b0855ad3574b08dc1026d322
|
5.4 GB | Download |
|
md5:1e9d7adba8f27637cb8faa5d18495661
|
5.3 GB | Download |
|
md5:b1ffe92d1a83676374d9ee8acf86272e
|
5.3 GB | Download |
|
md5:ae2f561feeba674df143992a789667e6
|
5.4 GB | Download |
|
md5:e9ba2fc5e59dc52f36811fa7f0fe5540
|
5.3 GB | Download |
|
md5:e4e8a7555aef9e0a8a923573b99bdee8
|
1.1 kB | Preview Download |