The SliceBatoms object

The SliceBatoms object store the information of sliced Batoms object.

from batoms import Batoms
h2o = Batoms("h2o",
            species = ["O", "H", "H"],
            positions= [[0, 0, 0], [0, -0.76, -0.6], [0, 0.76, -0.6]])
../_images/batoms-h2o.png

One get the positions of the first atoms by:

>>> h2o[0].positions

One get the positions of the first two atoms by:

>>> h2o[0:2].positions