/usr/share/python-ase/doc/ase/vibrations.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 | .. module:: ase.vibrations
Vibration analysis
------------------
You can calculate the vibrational modes of a an
:class:`~ase.atoms.Atoms` object in the harmonic approximation using
the :class:`Vibrations`.
.. autoclass:: Vibrations
:members:
name is a string that is prefixed to the names of all the files
created. atoms is an Atoms object that is either at a
fully relaxed ground state or at a saddle point. freeatoms is a
list of atom indices for which the vibrational modes will be calculated,
the rest of the atoms are considered frozen. displacements is a
list of displacements, one for each free atom that are used in the
finite difference method to calculate the Hessian matrix. method is -1
for backward differences, 0 for centered differences, and 1 for
forward differences.
.. warning::
Using the *dacapo* calculator you must make sure that the symmetry
program in dacapo finds the same number of symmetries for the
displaced configurations in the vibrational modules as found in
the ground state used as input.
This is because the wavefunction is reused from one displacement
to the next.
One way to ensure this is to tell dacapo not to use symmetries.
This will show op as a python error 'Frames are not aligned'.
This could be the case for other calculators as well.
|