8000 GitHub - janosh/dielectrics: Pushing the Pareto front of band gap and permittivity with ML-guided dielectric materials discovery incl. experimental synthesis and characterization.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Pushing the Pareto front of band gap and permittivity with ML-guided dielectric materials discovery incl. experimental synthesis and characterization.

License

Notifications You must be signed in to change notification settings

janosh/dielectrics

Repository files navigation

ML-Guided of High-Performance Dielectric Materials

Cell Reports Physical Science arXiv Zenodo Requires Python 3.10+ GitHub repo size Pareto Plot

This repo implements a dielectric materials discovery workflow that integrates ML as the first filter in a multi-step funnel. We use surrogate models for band gaps, dielectric constants, and formation energies. Instead of exact Cartesian coordinates, we use Wyckoff positions as ML inputs for a coordinate-free, coarse-grained crystal structure representation. This enables rapid generation, stability prediction and property screening of novel structures through elemental substitutions. Following DFPT validation of the most promising candidates, the last selection step is an expert committee to incorporate human intuition when weighing the risks, precursor availability and ease of experimental synthesis of high-expected-reward materials. We validate the workflow by feeding it 135k generated structures as well as Materials Project and WBM materials which are ML-screened down to 2.7k DFPT calculations. Our deployment culminated in making and characterizing two new metastable materials in the process: CsTaTeO6 and Bi2Zr2O7 which partially and fully satisfy our target metrics, respectively.

Interactive Pareto Front Plot

The most interesting materials in our dataset are viewable in an interactive Plotly scatter plot at

https://janosh.github.io/dielectrics

Database Access

Read-only credentials for MongoDB Atlas M2 instance holding 2.7k DFPT results:

host: mongodb+srv://atomate-cluster.q8s9p.mongodb.net
port: 27017
database: dielectrics
collection: tasks
readonly_user: readonly
readonly_password: kHsBcWwTb4

Example Python code using pymongo to filter our 2.7k DFPT results for all materials with figure or merit $\Phi_\text{M} > 200$ (defined as $\Phi_\text{M} = E_\text{gap} \cdot \epsilon_\text{total}$) and $E_\text{hull-dist} < 0.05\ \text{eV}$:

from pymongo import MongoClient

cluster = "atomate-cluster.q8s9p.mongodb.net/atomate"
server = f"mongodb+srv://readonly:kHsBcWwTb4@{cluster}"
db = MongoClient(server).dielectrics
close_to_hull_high_fom = db.tasks.find({
  "e_above_hull_pbe": {"$lt": 0.1},
  "output.bandgap": { "$gt": 3 },
  "output.epsilon_static.0.0": { "$gt": 10 },
  "output.epsilon_ionic.0.0": { "$gt": 50 },
})

How to Cite

@article{riebesell_discovery_2024,
  title = {Discovery of high-performance dielectric materials with machine-learning-guided search},
  author = {Riebesell, Janosh and Surta, Todd Wesley and Goodall, Rhys Edward Andrew and Gaultois, Michael William and Lee, Alpha Albert},
  doi = {10.1016/j.xcrp.2024.102241},
  url = {https://cell.com/cell-reports-physical-science/abstract/S2666-3864(24)00546-0},
  journaltitle = {Cell Reports Physical Science},
  issn = {2666-3864},
  volume = {5},
  number = {10},
  date = {2024-10-16},
  note = {Publisher: Elsevier},
}

About

Pushing the Pareto front of band gap and permittivity with ML-guided dielectric materials discovery incl. experimental synthesis and characterization.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  
0