File: __init__.py

package info (click to toggle)
python-ase 3.22.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,344 kB
  • sloc: python: 126,379; xml: 946; makefile: 111; javascript: 47
file content (41 lines) | stat: -rw-r--r-- 1,776 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from ase.build.rotate import minimize_rotation_and_translation
from ase.build.surface import (
    add_adsorbate, add_vacuum,
    bcc100, bcc110, bcc111,
    diamond100, diamond111,
    fcc100, fcc110, fcc111, fcc211,
    hcp0001, hcp10m10, mx2, graphene)
from ase.build.bulk import bulk
from ase.build.general_surface import surface
from ase.build.molecule import molecule
from ase.build.root import (hcp0001_root, fcc111_root, bcc111_root,
                            root_surface, root_surface_analysis)
from ase.build.tube import nanotube
from ase.build.ribbon import graphene_nanoribbon
from ase.build.tools import (cut, stack, sort, minimize_tilt, niggli_reduce,
                             rotate)
from ase.build.connected import (connected_atoms, connected_indices,
                                 separate, split_bond)
from ase.build.supercells import (
    get_deviation_from_optimal_cell_shape,
    find_optimal_cell_shape,
    make_supercell)

__all__ = ['minimize_rotation_and_translation',
           'add_adsorbate', 'add_vacuum',
           'bcc100', 'bcc110', 'bcc111',
           'diamond100', 'diamond111',
           'fcc100', 'fcc110', 'fcc111', 'fcc211',
           'hcp0001', 'hcp10m10', 'mx2', 'graphene',
           'bulk', 'surface', 'molecule',
           'hcp0001_root', 'fcc111_root', 'bcc111_root',
           'root_surface', 'root_surface_analysis',
           'nanotube', 'graphene_nanoribbon',
           'cut', 'stack', 'sort', 'minimize_tilt', 'niggli_reduce',
           'rotate',
           'connected_atoms', 'connected_indices',
           'separate', 'split_bond',
           'get_deviation_from_optimal_cell_shape',
           'find_optimal_cell_shape',
           'find_optimal_cell_shape_pure_python',
           'make_supercell']