File: surface.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 (17 lines) | stat: -rw-r--r-- 765 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import warnings
from ase.build import (add_adsorbate, add_vacuum,
                       bcc100, bcc110, bcc111,
                       diamond100, diamond111,
                       fcc100, fcc110, fcc111, fcc211,
                       hcp0001, hcp10m10, mx2,
                       hcp0001_root, fcc111_root, bcc111_root,
                       root_surface, root_surface_analysis, surface)
__all__ = ['add_adsorbate', 'add_vacuum',
           'bcc100', 'bcc110', 'bcc111',
           'diamond100', 'diamond111',
           'fcc100', 'fcc110', 'fcc111', 'fcc211',
           'hcp0001', 'hcp10m10', 'mx2',
           'hcp0001_root', 'fcc111_root', 'bcc111_root',
           'root_surface', 'root_surface_analysis', 'surface']

warnings.warn('Moved to ase.build')