Loading...
API key required. Sign up for an Ouro account and create an API key to get started.
/thermo/ehull
Calculate the energy above the convex hull (eV/atom) of a material
const url = 'https://api.ouro.foundation/routes/hermes/thermo/ehull';
const options = {
method: 'POST',
headers: {
'Authorization': 'ApiKey {your-ouro-api-key}',
'Content-Type': 'application/json'
}
};
const payload = {
"file": {
"url": "example_string",
"filename": "example_string"
}
};
options.body = JSON.stringify(payload);
fetch(url, options)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Calculate the energy above the convex hull (eV/atom) of a material
How this route is connected to other assets
Last week we introduced a few new routes to the Materials Science API from . This work is part of a broader effort to create a suite of tools that eventually can be commanded by an AI agent for automa
Discover other routes like this one
Predict the Curie temperature of a material
Create a supercell from a material
Relax a material structure