Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""Module for creating clusters.""" 

2 

3from ase.cluster.cluster import Cluster 

4from ase.cluster.wulff import wulff_construction 

5from ase.cluster.cubic import SimpleCubic, BodyCenteredCubic, FaceCenteredCubic 

6from ase.cluster.octahedron import Octahedron 

7from ase.cluster.hexagonal import Hexagonal, HexagonalClosedPacked 

8from ase.cluster.icosahedron import Icosahedron 

9from ase.cluster.decahedron import Decahedron 

10 

11__all__ = ['Cluster', 'wulff_construction', 'SimpleCubic', 

12 'BodyCenteredCubic', 'FaceCenteredCubic', 'Octahedron', 

13 'Hexagonal', 'HexagonalClosedPacked', 'Icosahedron', 'Decahedron']