Coder Social home page Coder Social logo

smact's Introduction

DOI DOI Documentation Status License: MIT python version Code style: black PyPi Conda GitHub issues dependencies CI Status codecov PyPI - Downloads

SMACT

Semiconducting Materials from Analogy and Chemical Theory (SMACT) is a collection of rapid screening tools that uses data about chemical elements.

If you torture the data enough, nature will always confess - Roland Coase (from 'How should economists choose?')

Statement of need

There is a strong demand for functional materials across a wide range of technologies. The motivation can include cost reduction, performance enhancement, or to enable a new application. Data collections such as the Materials Project, NREL Materials Database and the Open Quantum Materials Database are valuable resources, but they largely cover the properties of known compounds as calculated using high-level quantum mechanical theories.

We have developed low-cost procedures for screening hypothetical materials in SMACT. This framework can be used for simple calculations on your own computer. SMACT follows a top-down approach where a set of element combinations is generated and then screened using rapid chemical filters. It can be used as part of a multi-technique workflow or to feed machine learning models for materials.

Getting started

SMACT's features are accessed through Python scripts, importing classes and functions as needed. The best place to start is looking at the docs, which highlight some simple examples of how these classes and functions can be used. Extended examples are available in our examples folder.

Code features

  • At the core of SMACT are Element and Species (element in a given oxidation state) classes that have various properties associated with them.

  • The various oxidation states that are accessible to each element are included in their properties.

  • Element compositions can be screened through based on the heuristic filters of charge neutrality and electronegativity order. This is handled using the screening module and this publication describes the underlying theory. An example procedure is outlined in the docs and further examples can be found in the counting examples subfolder.

  • Further filters can be applied to generated lists of compositions in order to screen for particular properties. These properties are either intrinsic properties of elements or are calculated for compositions using the properties module. For example:

  • Compositions can also be filtered based on sustainability via the abundance of elements in the Earth's crust or via the HHI scale.

  • Compositions can easily be converted for use in Pymatgen or for representation to machine learning algorithms (see "next steps" in this example).

  • The code also has some tools for manipulating common crystal lattice types:

  • Common crystal structure types can be built using the builder module

  • Lattice parameters can be quickly estimated using ionic radii of the elements for various common crystal structure types using the lattice_parameters module.

  • The lattice module and distorter module rely on the Atomic Simulation Environment and can be used to generate unique atomic substitutions on a given crystal structure.

  • The structure prediction module can be used to predict the structure of hypothetical compositions using species similarity measures.

  • The dopant prediction module can be used to facilitate high-throughput predictions of p-type and n-type dopants of multicomponent solids.

List of modules

  • smact library containing:
    • __init__.py Contains the core Element and Species classes.
    • data_loader.py Handles the loading of external data used to initialise the core smact.Element and smact.Species classes.
    • screening.py Used for generating and applying filters to compositional search spaces.
    • properties.py A collection of tools for estimating useful properties based on composition.
    • lattice.py Given the sites, multiplicities and possible oxidation states at those sites, this reads from the database and generates all possible stoichiometeries.
    • builder.py Builds some common lattice structures, given the chemical composition.
    • lattice_parameters.py Estimation of lattice parameters for various lattice types using covalent/ionic radii.
    • distorter.py A collection of functions for enumerating and then substituting on inequivalent sites of a sub-lattice.
    • oxidation_states.py: Used for predicting the likelihood of species coexisting in a compound based on a statistical model.
    • structure_prediction: A submodule which contains a collection of tools for facilitating crystal structure predictions via ionic substitutions
    • dopant_prediction: A submodule which contains a collections of tools for predicting n-type and p-type dopants.

Requirements

The main language is Python 3 and has been tested using Python 3.8+. Basic requirements are Numpy and Scipy. The Atomic Simulation Environment (ASE), spglib, and pymatgen are also required for many components.

Installation

The latest stable release of SMACT can be installed via pip which will automatically setup other Python packages as required:

pip install smact  

SMACT is also available via conda through the conda-forge channel on Anaconda Cloud:

conda install -c conda-forge smact

Alternatively, the very latest version can be installed using:

pip install git+git://github.com/WMD-group/SMACT.git

For developer installation SMACT can be installed from a copy of the source repository (https://github.com/wmd-group/smact); this will be preferred if using experimental code branches.

To clone the project from Github and make a local installation:

git clone https://github.com/wmd-group/smact.git
cd smact
pip install --user -e .

With -e pip will create links to the source folder so that that changes to the code will be immediately reflected on the PATH.

License and attribution

Python code and original data tables are licensed under the MIT License.

Development notes

Bugs, features and questions

Please use the Issue Tracker to report bugs or request features in the first instance. While we hope that most questions can be answered by searching the docs, we welcome new questions on the issue tracker, especially if they helps us improve the docs! For other queries about any aspect of the code, please contact either Dan Davies (author) or Anthony Onwuli (maintainer) by e-mail: [email protected] or [email protected] respectively.

Code contributions

We are always looking for ways to make SMACT better and more useful to the wider community; contributions are very welcome. Please use the "Fork and Pull" workflow to make contributions and stick as closely as possible to the following:

  • Code style should comply with PEP8 where possible. Google's house style is also helpful, including a good model for docstrings.
  • Please use comments liberally when adding nontrivial features, and take the chance to clean up other people's code while looking at it.
  • Add tests wherever possible, and use the test suite to check if you broke anything.

Tests

Testing modules should be pass/fail and wrapped into tests/test_core.py or another tests/test_something.py file added, if appropriate. Run the tests using python -m pytest -v. (The final -v is optional and adds more detail to the output.)

We also use integrated testing on Github via GitHub Actions.

References

D. W. Davies et al, "SMACT: Semiconducting Materials by Analogy and Chemical Theory" JOSS 4, 1361 (2019)

D. W. Davies et al, "Data-driven discovery of photoactive quaternary oxides using first-principles machine learning" Chem. Mater. 31, 7221 (2019)

D. W. Davies et al, "Materials discovery by chemical analogy: role of oxidation states in structure prediction" Faraday Discuss. 211, 553 (2018)

D. W. Davies et al, "Computer-aided design of metal chalcohalide semiconductors: from chemical composition to crystal structure" Chem. Sci. 9, 1022 (2018)

D. W. Davies et al, "Computational screening of all stoichiometric inorganic materials" Chem 1, 617 (2016)

B. R. Pamplin, "A systematic method of deriving new semiconducting compounds by structural analogy", J. Phys. Chem. Solids 25, 675 (1964)

smact's People

Contributors

antobi avatar a-ws-m avatar dandavies99 avatar dependabot[bot] avatar ajjackson avatar github-actions[bot] avatar aronwalsh avatar jiwoochloelee avatar jmskelton avatar jarvist avatar 01gaunte avatar labarba avatar mkhorton avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.