A wrapper for using AIRSS with python and ase.
Project description
airsspy
A package to help working with the Ab initio Random Structure Searching (AIRSS) using Atomic simulation environment (ase). Supports building a search seed for AIRSS in a interactive python environments. One of the important steps for performing a successful search with AIRSS is to have sensible seed for generating random structures, which are subsequently relaxed using the method of choice. In general, AIRSS only relies on a few simple parameters to generate random structure, such as numbers of atoms, numbers of species and cell volume. However, for complicated search involving surfaces and/or interfaces, hand-building seed files becomes a tedious or impossible job to do. ASE has a suite of tools for manipulate atomic structure which can be very helpful for building structures, and here, for building search seeds.
AIRSS is a open source code licensed under GPLv2, this package does not contain any source code of AIRSS nor links to it.
What this does
- Allow preparing seed for AIRSS using ASE's
atoms
interface - Allow ase's calculators to be used in AIRSS to do relaxations
Try interactively
Interactive jupyter notebook examples can be found in the examples
folder.
Click the binder badge above to launch these examples in a pre-built environment and try it in your browser!
Dependences
- ase: The atomic simulation environment
- castepinput: A light weight writer/reader for the input files of CASTEP.
Installation
The package can be installed from pypi together with the dependencies:
pip install airsspy
Alternative, one can also install directly from the repository (defaults to the master branch):
pip install git+https://github.com/zhubonan/airsspy
Usage
Assuming you are familiar with ase
, python and has some basic knowledge of AIRSS.
To prepare a seed for generating a sensible random structure:
from airsspy import SeedAtoms
seed = SeedAtoms('C6')
seed.buiid.varvol = 20
seed.build.symmops = (2, 4)
# Can also access per `atom` tags/ketwords just like in ASE
for i in range(0, 6, 2):
atom = seed[i]
atom.tagname = 'CX'
atom.posamp = 2
To write the seed file onto the disk:
atoms.write_seed('C6.cell')
# With IPython
# Use the buildcell executable to generate the file
!buildcell < C6.cell > C6-rand.cell
To generate a cell we can create a Buildcell
instance,
which is helping wrapper to the buildcell
program of AIRSS:
from airsspy import Buildcell
buidcell = Buildcell(seed)
random_atoms = builcell.generate()
A shortcut is also available as an method of the SeedAtoms
:
random_atoms = seed.build_random_atoms()
Limitations
Due to the lack of timeout
argument of Popen.communicate
in python 2.7,
communication with the buildcell
is not available. Hence, direct generation and
retrieval of the random structure are not supported in python. However, it is
still possible to write the seed out and call the program externally.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file airsspy-0.1.3.tar.gz
.
File metadata
- Download URL: airsspy-0.1.3.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.3.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e923424f6050d4c5e70325cdec6ddce8330f7f10f83e2c17c0bb2a50ea0bccfb |
|
MD5 | ac6494d68ae21342dc9b8df2aae13d2a |
|
BLAKE2b-256 | 51592e3ecadffa4eba6d06c28f6fb1c73b503edc324d1a243d8caf5ae4cdc8ba |
File details
Details for the file airsspy-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: airsspy-0.1.3-py3-none-any.whl
- Upload date:
- Size: 25.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.3.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19cb338a5e97643ca72bfc4af7379837e17829bebe1dc82d97720000c4c19f34 |
|
MD5 | 8d0406c1607342f60e9512233b495cb0 |
|
BLAKE2b-256 | 280be01e47df1f0f293b6088f5ac8929eec6d2d739c257b6859406a5522afaaf |