atomistics

Interfaces for atomistic simulation codes and workflows

https://github.com/pyiron/atomistics

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.2%) to scientific vocabulary

Keywords

abinit ase gpaw lammps materials-science quantum-espresso siesta
Last synced: 4 months ago · JSON representation ·

Repository

Interfaces for atomistic simulation codes and workflows

Basic Info
Statistics
  • Stars: 8
  • Watchers: 7
  • Forks: 4
  • Open Issues: 34
  • Releases: 47
Topics
abinit ase gpaw lammps materials-science quantum-espresso siesta
Created over 2 years ago · Last pushed 4 months ago
Metadata Files
Readme License Code of conduct Citation Codeowners

README.md

atomistics

Pipeline codecov Binder

The atomistics package consists of two primary components. On the one hand it provides interfaces to atomistic simulation codes - named calculators. The supported simulation codes in alphabetical order are:

  • Abinit - Plane wave density functional theory
  • EMT - Effective medium theory potential
  • GPAW - Density functional theory Python code based on the projector-augmented wave method
  • LAMMPS - Molecular Dynamics
  • Quantum Espresso - Integrated suite of Open-Source computer codes for electronic-structure calculations
  • Siesta - Electronic structure calculations and ab initio molecular dynamics
  • SPHInX - Plane wave DFT with interactive tools, charged defect correction and spin constraints

For majority of these simulation codes the atomistics package use the Atomic Simulation Environment to interface the underlying C/ C++ and Fortran Codes with the Python programming language. Still this approach limits the functionality of the simulation code to calculating the energy and forces, so by adding custom interfaces the atomistics package can support built-in features of the simulation code like structure optimization and molecular dynamics.

On the other hand the atomistics package also provides workflows to calculate material properties on the atomistic scales, these include:

  • Equation of State - to calculate equilibrium properties like the equilibrium energy, equilibrium volume, equilibrium bulk modulus and its pressure derivative.
  • Elastic Matrix - to calculate the elastic constants and elastic moduli.
  • Harmonic and Quasi-harmonic Approximation - to calculate the density of states, vibrational free energy and thermal expansion based on the finite displacements method implemented in phonopy.
  • Molecular Dynamics - to calculate finite temperature properties like thermal expansion including the anharmonic contributions.

All these workflows can be coupled with all the simulation codes implemented in the atomistics package. In contrast to the Atomic Simulation Environment which provides similar functionality the focus of the atomistics package is not to reimplement existing functionality but rather simplify the process of coupling existing simulation codes with existing workflows. Here the phonopy workflow is a great example to enable the calculation of thermodynamic properties with the harmonic and quasi-harmonic approximation.

Example

Use the equation of state to calculate the equilibrium properties like the equilibrium volume, equilibrium energy, equilibrium bulk modulus and its derivative using the GPAW simulation code

```python from ase.build import bulk from atomistics.workflows import gettasksforenergyvolume_curve

taskdict = gettasksforenergyvolumecurve( structure=bulk("Al", a=4.05, cubic=True), numpoints=11, volrange=0.05, axes=['x', 'y', 'z'], ) print(task_dict)

{'calc_energy': OrderedDict([ (0.95, Atoms(symbols='Al4', pbc=True, cell=[3.9813426685908118, 3.9813426685908118, 3.9813426685908118])), (0.96, Atoms(symbols='Al4', pbc=True, cell=[3.9952635604153612, 3.9952635604153612, 3.9952635604153612])), (0.97, Atoms(symbols='Al4', pbc=True, cell=[4.009088111958974, 4.009088111958974, 4.009088111958974])), (0.98, Atoms(symbols='Al4', pbc=True, cell=[4.022817972936038, 4.022817972936038, 4.022817972936038])), (0.99, Atoms(symbols='Al4', pbc=True, cell=[4.036454748321015, 4.036454748321015, 4.036454748321015])), (1.0, Atoms(symbols='Al4', pbc=True, cell=[4.05, 4.05, 4.05])), (1.01, Atoms(symbols='Al4', pbc=True, cell=[4.063455248345461, 4.063455248345461, 4.063455248345461])), (1.02, Atoms(symbols='Al4', pbc=True, cell=[4.076821973718458, 4.076821973718458, 4.076821973718458])), (1.03, Atoms(symbols='Al4', pbc=True, cell=[4.0901016179023415, 4.0901016179023415, 4.0901016179023415])), (1.04, Atoms(symbols='Al4', pbc=True, cell=[4.1032955854717175, 4.1032955854717175, 4.1032955854717175])), (1.05, Atoms(symbols='Al4', pbc=True, cell=[4.1164052451001565, 4.1164052451001565, 4.1164052451001565])) ])} ```

