├── .gitignore ├── .travis.yml ├── Cyclopentadiene ├── Cyclopentadiene-vasp_raman-0.5.1.tar.gz └── README.md ├── LICENSE ├── README.md ├── Sibulk-VASP ├── README.md └── Sibulk-VASP-vasp_raman-0.5.1.tar.gz ├── Sibulk-VTST ├── README.md └── Si-VTST-pre0.6.1.tar.gz ├── Sibulk ├── README.md ├── Sibulk-PW91-DMFDM.tar.gz ├── collect.sh ├── raman.sub └── raman_sub.sh ├── test ├── POSCAR_1 ├── __init__.py └── test_vasp_raman.py ├── vasp_raman.py ├── vasp_raman_py.bib └── vasp_raman_py.ris /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cyclopentadiene/Cyclopentadiene-vasp_raman-0.5.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Cyclopentadiene/Cyclopentadiene-vasp_raman-0.5.1.tar.gz -------------------------------------------------------------------------------- /Cyclopentadiene/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Cyclopentadiene/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/README.md -------------------------------------------------------------------------------- /Sibulk-VASP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk-VASP/README.md -------------------------------------------------------------------------------- /Sibulk-VASP/Sibulk-VASP-vasp_raman-0.5.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk-VASP/Sibulk-VASP-vasp_raman-0.5.1.tar.gz -------------------------------------------------------------------------------- /Sibulk-VTST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk-VTST/README.md -------------------------------------------------------------------------------- /Sibulk-VTST/Si-VTST-pre0.6.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk-VTST/Si-VTST-pre0.6.1.tar.gz -------------------------------------------------------------------------------- /Sibulk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk/README.md -------------------------------------------------------------------------------- /Sibulk/Sibulk-PW91-DMFDM.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk/Sibulk-PW91-DMFDM.tar.gz -------------------------------------------------------------------------------- /Sibulk/collect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk/collect.sh -------------------------------------------------------------------------------- /Sibulk/raman.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk/raman.sub -------------------------------------------------------------------------------- /Sibulk/raman_sub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/Sibulk/raman_sub.sh -------------------------------------------------------------------------------- /test/POSCAR_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/test/POSCAR_1 -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_vasp_raman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/test/test_vasp_raman.py -------------------------------------------------------------------------------- /vasp_raman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/vasp_raman.py -------------------------------------------------------------------------------- /vasp_raman_py.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/vasp_raman_py.bib -------------------------------------------------------------------------------- /vasp_raman_py.ris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raman-sc/VASP/HEAD/vasp_raman_py.ris --------------------------------------------------------------------------------