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
|
.. module:: ase.phonons
===================
Phonon calculations
===================
Module for calculating vibrational normal modes for periodic systems using the
so-called small displacement method (see e.g. [Alfe]_). So far, space-group
symmetries are not exploited to reduce the number of atomic displacements that
must be calculated and subsequent symmetrization of the force constants.
For polar materials the dynamical matrix at the zone center acquires a
non-analytical contribution that accounts for the LO-TO splitting. This
contribution requires additional functionality to evaluate and is not included
in the present implementation. Its implementation in conjunction with the small
displacement method is described in [Wang]_.
Example
=======
Simple example showing how to calculate the phonon dispersion for bulk aluminum
using a 7x7x7 supercell within effective medium theory:
.. literalinclude:: phonons_Al_fcc.py
:start-after: creates:
:end-before: literalinclude division line
.. image:: Al_phonon.png
Mode inspection:
.. literalinclude:: phonons_Al_fcc.py
:start-after: literalinclude division line
.. [Alfe] D. Alfe, PHON: A program to calculate phonons using the small
displacement method, Comput. Phys. Commun. 180, 2622 (2009)
.. [Wang] Y. Wang *et al.*, A mixed-space approach to first-principles
calculations of phonon frequencies for polar materials, J. Phys.:
Cond. Matter 22, 202201 (2010)
List of all Methods
===================
.. autoclass:: Phonons
:members:
|