In the first step the EnergyVolumeCurveWorkflow object is initialized including all the parameters to generate the strained structures and afterwards fit the resulting energy volume curve. This allows the user to see all relevant parameters at one place. After the initialization the function generate_structures() is called without any additional parameters. This function returns the task dictionary task_dict which includes the tasks which should be executed by the calculator. In this case the task is to calculate the energy calc_energy of the eleven generated structures. Each structure is labeled by the ratio of compression or elongation. In the second step the task_dict is evaluate with the GPAW simulation code using the evaluate_with_ase() function: ```python from atomistics.calculators import evaluatewithase from gpaw import GPAW, PW

resultdict = evaluatewithase( taskdict=taskdict, asecalculator=GPAW( xc="PBE", mode=PW(300), kpts=(3, 3, 3) ) ) print(result_dict)

{'energy': { 0.95: -14.895378072824752, 0.96: -14.910819737657118, 0.97: -14.922307241122466, 0.98: -14.930392279321056, 0.99: -14.935048569964911, 1.0: -14.936666396364169, 1.01: -14.935212782128556, 1.02: -14.931045138839849, 1.03: -14.924165445706581, 1.04: -14.914703574005678, 1.05: -14.902774559134226 }} In analogy to the `task_dict` which defines the tasks to be executed by the simulation code the `result_dict` summarizes the results of the calculations. In this case the energies calculated for the specific strains. By ordering both the `task_dict` and the `result_dict` with the same labels, the `EnergyVolumeCurveWorkflow` object is able to match the calculation results to the corresponding structure. Finally, in the third step the `analyse_structures()` function takes the `result_dict` as an input and fits the Equation of State with the fitting parameters defined in the first step: python from atomistics.workflows import analyseresultsforenergyvolume_curve

fitdict = analyseresultsforenergyvolumecurve( outputdict=resultdict, taskdict=taskdict, fittype='polynomial', fitorder=3, ) print(fit_dict)

{'polyfit': array([-9.30297838e-05, 2.19434659e-02, -1.68388816e+00, 2.73605421e+01]), 'fittype': 'polynomial', 'fitorder': 3, 'volumeeq': 66.44252286131888, 'energyeq': -14.93670322204575, 'bulkmoduleq': 72.38919826304497, 'bprimeeq': 4.45383655040775, 'leastsquareerror': 4.432974529908853e-09, 'volume': [63.10861874999998, 63.77291999999998, ..., 69.75163125000002], 'energy': [-14.895378072824752, -14.910819737657118, ..., -14.902774559134226] } `` As a result the equilibrium parameters are returned plus the parameters of the polynomial and the set of volumes and energies which were fitted to achieve these results. The important step here is that while the interface between the first and the second as well as between the second and the third step is clearly defined independent of the specific workflow, the initial parameters for the workflow to initialize theEnergyVolumeCurveWorkflowobject as well as the final output of thefit_dict` are workflow specific.

Disclaimer

While we try to develop a stable and reliable software library, the development remains a opensource project under the BSD 3-Clause License without any warranties: ``` BSD 3-Clause License

Copyright (c) 2023, Jan Janssen All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  • Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ```

Documentation

Owner

  • Name: pyiron
  • Login: pyiron
  • Kind: organization

pyiron - an integrated development environment (IDE) for materials science.

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Janssen"
  given-names: "Jan"
  orcid: "https://orcid.org/0000-0001-9948-7119"
- family-names: "Surendralal"
  given-names: "Sudarsan"
  orcid: "https://orcid.org/0000-0003-0362-7549"
- family-names: "Lysogorskiy"
  given-names: "Yury"
  orcid: "https://orcid.org/000-0003-4617-3188"
