lammps/tools/phonon
Axel Kohlmeyer 4c71beb024 cleanup/simplification of compilation for fix phonon analysis tool "phana"
- include the used tricubic functions directly as static functions
- silence compiler warnings
- define f2c.h imported data types directly or use C equivalents
- since the direct LAPACK API was called and not cLAPACK, declare LAPACK interface and depend only on LAPACK
- add proper dependencies
- disable automatic minor version number generation. step version manually.
- comment out optional spglib functionality by default
2017-09-30 12:12:15 -04:00
..
Makefile cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
README cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
disp.cpp cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
dynmat.cpp cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
dynmat.h cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
global.h git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14367 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2015-12-15 15:59:11 +00:00
green.cpp cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
green.h git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9633 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-03-11 20:48:21 +00:00
interpolate.cpp cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
interpolate.h cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
main.cpp git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9633 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-03-11 20:48:21 +00:00
memory.cpp git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9633 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-03-11 20:48:21 +00:00
memory.h git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9633 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-03-11 20:48:21 +00:00
phonon.cpp cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00
phonon.h git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14366 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2015-12-15 15:59:01 +00:00
timer.cpp git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14366 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2015-12-15 15:59:01 +00:00
timer.h git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9633 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-03-11 20:48:21 +00:00
version.h cleanup/simplification of compilation for fix phonon analysis tool "phana" 2017-09-30 12:12:15 -04:00

README

#-------------------------------------------------------------------------------
   phana
#
   This program reads the binary file created by fix_phonon and helps to
   analyse the phonon related information.
#-------------------------------------------------------------------------------
1. Dependencies
   The LAPACK library is needed to solve the eigen problems.
   http://www.netlib.org/lapack/
   Intel MKL can be used as well.
   
   The spglib is optionally needed, enabling one to evaluate the
   phonon density of states or vibrational thermal properties
   using only the irreducible q-points in the first Brillouin zone,
   as well as to evaluate the phonon dispersion curvers with the
   automatic mode. Currently, the 1.8.3 version of spglib is used.
   It can be obtained from:
   http://spglib.sourceforge.net/
   
2. Compilation
   To compile the code, one needs therefore to install the above
   libraries and set the paths correctly in the Makefile.
   Once this is done, by typing
     make
   will yield the executable "phana".

3. Unit system
   The units of the output frequencies by this code is THz for
   LAMMPS units "real", "si", "metal", and "cgs"; in these cases,
   the frequencies are $\nu$ instead of $\omega$.

4. Updates
   For updates of phana, please check:
     http://nes.sjtu.edu.cn/english/research/software.htm
   or
     https://github.com/lingtikong/phana.git

5. Bug report
   If any bug found, please drop a line to: konglt(at)sjtu.edu.cn
#-------------------------------------------------------------------------------
Author: Ling-Ti Kong, konglt(at)sjtu.edu.cn
Oct 2015