-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
211 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
# ocpapi | ||
|
||
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/Open-Catalyst-Project/ocpapi/tree/main.svg?style=shield)](https://dl.circleci.com/status-badge/redirect/gh/Open-Catalyst-Project/ocpapi/tree/main) [![codecov](https://codecov.io/gh/Open-Catalyst-Project/ocpapi/graph/badge.svg?token=66Z7Y7QUUW)](https://codecov.io/gh/Open-Catalyst-Project/ocpapi) | ||
|
||
Python library for programmatic use of the [Open Catalyst Demo](https://open-catalyst.metademolab.com/). Users unfamiliar with the Open Catalyst Demo are encouraged to read more about it before continuing. | ||
|
||
## Installation | ||
|
||
Ensure you have Python 3.9.1 or newer, and install `ocpapi` using: | ||
|
||
```sh | ||
pip install ocpapi | ||
``` | ||
|
||
## Quickstart | ||
|
||
The following examples are used to search for *OH binding sites on Pt surfaces. They use the `find_adsorbate_binding_sites` function, which is a high-level workflow on top of other methods included in this library. Once familiar with this routine, users are encouraged to learn about lower-level methods and features that support more advanced use cases. | ||
|
||
### Note about async methods | ||
|
||
This package relies heavily on [asyncio](https://docs.python.org/3/library/asyncio.html). The examples throughout this document can be copied to a python repl launched with: | ||
```sh | ||
$ python -m asyncio | ||
``` | ||
Alternatively, an async function can be run in a script by wrapping it with [asyncio.run()](https://docs.python.org/3/library/asyncio-runner.html#asyncio.run): | ||
```python | ||
import asyncio | ||
from fairchem.demo.ocpapi import find_adsorbate_binding_sites | ||
|
||
asyncio.run(find_adsorbate_binding_sites(...)) | ||
``` | ||
|
||
### Search over all surfaces | ||
|
||
```python | ||
from fairchem.demo.ocpapi import find_adsorbate_binding_sites | ||
|
||
results = await find_adsorbate_binding_sites( | ||
adsorbate="*OH", | ||
bulk="mp-126", | ||
) | ||
``` | ||
|
||
Users will be prompted to select one or more surfaces that should be relaxed. | ||
|
||
Input to this function includes: | ||
|
||
* The name of the adsorbate to place | ||
* A unique ID of the bulk structure from which surfaces will be generated | ||
|
||
This function will perform the following steps: | ||
|
||
1. Enumerate surfaces of the bulk material | ||
2. On each surface, enumerate initial guesses for adorbate binding sites | ||
3. Run local force-based relaxations of each adsorbate placement | ||
|
||
In addition, this handles: | ||
|
||
* Retrying failed calls to the Open Catalyst Demo API | ||
* Retrying submission of relaxations when they are rate limited | ||
|
||
This should take 2-10 minutes to finish while tens to hundreds (depending on the number of surfaces that are selected) of individual adsorbate placements are relaxed on unique surfaces of Pt. Each of the objects in the returned list includes (among other details): | ||
|
||
* Information about the surface being searched, including its structure and Miller indices | ||
* The initial positions of the adsorbate before relaxation | ||
* The final structure after relaxation | ||
* The predicted energy of the final structure | ||
* The predicted force on each atom in the final structure | ||
|
||
|
||
### Supported bulks and adsorbates | ||
|
||
A finite set of bulk materials and adsorbates can be referenced by ID throughout the OCP API. The lists of supported values can be viewed in two ways. | ||
|
||
1. Visit the UI at https://open-catalyst.metademolab.com/demo and explore the lists in Step 1 and Step 3. | ||
2. Use the low-level client that ships with this library: | ||
```python | ||
from fairchem.demo.ocpapi import Client | ||
|
||
client = Client() | ||
|
||
bulks = await client.get_bulks() | ||
print({b.src_id: b.formula for b in bulks.bulks_supported}) | ||
|
||
adsorbates = await client.get_adsorbates() | ||
print(adsorbates.adsorbates_supported) | ||
``` | ||
|
||
|
||
### Persisting results | ||
|
||
**Results should be saved whenever possible in order to avoid expensive recomputation.** | ||
|
||
Assuming `results` was generated with the `find_adsorbate_binding_sites` method used above, it is an `AdsorbateBindingSites` object. This can be saved to file with: | ||
|
||
```python | ||
with open("results.json", "w") as f: | ||
f.write(results.to_json()) | ||
``` | ||
|
||
Similarly, results can be read back from file to an `AdsorbateBindingSites` object with: | ||
|
||
```python | ||
from fairchem.demo.ocpapi import AdsorbateBindingSites | ||
|
||
with open("results.json", "r") as f: | ||
results = AdsorbateBindingSites.from_json(f.read()) | ||
``` | ||
|
||
### Viewing results in the web UI | ||
|
||
Relaxation results can be viewed in a web UI. For example, https://open-catalyst.metademolab.com/results/7eaa0d63-83aa-473f-ac84-423ffd0c67f5 shows the results of relaxing *OH on a Pt (1,1,1) surface; the uuid, "7eaa0d63-83aa-473f-ac84-423ffd0c67f5", is referred to as the `system_id`. | ||
|
||
Extending the examples above, the URLs to visualize the results of relaxations on each Pt surface can be obtained with: | ||
```python | ||
urls = [ | ||
slab.ui_url | ||
for slab in results.slabs | ||
] | ||
``` | ||
|
||
## Advanced usage | ||
|
||
### Changing the model type | ||
|
||
The API currently supports two models: | ||
* `equiformer_v2_31M_s2ef_all_md` (default): https://arxiv.org/abs/2306.12059 | ||
* `gemnet_oc_base_s2ef_all_md`: https://arxiv.org/abs/2204.02782 | ||
|
||
A specific model type can be requested with: | ||
```python | ||
from fairchem.demo.ocpapi import find_adsorbate_binding_sites | ||
|
||
results = await find_adsorbate_binding_sites( | ||
adsorbate="*OH", | ||
bulk="mp-126", | ||
model="gemnet_oc_base_s2ef_all_md", | ||
) | ||
``` | ||
|
||
### Skip relaxation approval prompts | ||
|
||
Calls to `find_adsorbate_binding_sites()` will, by default, show the user all pending relaxations and ask for approval before they are submitted. In order to run the relaxations automatically without manual approval, `adslab_filter` can be set to a function that automatically approves any or all adsorbate/slab (adslab) configurations. | ||
|
||
Run relaxations for all slabs that are generated: | ||
```python | ||
from fairchem.demo.ocpapi import find_adsorbate_binding_sites, keep_all_slabs | ||
|
||
results = await find_adsorbate_binding_sites( | ||
adsorbate="*OH", | ||
bulk="mp-126", | ||
adslab_filter=keep_all_slabs(), | ||
) | ||
``` | ||
|
||
Run relaxations only for slabs with Miller Indices in the input set: | ||
```python | ||
from fairchem.demo.ocpapi import find_adsorbate_binding_sites, keep_slabs_with_miller_indices | ||
|
||
results = await find_adsorbate_binding_sites( | ||
adsorbate="*OH", | ||
bulk="mp-126", | ||
adslab_filter=keep_slabs_with_miller_indices([(1, 0, 0), (1, 1, 1)]), | ||
) | ||
``` | ||
|
||
### Converting to [ase.Atoms](https://wiki.fysik.dtu.dk/ase/ase/atoms.html) objects | ||
|
||
**Important! The `to_ase_atoms()` method described below will fail with an import error if [ase](https://wiki.fysik.dtu.dk/ase) is not installed.** | ||
|
||
Two classes have support for generating [ase.Atoms](https://wiki.fysik.dtu.dk/ase/ase/atoms.html) objects: | ||
* `ocpapi.Atoms.to_ase_atoms()`: Adds unit cell, atomic positions, and other structural information to the returned `ase.Atoms` object. | ||
* `ocpapi.AdsorbateSlabRelaxationResult.to_ase_atoms()`: Adds the same structure information to the `ase.Atoms` object. Also adds the predicted forces and energy of the relaxed structure, which can be accessed with the `ase.Atoms.get_potential_energy()` and `ase.Atoms.get_forces()` methods. | ||
|
||
For example, the following would generate an `ase.Atoms` object for the first relaxed adsorbate configuration on the first slab generated for *OH binding on Pt: | ||
```python | ||
from fairchem.demo.ocpapi import find_adsorbate_binding_sites | ||
|
||
results = await find_adsorbate_binding_sites( | ||
adsorbate="*OH", | ||
bulk="mp-126", | ||
) | ||
|
||
ase_atoms = results.slabs[0].configs[0].to_ase_atoms() | ||
``` | ||
|
||
### Converting to other structure formats | ||
|
||
From an `ase.Atoms` object (see previous section), is is possible to [write to other structure formats](https://wiki.fysik.dtu.dk/ase/ase/io/io.html#ase.io.write). Extending the example above, the `ase_atoms` object could be written to a [VASP POSCAR file](https://www.vasp.at/wiki/index.php/POSCAR) with: | ||
```python | ||
from ase.io import write | ||
|
||
write("POSCAR", ase_atoms, "vasp") | ||
``` | ||
|
||
## License | ||
|
||
`ocpapi` is released under the [MIT License](LICENSE). | ||
|
||
## Citing `ocpapi` | ||
|
||
If you use `ocpapi` in your research, please consider citing the [AdsorbML paper](https://www.nature.com/articles/s41524-023-01121-5) (in addition to the relevant datasets / models used): | ||
|
||
```bibtex | ||
@article{lan2023adsorbml, | ||
title={{AdsorbML}: a leap in efficiency for adsorption energy calculations using generalizable machine learning potentials}, | ||
author={Lan*, Janice and Palizhati*, Aini and Shuaibi*, Muhammed and Wood*, Brandon M and Wander, Brook and Das, Abhishek and Uyttendaele, Matt and Zitnick, C Lawrence and Ulissi, Zachary W}, | ||
journal={npj Computational Materials}, | ||
year={2023}, | ||
} | ||
``` |