ASE

If you are not familiar with building atomic structure using ASE, please read the following tutorials:

Keyword atoms in Batoms object is uesd to load a ASE structure.

Molecule:

>>> from batoms import Batoms
>>> from ase.build import molecule
>>> co = molecule('CO')
>>> co = Batoms(label = 'co', atoms=co)
../../_images/ase-co.png

Crystal:

>>> from batoms import Batoms
>>> from ase.build import bulk
>>> fe = bulk('Fe')
>>> fe = Batoms(label = 'fe', atoms=fe)
../../_images/ase-fe.png