- family-names: "Todorova"
  given-names: "Mira"
  orcid: "https://orcid.org/0000-0002-8053-9350"
- family-names: "Hickel"
  given-names: "Tilmann"
  orcid: "https://orcid.org/0000-0003-0698-4891"
- family-names: "Drautz"
  given-names: "Ralf"
  orcid: "https://orcid.org/0000-0001-7101-8804"
- family-names: "Neugebauer"
  given-names: "Joerg"
  orcid: "https://orcid.org/0000-0002-7903-2472"
title: "pyiron: An integrated development environment for computational materials science"
version: 0.1.8
doi: 10.1016/j.commatsci.2018.07.043
date-released: 2019-06-01
license: "BSD-3-Clause"
url: "http://github.com/pyiron"

GitHub Events

Total
  • Create event: 159
  • Issues event: 6
  • Release event: 9
  • Watch event: 1
  • Delete event: 139
  • Issue comment event: 299
  • Push event: 475
  • Pull request review event: 70
  • Pull request review comment event: 55
  • Pull request event: 338
  • Fork event: 1
Last Year
  • Create event: 159
  • Issues event: 6
  • Release event: 9
  • Watch event: 1
  • Delete event: 139
  • Issue comment event: 299
  • Push event: 475
  • Pull request review event: 70
  • Pull request review comment event: 55
  • Pull request event: 338
  • Fork event: 1

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 16
  • Total pull requests: 319
  • Average time to close issues: 4 months
  • Average time to close pull requests: 3 days
  • Total issue authors: 4
  • Total pull request authors: 5
  • Average comments per issue: 0.44
  • Average comments per pull request: 1.16
  • Merged pull requests: 222
  • Bot issues: 0
  • Bot pull requests: 184
Past Year
  • Issues: 5
  • Pull requests: 166
  • Average time to close issues: about 3 hours
  • Average time to close pull requests: 3 days
  • Issue authors: 2
  • Pull request authors: 4
  • Average comments per issue: 0.0
  • Average comments per pull request: 1.44
  • Merged pull requests: 107
  • Bot issues: 0
  • Bot pull requests: 114
Top Authors
Issue Authors
  • jan-janssen (6)
  • samwaseda (5)
  • liamhuber (4)
  • srmnitc (1)
Pull Request Authors
  • dependabot[bot] (130)
  • jan-janssen (127)
  • pre-commit-ci[bot] (54)
  • samwaseda (5)
  • liamhuber (3)
Top Labels
Issue Labels
bug (1)
Pull Request Labels
dependencies (129) python (34) format_black (15)

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 2,545 last-month
  • Total dependent packages: 4
  • Total dependent repositories: 0
  • Total versions: 49
  • Total maintainers: 2
pypi.org: atomistics

Interfaces for atomistic simulation codes and workflows

  • Homepage: https://github.com/pyiron/atomistics
  • Documentation: https://atomistics.readthedocs.io
  • License: BSD 3-Clause License Copyright (c) 2023, pyiron All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  • Latest release: 0.2.5
    published 9 months ago
  • Versions: 49
  • Dependent Packages: 4
  • Dependent Repositories: 0
  • Downloads: 2,545 Last month
Rankings
Dependent packages count: 7.5%
Average: 38.6%
Dependent repos count: 69.6%
Maintainers (2)
Last synced: 4 months ago

Dependencies

.github/workflows/black.yml actions
  • actions/checkout v2 composite
  • psf/black stable composite
.github/workflows/deploy.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • pypa/gh-action-pypi-publish master composite
.github/workflows/pypicheck.yml actions
  • actions/checkout v2 composite
  • conda-incubator/setup-miniconda v2 composite
.github/workflows/unittests-mpich.yml actions
  • actions/checkout v2 composite
  • conda-incubator/setup-miniconda v2 composite
.github/workflows/unittests-openmpi.yml actions
  • actions/checkout v2 composite
  • conda-incubator/setup-miniconda v2 composite
setup.py pypi
  • ase ==3.22.1
  • numpy ==1.23.5
  • scipy ==1.11.1
  • spglib ==2.0.2