This file is indexed.

/usr/share/python-ase/doc/ase/setup-overview.rst is in python-ase-doc 3.9.1.4567-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
==========================
Creating atomic structures
==========================

.. toctree::
   :maxdepth: 2

   structure
   surface
   lattice

ASE contains a number of modules for setting up atomic structures,
mainly molecules, bulk crystals and surfaces.  Some of these modules
have overlapping functionality, but strike a different balance between
flexibility and ease-of-use.


**Common bulk crystals**

The :func:`ase.lattice.bulk` function can be used to create the most
common bulk crystal structures.  The function creates a single unit cell
oriented such that the number of atoms in the cell is minimal.

Read more: :ref:`bulk-crystal-section`.


**Common surfaces**

The :mod:`ase.lattice.surface` module contains a number of 
functions for creating the most common surfaces in a minimal unit
cell, and for adding adsorbates to these surfaces.

Read more: :ref:`lattice-surface-section`.


**Nanotubes and nanoribbons**

The functions :func:`ase.structure.nanotube` and
:func:`ase.structure.graphene_nanoribbon` can be used to create Carbon
nanotubes and graphene sheets or nanoribbons.  Per default, they
create Carbon nanotubes and sheets, but other elements can be used. 

Read more:  :ref:`nanotubes-section` and :ref:`nanoribbons-section`.

**Generally oriented bulk crystals and surfaces**

The :mod:`ase.lattice` module contains functions for creating most common
crystal structures with arbitrary orientation.  The user can specify
the desired Miller index along the three axes of the simulation, and
the smallest periodic structure fulfilling this specification is
created.  Thirteen of the 14 Bravais lattices are supported by the
module, as are a few lattices with a basis, and lattices for some of
the most common compounds/alloys.  The modules makes it possible to
define further lattices based on the supported Bravais lattices.

Both bulk crystals and surfaces can be created.

Read more: :ref:`general-crystal-section`.

**Molecules**

Some common molecules can be constructed using the
:func:`ase.structure.molecule` function.

Read more: :ref:`molecular-data`.