Skip to content

antonboev22/interface_constructor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contents

About

Interface Constructor is a Python library for automated construction and analysis of coherent interfaces between two crystalline solids.

The package provides:

lattice matching based on Miller indices

strain evaluation using the von Mises criterion

automated slab and interface generation

physical filtering (surface density, charge balance, size limits)

high-throughput–ready workflow

It is designed for computational materials science studies, including thin films, coatings, and solid–solid interfaces.

Installation

git clone https://github.com/cmg-storion/interface_constructor
cd interface_constructor
pip install .

Examples

Example workflows and notebooks are provided in the examples/ directory.

Typical usage:

from pymatgen.core import Structure from interface_constructor import InterfaceConstructor, InterfaceConfig

substrate = Structure.from_file("substrate.cif") film = Structure.from_file("film.cif")

config = InterfaceConfig()

ic = InterfaceConstructor(substrate, film, config)

matches = ic.run_matching() metadata, interfaces = ic.build_all_interfaces() ic.save_summary_csv()

About

Script for interface construction based on pymatgen

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published