Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 17, 2020 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/db09806f6bc8b58d082bdfc935bd48c6 to your computer and use it in GitHub Desktop.
Save r-ryantm/db09806f6bc8b58d082bdfc935bd48c6 to your computer and use it in GitHub Desktop.
/nix/store/l8zknvyrf3ask2acaz0cn8k9lf22691x-python3.7-phonopy-2.8.1
├── bin
│   ├── phonopy
│   ├── phonopy-bandplot
│   ├── phonopy-crystal-born
│   ├── phonopy-gruneisen
│   ├── phonopy-gruneisenplot
│   ├── phonopy-load
│   ├── phonopy-pdosplot
│   ├── phonopy-propplot
│   ├── phonopy-qha
│   ├── phonopy-tdplot
│   ├── phonopy-vasp-born
│   └── phonopy-vasp-efe
├── lib
│   └── python3.7
│   └── site-packages
│   ├── phonopy
│   │   ├── api_gruneisen.py
│   │   ├── api_phonopy.py
│   │   ├── api_qha.py
│   │   ├── cui
│   │   │   ├── collect_cell_info.py
│   │   │   ├── create_force_sets.py
│   │   │   ├── __init__.py
│   │   │   ├── load_helper.py
│   │   │   ├── load.py
│   │   │   ├── phonopy_argparse.py
│   │   │   ├── phonopy_script.py
│   │   │   ├── __pycache__
│   │   │   │   ├── collect_cell_info.cpython-37.pyc
│   │   │   │   ├── create_force_sets.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── load.cpython-37.pyc
│   │   │   │   ├── load_helper.cpython-37.pyc
│   │   │   │   ├── phonopy_argparse.cpython-37.pyc
│   │   │   │   ├── phonopy_script.cpython-37.pyc
│   │   │   │   ├── settings.cpython-37.pyc
│   │   │   │   └── show_symmetry.cpython-37.pyc
│   │   │   ├── settings.py
│   │   │   └── show_symmetry.py
│   │   ├── file_IO.py
│   │   ├── gruneisen
│   │   │   ├── band_structure.py
│   │   │   ├── core.py
│   │   │   ├── __init__.py
│   │   │   ├── mesh.py
│   │   │   ├── __pycache__
│   │   │   │   ├── band_structure.cpython-37.pyc
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mesh.cpython-37.pyc
│   │   │   │   └── thermal_properties.cpython-37.pyc
│   │   │   └── thermal_properties.py
│   │   ├── harmonic
│   │   │   ├── derivative_dynmat.py
│   │   │   ├── displacement.py
│   │   │   ├── dynamical_matrix.py
│   │   │   ├── dynmat_to_fc.py
│   │   │   ├── force_constants.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── derivative_dynmat.cpython-37.pyc
│   │   │   ├── displacement.cpython-37.pyc
│   │   │   ├── dynamical_matrix.cpython-37.pyc
│   │   │   ├── dynmat_to_fc.cpython-37.pyc
│   │   │   ├── force_constants.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   ├── interface
│   │   │   ├── abinit.py
│   │   │   ├── aims.py
│   │   │   ├── alm.py
│   │   │   ├── calculator.py
│   │   │   ├── castep.py
│   │   │   ├── cif.py
│   │   │   ├── cp2k.py
│   │   │   ├── crystal.py
│   │   │   ├── dftbp.py
│   │   │   ├── elk.py
│   │   │   ├── fc_calculator.py
│   │   │   ├── hiphive_interface.py
│   │   │   ├── __init__.py
│   │   │   ├── phonopy_yaml.py
│   │   │   ├── __pycache__
│   │   │   │   ├── abinit.cpython-37.pyc
│   │   │   │   ├── aims.cpython-37.pyc
│   │   │   │   ├── alm.cpython-37.pyc
│   │   │   │   ├── calculator.cpython-37.pyc
│   │   │   │   ├── castep.cpython-37.pyc
│   │   │   │   ├── cif.cpython-37.pyc
│   │   │   │   ├── cp2k.cpython-37.pyc
│   │   │   │   ├── crystal.cpython-37.pyc
│   │   │   │   ├── dftbp.cpython-37.pyc
│   │   │   │   ├── elk.cpython-37.pyc
│   │   │   │   ├── fc_calculator.cpython-37.pyc
│   │   │   │   ├── hiphive_interface.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── phonopy_yaml.cpython-37.pyc
│   │   │   │   ├── qe.cpython-37.pyc
│   │   │   │   ├── siesta.cpython-37.pyc
│   │   │   │   ├── turbomole.cpython-37.pyc
│   │   │   │   ├── vasp.cpython-37.pyc
│   │   │   │   └── wien2k.cpython-37.pyc
│   │   │   ├── qe.py
│   │   │   ├── siesta.py
│   │   │   ├── turbomole.py
│   │   │   ├── vasp.py
│   │   │   └── wien2k.py
│   │   ├── phonon
│   │   │   ├── animation.py
│   │   │   ├── band_structure.py
│   │   │   ├── degeneracy.py
│   │   │   ├── dos.py
│   │   │   ├── group_velocity.py
│   │   │   ├── __init__.py
│   │   │   ├── irreps.py
│   │   │   ├── mesh.py
│   │   │   ├── modulation.py
│   │   │   ├── moment.py
│   │   │   ├── __pycache__
│   │   │   │   ├── animation.cpython-37.pyc
│   │   │   │   ├── band_structure.cpython-37.pyc
│   │   │   │   ├── degeneracy.cpython-37.pyc
│   │   │   │   ├── dos.cpython-37.pyc
│   │   │   │   ├── group_velocity.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── irreps.cpython-37.pyc
│   │   │   │   ├── mesh.cpython-37.pyc
│   │   │   │   ├── modulation.cpython-37.pyc
│   │   │   │   ├── moment.cpython-37.pyc
│   │   │   │   ├── qpoints.cpython-37.pyc
│   │   │   │   ├── random_displacements.cpython-37.pyc
│   │   │   │   ├── tetrahedron_mesh.cpython-37.pyc
│   │   │   │   ├── thermal_displacement.cpython-37.pyc
│   │   │   │   └── thermal_properties.cpython-37.pyc
│   │   │   ├── qpoints.py
│   │   │   ├── random_displacements.py
│   │   │   ├── tetrahedron_mesh.py
│   │   │   ├── thermal_displacement.py
│   │   │   └── thermal_properties.py
│   │   ├── _phonopy.cpython-37m-x86_64-linux-gnu.so
│   │   ├── __pycache__
│   │   │   ├── api_gruneisen.cpython-37.pyc
│   │   │   ├── api_phonopy.cpython-37.pyc
│   │   │   ├── api_qha.cpython-37.pyc
│   │   │   ├── file_IO.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── units.cpython-37.pyc
│   │   │   └── version.cpython-37.pyc
│   │   ├── qha
│   │   │   ├── core.py
│   │   │   ├── electron.py
│   │   │   ├── eos.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── core.cpython-37.pyc
│   │   │   ├── electron.cpython-37.pyc
│   │   │   ├── eos.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── spectrum
│   │   │   ├── dynamic_structure_factor.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── dynamic_structure_factor.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── velocity.cpython-37.pyc
│   │   │   └── velocity.py
│   │   ├── structure
│   │   │   ├── atoms.py
│   │   │   ├── brillouin_zone.py
│   │   │   ├── cells.py
│   │   │   ├── dataset.py
│   │   │   ├── grid_points.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── atoms.cpython-37.pyc
│   │   │   │   ├── brillouin_zone.cpython-37.pyc
│   │   │   │   ├── cells.cpython-37.pyc
│   │   │   │   ├── dataset.cpython-37.pyc
│   │   │   │   ├── grid_points.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── symmetry.cpython-37.pyc
│   │   │   │   └── tetrahedron_method.cpython-37.pyc
│   │   │   ├── symmetry.py
│   │   │   └── tetrahedron_method.py
│   │   ├── unfolding
│   │   │   ├── core.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── core.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── units.py
│   │   └── version.py
│   └── phonopy-2.8.1.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
26 directories, 177 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment