├── .gitattributes ├── LICENSE ├── README.md ├── Ref_paper ├── (Gr-Hbn) Interface diffusion-induced phonon localization in two-dimensional lateral heterostructures.pdf └── ref_fig.jpg ├── SHC_calculate ├── BNC.tersoff ├── Fij.dat_SHC.png ├── Fij.dat_accumulated_ITC.png ├── SHC_generate.py ├── force_calculate.py └── forces.in ├── Scripts └── compactify_vels.cpp ├── Test_parameters.pdf └── Velocity_calculate ├── BNC.tersoff ├── dump.heatflux ├── dump.optimize ├── onelayer.data └── relax_thermal.in /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/README.md -------------------------------------------------------------------------------- /Ref_paper/(Gr-Hbn) Interface diffusion-induced phonon localization in two-dimensional lateral heterostructures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Ref_paper/(Gr-Hbn) Interface diffusion-induced phonon localization in two-dimensional lateral heterostructures.pdf -------------------------------------------------------------------------------- /Ref_paper/ref_fig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Ref_paper/ref_fig.jpg -------------------------------------------------------------------------------- /SHC_calculate/BNC.tersoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/SHC_calculate/BNC.tersoff -------------------------------------------------------------------------------- /SHC_calculate/Fij.dat_SHC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/SHC_calculate/Fij.dat_SHC.png -------------------------------------------------------------------------------- /SHC_calculate/Fij.dat_accumulated_ITC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/SHC_calculate/Fij.dat_accumulated_ITC.png -------------------------------------------------------------------------------- /SHC_calculate/SHC_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/SHC_calculate/SHC_generate.py -------------------------------------------------------------------------------- /SHC_calculate/force_calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/SHC_calculate/force_calculate.py -------------------------------------------------------------------------------- /SHC_calculate/forces.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/SHC_calculate/forces.in -------------------------------------------------------------------------------- /Scripts/compactify_vels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Scripts/compactify_vels.cpp -------------------------------------------------------------------------------- /Test_parameters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Test_parameters.pdf -------------------------------------------------------------------------------- /Velocity_calculate/BNC.tersoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Velocity_calculate/BNC.tersoff -------------------------------------------------------------------------------- /Velocity_calculate/dump.heatflux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Velocity_calculate/dump.heatflux -------------------------------------------------------------------------------- /Velocity_calculate/dump.optimize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Velocity_calculate/dump.optimize -------------------------------------------------------------------------------- /Velocity_calculate/onelayer.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Velocity_calculate/onelayer.data -------------------------------------------------------------------------------- /Velocity_calculate/relax_thermal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tingliangstu/New-Version-Spectral-decomposition-python-tools/HEAD/Velocity_calculate/relax_thermal.in --------------------------------------------------------------------------------