├── INPUT ├── LICENSE ├── README.md ├── lammps ├── SiCGe.tersoff ├── in.vels └── si.lammps ├── manual.docx ├── manual.pdf ├── modules ├── Compressor.py ├── FileIO.py ├── Lattice.py ├── Lorentz.py ├── Parsers.py ├── Phonons.py ├── Plot.py └── __pycache__ │ ├── Lattice.cpython-38.pyc │ └── Parsers.cpython-38.pyc ├── pSED └── structure_maker_API ├── lattice.dat └── structure_maker.py /INPUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/INPUT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/README.md -------------------------------------------------------------------------------- /lammps/SiCGe.tersoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/lammps/SiCGe.tersoff -------------------------------------------------------------------------------- /lammps/in.vels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/lammps/in.vels -------------------------------------------------------------------------------- /lammps/si.lammps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/lammps/si.lammps -------------------------------------------------------------------------------- /manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/manual.docx -------------------------------------------------------------------------------- /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/manual.pdf -------------------------------------------------------------------------------- /modules/Compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/Compressor.py -------------------------------------------------------------------------------- /modules/FileIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/FileIO.py -------------------------------------------------------------------------------- /modules/Lattice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/Lattice.py -------------------------------------------------------------------------------- /modules/Lorentz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/Lorentz.py -------------------------------------------------------------------------------- /modules/Parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/Parsers.py -------------------------------------------------------------------------------- /modules/Phonons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/Phonons.py -------------------------------------------------------------------------------- /modules/Plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/Plot.py -------------------------------------------------------------------------------- /modules/__pycache__/Lattice.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/__pycache__/Lattice.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/Parsers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/modules/__pycache__/Parsers.cpython-38.pyc -------------------------------------------------------------------------------- /pSED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/pSED -------------------------------------------------------------------------------- /structure_maker_API/lattice.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/structure_maker_API/lattice.dat -------------------------------------------------------------------------------- /structure_maker_API/structure_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyst3273/phonon-sed/HEAD/structure_maker_API/structure_maker.py --------------------------------------------------------------------------------