Python library for programmatic use of the Open Catalyst Demo. Users unfamiliar with the Open Catalyst Demo are encouraged to read more about it before continuing.
Ensure you have Python 3.9.1 or newer, and install ocpapi
using:
pip install ocpapi
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.
This package relies heavily on asyncio. The examples throughout this document can be copied to a python repl launched with:
$ python -m asyncio
Alternatively, an async function can be run in a script by wrapping it with asyncio.run():
import asyncio
from ocpapi import find_adsorbate_binding_sites
asyncio.run(find_adsorbate_binding_sites(...))
from 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:
- Enumerate surfaces of the bulk material
- On each surface, enumerate initial guesses for adorbate binding sites
- 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
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.
- Visit the UI at https://open-catalyst.metademolab.com/demo and explore the lists in Step 1 and Step 3.
- Use the low-level client that ships with this library:
from 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)
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:
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:
from ocpapi import AdsorbateBindingSites
with open("results.json", "r") as f:
results = AdsorbateBindingSites.from_json(f.read())
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:
urls = [
slab.ui_url
for slab in results.slabs
]
The API currently supports two models:
equiformer_v2_31M_s2ef_all_md
(default): https://arxiv.org/abs/2306.12059gemnet_oc_base_s2ef_all_md
: https://arxiv.org/abs/2204.02782
A specific model type can be requested with:
from ocpapi import find_adsorbate_binding_sites
results = await find_adsorbate_binding_sites(
adsorbate="*OH",
bulk="mp-126",
model="gemnet_oc_base_s2ef_all_md",
)
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:
from 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:
from 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 objects
Important! The to_ase_atoms()
method described below will fail with an import error if ase is not installed.
Two classes have support for generating ase.Atoms objects:
ocpapi.Atoms.to_ase_atoms()
: Adds unit cell, atomic positions, and other structural information to the returnedase.Atoms
object.ocpapi.AdsorbateSlabRelaxationResult.to_ase_atoms()
: Adds the same structure information to thease.Atoms
object. Also adds the predicted forces and energy of the relaxed structure, which can be accessed with thease.Atoms.get_potential_energy()
andase.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:
from 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()
From an ase.Atoms
object (see previous section), is is possible to write to other structure formats. Extending the example above, the ase_atoms
object could be written to a VASP POSCAR file with:
from ase.io import write
write("POSCAR", ase_atoms, "vasp")
ocpapi
is released under the MIT License.
If you use ocpapi
in your research, please consider citing the AdsorbML paper (in addition to the relevant datasets / models used):
@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},
}