phonopy 2.45.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- phonopy-2.45.1/CMakeLists.txt +119 -0
- phonopy-2.45.1/LICENSE +26 -0
- phonopy-2.45.1/PKG-INFO +101 -0
- phonopy-2.45.1/README.md +74 -0
- phonopy-2.45.1/c/_phonopy.cpp +599 -0
- phonopy-2.45.1/c/derivative_dynmat.c +341 -0
- phonopy-2.45.1/c/derivative_dynmat.h +50 -0
- phonopy-2.45.1/c/dynmat.c +822 -0
- phonopy-2.45.1/c/dynmat.h +81 -0
- phonopy-2.45.1/c/phonopy.c +899 -0
- phonopy-2.45.1/c/phonopy.h +160 -0
- phonopy-2.45.1/c/rgrid.c +115 -0
- phonopy-2.45.1/c/rgrid.h +82 -0
- phonopy-2.45.1/c/tetrahedron_method.c +1455 -0
- phonopy-2.45.1/c/tetrahedron_method.h +50 -0
- phonopy-2.45.1/doc/README.md +35 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/FORCE_SETS +37 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/STRU +23 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/STRU.in +49 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/band.conf +7 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/band.yaml +2124 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/disp-001/Al.PD04.PBE.UPF +5824 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/disp-001/Al_gga_10au_100Ry_3s3p2d.orb +2037 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/disp-001/INPUT +28 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/disp-001/KPT +4 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/disp-001/OUT.ABACUS/running_scf.log +1923 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/disp-001/STRU-001 +52 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/mesh.yaml +677 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/phonopy.yaml +243 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/phonopy_disp.yaml +251 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-lcao/setting.conf +2 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/FORCE_SETS +37 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/STRU +21 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/STRU.in +49 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/band.conf +7 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/band.yaml +2124 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/disp-001/Al.PD04.PBE.UPF +5824 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/disp-001/INPUT +20 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/disp-001/KPT +4 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/disp-001/OUT.ABACUS/running_scf.log +2899 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/disp-001/STRU-001 +49 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/mesh.yaml +677 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/phonopy.yaml +243 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/phonopy_disp.yaml +251 -0
- phonopy-2.45.1/example/Al-ABACUS/abacus-pw/setting.conf +2 -0
- phonopy-2.45.1/example/Al-Fleur/FORCES +18 -0
- phonopy-2.45.1/example/Al-Fleur/IO/inp.xml +118 -0
- phonopy-2.45.1/example/Al-Fleur/IO/kpts.xml +266 -0
- phonopy-2.45.1/example/Al-Fleur/IO/out +3893 -0
- phonopy-2.45.1/example/Al-Fleur/IO/sym.xml +22 -0
- phonopy-2.45.1/example/Al-Fleur/README +26 -0
- phonopy-2.45.1/example/Al-Fleur/band.pdf +0 -0
- phonopy-2.45.1/example/Al-Fleur/fleur_inpgen +16 -0
- phonopy-2.45.1/example/Al-Fleur/phonopy_disp.yaml +93 -0
- phonopy-2.45.1/example/Al-Fleur/supercell-001.in +26 -0
- phonopy-2.45.1/example/Al-QHA/Al-QHA.py +49 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR--1 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR--2 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR--3 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR--4 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR--5 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR-0 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR-1 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR-2 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR-3 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR-4 +16 -0
- phonopy-2.45.1/example/Al-QHA/POSCAR-5 +16 -0
- phonopy-2.45.1/example/Al-QHA/README +10 -0
- phonopy-2.45.1/example/Al-QHA/e-v.dat +11 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml--1 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml--2 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml--3 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml--4 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml--5 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml-0 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml-1 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml-2 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml-3 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml-4 +5017 -0
- phonopy-2.45.1/example/Al-QHA/thermal_properties.yaml-5 +5017 -0
- phonopy-2.45.1/example/Al2O3/Al2O3.py +47 -0
- phonopy-2.45.1/example/Al2O3/BORN +4 -0
- phonopy-2.45.1/example/Al2O3/FORCE_SETS +617 -0
- phonopy-2.45.1/example/Al2O3/POSCAR-unitcell +69 -0
- phonopy-2.45.1/example/Al2O3/README.md +24 -0
- phonopy-2.45.1/example/Al2O3/phonopy_disp.yaml +748 -0
- phonopy-2.45.1/example/Al2O3/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/CaTiO3/FORCE_SETS +174 -0
- phonopy-2.45.1/example/CaTiO3/POSCAR-unitcell +12 -0
- phonopy-2.45.1/example/CaTiO3/phonopy_disp.yaml +258 -0
- phonopy-2.45.1/example/CaTiO3/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/Cr/FORCE_SETS +21 -0
- phonopy-2.45.1/example/Cr/POSCAR-unitcell +10 -0
- phonopy-2.45.1/example/Cr/README.md +29 -0
- phonopy-2.45.1/example/Cr/phonopy_disp.yaml +152 -0
- phonopy-2.45.1/example/Cr/vasprun.xml.xz +0 -0
- phonopy-2.45.1/example/Cr-castep/FORCE_SETS +21 -0
- phonopy-2.45.1/example/Cr-castep/README +24 -0
- phonopy-2.45.1/example/Cr-castep/band.pdf +0 -0
- phonopy-2.45.1/example/Cr-castep/make_displ_dirs.sh +31 -0
- phonopy-2.45.1/example/Cr-castep/tail.cell +26 -0
- phonopy-2.45.1/example/Cr-castep/unitcell.cell +122 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-00 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-01 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-02 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-03 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-04 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-05 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-06 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-07 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-08 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-09 +12 -0
- phonopy-2.45.1/example/Cu-QHA/POSCAR-10 +12 -0
- phonopy-2.45.1/example/Cu-QHA/README +21 -0
- phonopy-2.45.1/example/Cu-QHA/e-v.dat +12 -0
- phonopy-2.45.1/example/Cu-QHA/fe-v.dat +153 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-00 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-01 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-02 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-03 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-04 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-05 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-06 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-07 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-08 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-09 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/thermal_properties.yaml-10 +1522 -0
- phonopy-2.45.1/example/Cu-QHA/vasprun.xmls.tar.lzma +0 -0
- phonopy-2.45.1/example/Graphene-siesta/Gr.fdf +41 -0
- phonopy-2.45.1/example/Graphene-siesta/README +24 -0
- phonopy-2.45.1/example/Graphene-siesta/disp-001/Gr.FA +19 -0
- phonopy-2.45.1/example/Graphene-siesta/run_example.sh +76 -0
- phonopy-2.45.1/example/KCl-SSCHA/README.md +76 -0
- phonopy-2.45.1/example/KCl-SSCHA/embed_sscha_fc.py +27 -0
- phonopy-2.45.1/example/KCl-SSCHA/phonopy_fc222_JPCM2022.yaml.xz +0 -0
- phonopy-2.45.1/example/KCl-SSCHA/phonopy_fc444_JPCM2022.yaml.xz +0 -0
- phonopy-2.45.1/example/KCl-SSCHA/phonopy_mlpsscha_params_KCl-120.yaml.xz +0 -0
- phonopy-2.45.1/example/KCl-SSCHA/phonopy_sscha_fc_JPCM2022.yaml.xz +0 -0
- phonopy-2.45.1/example/LiF-nosym/BORN +10 -0
- phonopy-2.45.1/example/LiF-nosym/FORCE_SETS +3218 -0
- phonopy-2.45.1/example/LiF-nosym/POSCAR-unitcell +24 -0
- phonopy-2.45.1/example/LiF-nosym/README.md +20 -0
- phonopy-2.45.1/example/MgB2/FORCE_SETS +116 -0
- phonopy-2.45.1/example/MgB2/MgB2.py +17 -0
- phonopy-2.45.1/example/MgB2/POSCAR-unitcell +10 -0
- phonopy-2.45.1/example/MgB2/README.md +11 -0
- phonopy-2.45.1/example/MgB2/phonopy_disp.yaml +292 -0
- phonopy-2.45.1/example/MgB2/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/MgO/BORN +4 -0
- phonopy-2.45.1/example/MgO/FORCE_SETS +136 -0
- phonopy-2.45.1/example/MgO/POSCAR-unitcell +24 -0
- phonopy-2.45.1/example/MgO/README.md +11 -0
- phonopy-2.45.1/example/MgO/phonopy_disp.yaml +368 -0
- phonopy-2.45.1/example/MgO/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/NaCl/BORN +4 -0
- phonopy-2.45.1/example/NaCl/FORCE_SETS +136 -0
- phonopy-2.45.1/example/NaCl/NaCl-band-gv.py +38 -0
- phonopy-2.45.1/example/NaCl/NaCl-band.py +17 -0
- phonopy-2.45.1/example/NaCl/NaCl-dynmat.py +37 -0
- phonopy-2.45.1/example/NaCl/NaCl-gv.py +25 -0
- phonopy-2.45.1/example/NaCl/NaCl-read_write_fc.py +18 -0
- phonopy-2.45.1/example/NaCl/NaCl-yaml.py +15 -0
- phonopy-2.45.1/example/NaCl/NaCl.py +116 -0
- phonopy-2.45.1/example/NaCl/POSCAR-unitcell +15 -0
- phonopy-2.45.1/example/NaCl/README.md +41 -0
- phonopy-2.45.1/example/NaCl/phonopy_disp.yaml +356 -0
- phonopy-2.45.1/example/NaCl/vasprun.xml-001 +1114 -0
- phonopy-2.45.1/example/NaCl/vasprun.xml-002 +1078 -0
- phonopy-2.45.1/example/NaCl-CP2K/.gitignore +13 -0
- phonopy-2.45.1/example/NaCl-CP2K/NaCl-supercell-001-forces-1_0.xyz +69 -0
- phonopy-2.45.1/example/NaCl-CP2K/NaCl-supercell-002-forces-1_0.xyz +69 -0
- phonopy-2.45.1/example/NaCl-CP2K/NaCl.inp +154 -0
- phonopy-2.45.1/example/NaCl-CP2K/README.md +28 -0
- phonopy-2.45.1/example/NaCl-CP2K/band.conf +3 -0
- phonopy-2.45.1/example/NaCl-CP2K/phonopy_disp.yaml +370 -0
- phonopy-2.45.1/example/NaCl-CRYSTAL/README +33 -0
- phonopy-2.45.1/example/NaCl-CRYSTAL/TEMPLATE +63 -0
- phonopy-2.45.1/example/NaCl-CRYSTAL/band.conf +3 -0
- phonopy-2.45.1/example/NaCl-CRYSTAL/crystal.o +1727 -0
- phonopy-2.45.1/example/NaCl-CRYSTAL/supercell-001.o +4877 -0
- phonopy-2.45.1/example/NaCl-CRYSTAL/supercell-002.o +4877 -0
- phonopy-2.45.1/example/NaCl-PWmat/README +19 -0
- phonopy-2.45.1/example/NaCl-PWmat/atom.config +14 -0
- phonopy-2.45.1/example/NaCl-PWmat/band.conf +3 -0
- phonopy-2.45.1/example/NaCl-PWmat/etot.input +15 -0
- phonopy-2.45.1/example/NaCl-PWmat/force-001/OUT.FORCE +132 -0
- phonopy-2.45.1/example/NaCl-PWmat/force-001/etot.input +15 -0
- phonopy-2.45.1/example/NaCl-PWmat/force-001/supercell-001.config +70 -0
- phonopy-2.45.1/example/NaCl-PWmat/force-002/OUT.FORCE +132 -0
- phonopy-2.45.1/example/NaCl-PWmat/force-002/etot.input +15 -0
- phonopy-2.45.1/example/NaCl-PWmat/force-002/supercell-002.config +70 -0
- phonopy-2.45.1/example/NaCl-PWmat/supercell-001.config +70 -0
- phonopy-2.45.1/example/NaCl-PWmat/supercell-002.config +70 -0
- phonopy-2.45.1/example/NaCl-PWmat/supercell.config +70 -0
- phonopy-2.45.1/example/NaCl-QE/BORN +4 -0
- phonopy-2.45.1/example/NaCl-QE/NaCl-001.in +92 -0
- phonopy-2.45.1/example/NaCl-QE/NaCl-001.out +478 -0
- phonopy-2.45.1/example/NaCl-QE/NaCl-002.in +92 -0
- phonopy-2.45.1/example/NaCl-QE/NaCl-002.out +478 -0
- phonopy-2.45.1/example/NaCl-QE/NaCl.in +34 -0
- phonopy-2.45.1/example/NaCl-QE/NaCl.ph.in +5 -0
- phonopy-2.45.1/example/NaCl-QE/NaCl.ph.out +653 -0
- phonopy-2.45.1/example/NaCl-QE/README.md +39 -0
- phonopy-2.45.1/example/NaCl-QE/band.conf +3 -0
- phonopy-2.45.1/example/NaCl-QE/header.in +19 -0
- phonopy-2.45.1/example/NaCl-QE/phonopy_disp.yaml +358 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/NaCl.fc.xz +0 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/NaCl.in +32 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/NaCl.ph-gamma.in +13 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/NaCl.ph.in +15 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/README +51 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/make_born_q2r.py +26 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/make_fc_q2r.py +13 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/output888.tar.lzma +0 -0
- phonopy-2.45.1/example/NaCl-QE-q2r/q2r.in +3 -0
- phonopy-2.45.1/example/NaCl-VASPdfpt/FORCE_CONSTANTS +16385 -0
- phonopy-2.45.1/example/NaCl-VASPdfpt/OUTCAR +22410 -0
- phonopy-2.45.1/example/NaCl-VASPdfpt/POSCAR +71 -0
- phonopy-2.45.1/example/NaCl-VASPdfpt/POSCAR-unitcell +15 -0
- phonopy-2.45.1/example/NaCl-VASPdfpt/README.md +25 -0
- phonopy-2.45.1/example/NaCl-VASPdfpt/vasprun.xml +2112 -0
- phonopy-2.45.1/example/NaCl-abinit/NaCl.in +30 -0
- phonopy-2.45.1/example/NaCl-abinit/README +21 -0
- phonopy-2.45.1/example/NaCl-abinit/band.conf +3 -0
- phonopy-2.45.1/example/NaCl-abinit/disp.yaml +145 -0
- phonopy-2.45.1/example/NaCl-abinit/supercell-001.out +1432 -0
- phonopy-2.45.1/example/NaCl-abinit/supercell-002.out +1440 -0
- phonopy-2.45.1/example/NaCl-castep/BORN +4 -0
- phonopy-2.45.1/example/NaCl-castep/FORCE_SETS +136 -0
- phonopy-2.45.1/example/NaCl-castep/README +23 -0
- phonopy-2.45.1/example/NaCl-castep/band.conf +4 -0
- phonopy-2.45.1/example/NaCl-castep/make_displ_dirs.sh +31 -0
- phonopy-2.45.1/example/NaCl-castep/supercell.param +29 -0
- phonopy-2.45.1/example/NaCl-castep/tail.cell +25 -0
- phonopy-2.45.1/example/NaCl-castep/unitcell.cell +1002 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-0.995/BORN +4 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-0.995/FORCE_SETS +136 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-0.995/POSCAR-unitcell +16 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-1.00/BORN +4 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-1.00/FORCE_SETS +136 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-1.00/POSCAR-unitcell +16 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-1.005/BORN +4 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-1.005/FORCE_SETS +136 -0
- phonopy-2.45.1/example/NaCl-gruneisen/NaCl-1.005/POSCAR-unitcell +16 -0
- phonopy-2.45.1/example/NaCl-gruneisen/README +7 -0
- phonopy-2.45.1/example/NaCl-rd/BORN +4 -0
- phonopy-2.45.1/example/NaCl-rd/FORCE_SETS +640 -0
- phonopy-2.45.1/example/NaCl-rd/POSCAR-unitcell +15 -0
- phonopy-2.45.1/example/NaCl-rd/README.md +24 -0
- phonopy-2.45.1/example/NaCl-rd/force-calcs.tar.xz +0 -0
- phonopy-2.45.1/example/NaCl-rd/phonopy_disp.yaml +1641 -0
- phonopy-2.45.1/example/NaCl-wien2k/NaCl-001.scf +16410 -0
- phonopy-2.45.1/example/NaCl-wien2k/NaCl-002.scf +16410 -0
- phonopy-2.45.1/example/NaCl-wien2k/NaCl.struct +53 -0
- phonopy-2.45.1/example/NaCl-wien2k/README.md +21 -0
- phonopy-2.45.1/example/NaCl-wien2k/phonopy_disp.yaml +357 -0
- phonopy-2.45.1/example/NaCl-wien2k-P1/NaCl-001.scf +51264 -0
- phonopy-2.45.1/example/NaCl-wien2k-P1/NaCl-002.scf +20608 -0
- phonopy-2.45.1/example/NaCl-wien2k-P1/NaCl.struct +53 -0
- phonopy-2.45.1/example/NaCl-wien2k-P1/README.md +23 -0
- phonopy-2.45.1/example/NaCl-wien2k-P1/phonopy_disp.yaml +357 -0
- phonopy-2.45.1/example/Si/POSCAR-unitcell +9 -0
- phonopy-2.45.1/example/Si/README.md +27 -0
- phonopy-2.45.1/example/Si/phonopy_disp.yaml +136 -0
- phonopy-2.45.1/example/Si/vasprun.xml +1792 -0
- phonopy-2.45.1/example/Si-CP2K/README.md +26 -0
- phonopy-2.45.1/example/Si-CP2K/Si-supercell-001-forces-1_0.xyz +69 -0
- phonopy-2.45.1/example/Si-CP2K/Si.inp +75 -0
- phonopy-2.45.1/example/Si-CRYSTAL/README +26 -0
- phonopy-2.45.1/example/Si-CRYSTAL/TEMPLATE +42 -0
- phonopy-2.45.1/example/Si-CRYSTAL/band.conf +3 -0
- phonopy-2.45.1/example/Si-CRYSTAL/crystal.o +852 -0
- phonopy-2.45.1/example/Si-CRYSTAL/supercell-001.o +4927 -0
- phonopy-2.45.1/example/Si-PWmat/OUT.FORCE-001 +132 -0
- phonopy-2.45.1/example/Si-PWmat/README.md +30 -0
- phonopy-2.45.1/example/Si-PWmat/atom.config +14 -0
- phonopy-2.45.1/example/Si-PWmat/band.conf +3 -0
- phonopy-2.45.1/example/Si-PWmat/etot.input +14 -0
- phonopy-2.45.1/example/Si-PWmat/mesh.conf +3 -0
- phonopy-2.45.1/example/Si-PWmat/mesh.yaml +13891 -0
- phonopy-2.45.1/example/Si-PWmat/supercell-001.config +70 -0
- phonopy-2.45.1/example/Si-PWmat/supercell.config +70 -0
- phonopy-2.45.1/example/Si-QE/README.md +26 -0
- phonopy-2.45.1/example/Si-QE/Si.in +34 -0
- phonopy-2.45.1/example/Si-QE/phonopy_disp.yaml +354 -0
- phonopy-2.45.1/example/Si-QE/supercell-001.out +1157 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR--1 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR--2 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR--3 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR--4 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR--5 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR-0 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR-1 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR-2 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR-3 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR-4 +25 -0
- phonopy-2.45.1/example/Si-QHA/POSCAR-5 +25 -0
- phonopy-2.45.1/example/Si-QHA/README +12 -0
- phonopy-2.45.1/example/Si-QHA/Si.py +67 -0
- phonopy-2.45.1/example/Si-QHA/disp.yaml +7 -0
- phonopy-2.45.1/example/Si-QHA/e-v.dat +11 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml--1 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml--2 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml--3 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml--4 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml--5 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml-0 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml-1 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml-2 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml-3 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml-4 +1281 -0
- phonopy-2.45.1/example/Si-QHA/thermal_properties.yaml-5 +1281 -0
- phonopy-2.45.1/example/Si-QHA/vasprun_xmls.tar.lzma +0 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/README +37 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/band.conf +4 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/control +12 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/coord +10 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/example-001/auxbasis +51 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/example-001/basis +33 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/example-001/control +81 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/example-001/coord +218 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/example-001/energy +3 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/example-001/gradient +435 -0
- phonopy-2.45.1/example/Si-TURBOMOLE/example-001/supercell-001.out +2004 -0
- phonopy-2.45.1/example/Si-abinit/README +20 -0
- phonopy-2.45.1/example/Si-abinit/Si.in +36 -0
- phonopy-2.45.1/example/Si-abinit/disp.yaml +140 -0
- phonopy-2.45.1/example/Si-abinit/supercell-001.out +1445 -0
- phonopy-2.45.1/example/Si-elk/INFO.OUT +2533 -0
- phonopy-2.45.1/example/Si-elk/README +20 -0
- phonopy-2.45.1/example/Si-elk/disp.yaml +140 -0
- phonopy-2.45.1/example/Si-elk/elk-unitcell.in +35 -0
- phonopy-2.45.1/example/Si-elk/elk.in +90 -0
- phonopy-2.45.1/example/Si-gruneisen/README +7 -0
- phonopy-2.45.1/example/Si-gruneisen/Si-gruneisen.py +56 -0
- phonopy-2.45.1/example/Si-gruneisen/minus/FORCE_SETS +69 -0
- phonopy-2.45.1/example/Si-gruneisen/minus/POSCAR-unitcell +24 -0
- phonopy-2.45.1/example/Si-gruneisen/minus/disp.yaml +140 -0
- phonopy-2.45.1/example/Si-gruneisen/minus/vasprun.xml +2602 -0
- phonopy-2.45.1/example/Si-gruneisen/orig/FORCE_SETS +69 -0
- phonopy-2.45.1/example/Si-gruneisen/orig/POSCAR-unitcell +24 -0
- phonopy-2.45.1/example/Si-gruneisen/orig/disp.yaml +140 -0
- phonopy-2.45.1/example/Si-gruneisen/orig/vasprun.xml +2602 -0
- phonopy-2.45.1/example/Si-gruneisen/plus/FORCE_SETS +69 -0
- phonopy-2.45.1/example/Si-gruneisen/plus/POSCAR-unitcell +24 -0
- phonopy-2.45.1/example/Si-gruneisen/plus/disp.yaml +140 -0
- phonopy-2.45.1/example/Si-gruneisen/plus/vasprun.xml +2602 -0
- phonopy-2.45.1/example/Si-lammps/README.md +72 -0
- phonopy-2.45.1/example/Si-lammps/generate_displacements.py +18 -0
- phonopy-2.45.1/example/Si-lammps/in.polymlp +10 -0
- phonopy-2.45.1/example/Si-lammps/lammps_forces_Si.0 +25 -0
- phonopy-2.45.1/example/Si-lammps/phonopy_disp.yaml +128 -0
- phonopy-2.45.1/example/Si-lammps/phonopy_unitcell.yaml +10 -0
- phonopy-2.45.1/example/Si-nosym/POSCAR +9 -0
- phonopy-2.45.1/example/Si-nosym/README +17 -0
- phonopy-2.45.1/example/Si-nosym/disp.yaml +115 -0
- phonopy-2.45.1/example/Si-nosym/mesh.conf +3 -0
- phonopy-2.45.1/example/Si-nosym/vasprun_xmls.tar.lzma +0 -0
- phonopy-2.45.1/example/Si-siesta/README +24 -0
- phonopy-2.45.1/example/Si-siesta/Si.fdf +48 -0
- phonopy-2.45.1/example/Si-siesta/disp-001/Si.FA +55 -0
- phonopy-2.45.1/example/Si-siesta/run_example.sh +83 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/BORN +4 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/FORCE_SETS.xz +0 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/Punitcell.inp +103 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/README.md +37 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/force.inp +105 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/gen_supercell_xyz.py +213 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/get_born_cp2k.py +260 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/make_displ_dirs.sh +24 -0
- phonopy-2.45.1/example/SiO2-CP2K-xyz/polar.inp +120 -0
- phonopy-2.45.1/example/SiO2-HP/BORN +4 -0
- phonopy-2.45.1/example/SiO2-HP/FORCE_SETS +155 -0
- phonopy-2.45.1/example/SiO2-HP/INCAR +12 -0
- phonopy-2.45.1/example/SiO2-HP/POSCAR-unitcell +20 -0
- phonopy-2.45.1/example/SiO2-HP/README.md +21 -0
- phonopy-2.45.1/example/SiO2-HP/phonopy_disp.yaml +293 -0
- phonopy-2.45.1/example/SiO2-HP/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/SnO2/BORN +4 -0
- phonopy-2.45.1/example/SnO2/FORCE_SETS +227 -0
- phonopy-2.45.1/example/SnO2/POSCAR-unitcell +14 -0
- phonopy-2.45.1/example/SnO2/README.md +27 -0
- phonopy-2.45.1/example/SnO2/phonopy_disp.yaml +389 -0
- phonopy-2.45.1/example/SnO2/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/Ti-lammps/README.md +85 -0
- phonopy-2.45.1/example/Ti-lammps/in.polymlp +10 -0
- phonopy-2.45.1/example/Ti-lammps/lammps_forces_Ti.0 +105 -0
- phonopy-2.45.1/example/Ti-lammps/lammps_structure_Ti +19 -0
- phonopy-2.45.1/example/Ti-lammps/phonopy_disp.yaml +453 -0
- phonopy-2.45.1/example/TiO2-anatase/BORN +4 -0
- phonopy-2.45.1/example/TiO2-anatase/FORCE_SETS +782 -0
- phonopy-2.45.1/example/TiO2-anatase/POSCAR-unitcell +19 -0
- phonopy-2.45.1/example/TiO2-anatase/README.md +10 -0
- phonopy-2.45.1/example/TiO2-anatase/phonopy_disp.yaml +914 -0
- phonopy-2.45.1/example/TiO2-anatase/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/ZnO/BORN +4 -0
- phonopy-2.45.1/example/ZnO/FORCE_SETS +212 -0
- phonopy-2.45.1/example/ZnO/POSCAR-unitcell +11 -0
- phonopy-2.45.1/example/ZnO/README.md +10 -0
- phonopy-2.45.1/example/ZnO/phonopy_disp.yaml +225 -0
- phonopy-2.45.1/example/ZnO/vaspruns.tar.lzma +0 -0
- phonopy-2.45.1/example/diamond-FHI-aims/README.md +14 -0
- phonopy-2.45.1/example/diamond-FHI-aims/band.conf +3 -0
- phonopy-2.45.1/example/diamond-FHI-aims/disp-001/aims.out +4320 -0
- phonopy-2.45.1/example/diamond-FHI-aims/disp-001/control.in +84 -0
- phonopy-2.45.1/example/diamond-FHI-aims/disp-001/geometry.in +69 -0
- phonopy-2.45.1/example/diamond-FHI-aims/geometry.in +16 -0
- phonopy-2.45.1/example/diamond-dftb/README +18 -0
- phonopy-2.45.1/example/diamond-dftb/band.conf +3 -0
- phonopy-2.45.1/example/diamond-dftb/dftb_in.hsd +48 -0
- phonopy-2.45.1/example/diamond-dftb/geo.gen +14 -0
- phonopy-2.45.1/example/diamond-dftb/results.tag +1381 -0
- phonopy-2.45.1/phonopy/__init__.py +43 -0
- phonopy-2.45.1/phonopy/_version.py +34 -0
- phonopy-2.45.1/phonopy/api_gruneisen.py +215 -0
- phonopy-2.45.1/phonopy/api_phonopy.py +3562 -0
- phonopy-2.45.1/phonopy/api_qha.py +496 -0
- phonopy-2.45.1/phonopy/cui/collect_cell_info.py +569 -0
- phonopy-2.45.1/phonopy/cui/create_force_sets.py +272 -0
- phonopy-2.45.1/phonopy/cui/load.py +352 -0
- phonopy-2.45.1/phonopy/cui/load_helper.py +539 -0
- phonopy-2.45.1/phonopy/cui/phonopy_argparse.py +974 -0
- phonopy-2.45.1/phonopy/cui/phonopy_gruneisen_script.py +459 -0
- phonopy-2.45.1/phonopy/cui/phonopy_qha_script.py +367 -0
- phonopy-2.45.1/phonopy/cui/phonopy_script.py +2221 -0
- phonopy-2.45.1/phonopy/cui/phonopy_vasp_efe_script.py +176 -0
- phonopy-2.45.1/phonopy/cui/settings.py +2045 -0
- phonopy-2.45.1/phonopy/cui/show_symmetry.py +213 -0
- phonopy-2.45.1/phonopy/exception.py +95 -0
- phonopy-2.45.1/phonopy/file_IO.py +1027 -0
- phonopy-2.45.1/phonopy/gruneisen/band_structure.py +310 -0
- phonopy-2.45.1/phonopy/gruneisen/core.py +158 -0
- phonopy-2.45.1/phonopy/gruneisen/mesh.py +227 -0
- phonopy-2.45.1/phonopy/harmonic/derivative_dynmat.py +362 -0
- phonopy-2.45.1/phonopy/harmonic/displacement.py +330 -0
- phonopy-2.45.1/phonopy/harmonic/dynamical_matrix.py +1198 -0
- phonopy-2.45.1/phonopy/harmonic/dynmat_to_fc.py +488 -0
- phonopy-2.45.1/phonopy/harmonic/force_constants.py +922 -0
- phonopy-2.45.1/phonopy/interface/abacus.py +392 -0
- phonopy-2.45.1/phonopy/interface/abinit.py +313 -0
- phonopy-2.45.1/phonopy/interface/aims.py +244 -0
- phonopy-2.45.1/phonopy/interface/alm.py +412 -0
- phonopy-2.45.1/phonopy/interface/calculator.py +1050 -0
- phonopy-2.45.1/phonopy/interface/castep.py +267 -0
- phonopy-2.45.1/phonopy/interface/cif.py +125 -0
- phonopy-2.45.1/phonopy/interface/cp2k.py +426 -0
- phonopy-2.45.1/phonopy/interface/crystal.py +389 -0
- phonopy-2.45.1/phonopy/interface/dftbp.py +241 -0
- phonopy-2.45.1/phonopy/interface/elk.py +235 -0
- phonopy-2.45.1/phonopy/interface/fc_calculator.py +355 -0
- phonopy-2.45.1/phonopy/interface/fleur.py +301 -0
- phonopy-2.45.1/phonopy/interface/lammps.py +413 -0
- phonopy-2.45.1/phonopy/interface/mlp.py +104 -0
- phonopy-2.45.1/phonopy/interface/phonopy_yaml.py +1175 -0
- phonopy-2.45.1/phonopy/interface/pwmat.py +173 -0
- phonopy-2.45.1/phonopy/interface/pypolymlp.py +439 -0
- phonopy-2.45.1/phonopy/interface/qe.py +692 -0
- phonopy-2.45.1/phonopy/interface/qlm.py +235 -0
- phonopy-2.45.1/phonopy/interface/siesta.py +264 -0
- phonopy-2.45.1/phonopy/interface/symfc.py +546 -0
- phonopy-2.45.1/phonopy/interface/turbomole.py +239 -0
- phonopy-2.45.1/phonopy/interface/vasp.py +1662 -0
- phonopy-2.45.1/phonopy/interface/wien2k.py +460 -0
- phonopy-2.45.1/phonopy/phonon/animation.py +345 -0
- phonopy-2.45.1/phonopy/phonon/band_structure.py +1015 -0
- phonopy-2.45.1/phonopy/phonon/character_table.py +1119 -0
- phonopy-2.45.1/phonopy/phonon/degeneracy.py +167 -0
- phonopy-2.45.1/phonopy/phonon/dos.py +640 -0
- phonopy-2.45.1/phonopy/phonon/group_velocity.py +330 -0
- phonopy-2.45.1/phonopy/phonon/irreps.py +714 -0
- phonopy-2.45.1/phonopy/phonon/mesh.py +466 -0
- phonopy-2.45.1/phonopy/phonon/modulation.py +301 -0
- phonopy-2.45.1/phonopy/phonon/moment.py +115 -0
- phonopy-2.45.1/phonopy/phonon/qpoints.py +257 -0
- phonopy-2.45.1/phonopy/phonon/random_displacements.py +579 -0
- phonopy-2.45.1/phonopy/phonon/tetrahedron_mesh.py +294 -0
- phonopy-2.45.1/phonopy/phonon/thermal_displacement.py +475 -0
- phonopy-2.45.1/phonopy/phonon/thermal_properties.py +745 -0
- phonopy-2.45.1/phonopy/physical_units.py +244 -0
- phonopy-2.45.1/phonopy/py.typed +0 -0
- phonopy-2.45.1/phonopy/qha/core.py +1174 -0
- phonopy-2.45.1/phonopy/qha/electron.py +237 -0
- phonopy-2.45.1/phonopy/qha/eos.py +155 -0
- phonopy-2.45.1/phonopy/scripts/phonopy.py +43 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_bandplot.py +827 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_calc_convert.py +261 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_crystal_born.py +150 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_gruneisen.py +40 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_gruneisenplot.py +306 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_load.py +45 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_pdosplot.py +216 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_propplot.py +225 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_qe_born.py +166 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_qha.py +40 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_tdplot.py +222 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_vasp_born.py +178 -0
- phonopy-2.45.1/phonopy/scripts/phonopy_vasp_efe.py +41 -0
- phonopy-2.45.1/phonopy/spectrum/dynamic_structure_factor.py +328 -0
- phonopy-2.45.1/phonopy/spectrum/velocity.py +225 -0
- phonopy-2.45.1/phonopy/sscha/core.py +237 -0
- phonopy-2.45.1/phonopy/structure/atoms.py +1341 -0
- phonopy-2.45.1/phonopy/structure/brillouin_zone.py +171 -0
- phonopy-2.45.1/phonopy/structure/cells.py +1868 -0
- phonopy-2.45.1/phonopy/structure/dataset.py +108 -0
- phonopy-2.45.1/phonopy/structure/grid_points.py +671 -0
- phonopy-2.45.1/phonopy/structure/snf.py +419 -0
- phonopy-2.45.1/phonopy/structure/symmetry.py +753 -0
- phonopy-2.45.1/phonopy/structure/tetrahedron_method.py +778 -0
- phonopy-2.45.1/phonopy/unfolding/core.py +388 -0
- phonopy-2.45.1/phonopy/units.py +95 -0
- phonopy-2.45.1/phonopy/utils.py +65 -0
- phonopy-2.45.1/phonopy/version.py +37 -0
- phonopy-2.45.1/pyproject.toml +80 -0
- phonopy-2.45.1/test/BORN_NaCl +4 -0
- phonopy-2.45.1/test/BORN_SnO2 +4 -0
- phonopy-2.45.1/test/BORN_TiO2 +4 -0
- phonopy-2.45.1/test/FORCE_SETS_NaCl +136 -0
- phonopy-2.45.1/test/FORCE_SETS_SnO2 +377 -0
- phonopy-2.45.1/test/FORCE_SETS_TiO2 +668 -0
- phonopy-2.45.1/test/POSCAR_NaCl +15 -0
- phonopy-2.45.1/test/api/test_api_phonopy.py +348 -0
- phonopy-2.45.1/test/conftest.py +512 -0
- phonopy-2.45.1/test/cui/phonopy_command/NaCl/phonopy_disp.yaml.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_command/NaCl/vasprun.xml-001.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_command/NaCl/vasprun.xml-002.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_command/POSCAR-unitcell_Cr +10 -0
- phonopy-2.45.1/test/cui/phonopy_command/dim.conf +2 -0
- phonopy-2.45.1/test/cui/phonopy_command/mesh.conf +1 -0
- phonopy-2.45.1/test/cui/phonopy_command/test_phonopy_script.py +444 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-0.995/BORN +4 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-0.995/FORCE_SETS +136 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-0.995/POSCAR-unitcell +16 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.00/BORN +4 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.00/FORCE_SETS +136 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.00/POSCAR-unitcell +16 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.005/BORN +4 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.005/FORCE_SETS +136 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.005/POSCAR-unitcell +16 -0
- phonopy-2.45.1/test/cui/phonopy_gruneisen/test_phonopy_gruneisen_script.py +111 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/e-v.dat +12 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/fe-v.dat +153 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-00.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-01.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-02.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-03.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-04.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-05.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-06.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-07.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-08.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-09.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-10.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_qha/test_phonopy_qha_script.py +149 -0
- phonopy-2.45.1/test/cui/phonopy_vasp_efe/test_phonopy_vasp_efe_script.py +66 -0
- phonopy-2.45.1/test/cui/phonopy_vasp_efe/vasprun.xmls/vasprun.xml-00.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_vasp_efe/vasprun.xmls/vasprun.xml-01.xz +0 -0
- phonopy-2.45.1/test/cui/phonopy_vasp_efe/vasprun.xmls/vasprun.xml-02.xz +0 -0
- phonopy-2.45.1/test/gruneisen/test_gruneisen.py +128 -0
- phonopy-2.45.1/test/harmonic/test_derivative_dynmat.py +180 -0
- phonopy-2.45.1/test/harmonic/test_displacements.py +289 -0
- phonopy-2.45.1/test/harmonic/test_dynamical_matrix.py +1103 -0
- phonopy-2.45.1/test/harmonic/test_dynmat_to_fc.py +171 -0
- phonopy-2.45.1/test/harmonic/test_force_constants.py +159 -0
- phonopy-2.45.1/test/interface/BaGa2-wien2k.yaml +14 -0
- phonopy-2.45.1/test/interface/BaGa2.struct +114 -0
- phonopy-2.45.1/test/interface/NaCl-abacus-mag-noncolin.stru +33 -0
- phonopy-2.45.1/test/interface/NaCl-abacus-mag-noncolin.yaml +460 -0
- phonopy-2.45.1/test/interface/NaCl-abacus-mag.stru +33 -0
- phonopy-2.45.1/test/interface/NaCl-abacus-mag.yaml +444 -0
- phonopy-2.45.1/test/interface/NaCl-abacus.out +1165 -0
- phonopy-2.45.1/test/interface/NaCl-abacus.stru +33 -0
- phonopy-2.45.1/test/interface/NaCl-abinit-pwscf.yaml +29 -0
- phonopy-2.45.1/test/interface/NaCl-abinit.in +30 -0
- phonopy-2.45.1/test/interface/NaCl-castep.cell +1002 -0
- phonopy-2.45.1/test/interface/NaCl-castep.yaml +29 -0
- phonopy-2.45.1/test/interface/NaCl-pwscf-2.in +37 -0
- phonopy-2.45.1/test/interface/NaCl-pwscf-Xn.in +38 -0
- phonopy-2.45.1/test/interface/NaCl-pwscf-angstrom.in +37 -0
- phonopy-2.45.1/test/interface/NaCl-pwscf-bohr.in +37 -0
- phonopy-2.45.1/test/interface/NaCl-pwscf.in +37 -0
- phonopy-2.45.1/test/interface/NaCl-q2r.fc.xz +0 -0
- phonopy-2.45.1/test/interface/NaCl-q2r.in +32 -0
- phonopy-2.45.1/test/interface/NaCl-vasp.yaml +29 -0
- phonopy-2.45.1/test/interface/STRU.in +49 -0
- phonopy-2.45.1/test/interface/Si-CP2K.inp +19 -0
- phonopy-2.45.1/test/interface/Si-CP2K.yaml +29 -0
- phonopy-2.45.1/test/interface/Si-CRYSTAL.o +852 -0
- phonopy-2.45.1/test/interface/Si-CRYSTAL.yaml +11 -0
- phonopy-2.45.1/test/interface/Si-TURBOMOLE-control +19 -0
- phonopy-2.45.1/test/interface/Si-TURBOMOLE.yaml +29 -0
- phonopy-2.45.1/test/interface/Si-pwmat.config +14 -0
- phonopy-2.45.1/test/interface/Si-pwmat.yaml +428 -0
- phonopy-2.45.1/test/interface/XDATCAR-NaCl +1033 -0
- phonopy-2.45.1/test/interface/elk.in +90 -0
- phonopy-2.45.1/test/interface/fleur_inpgen +16 -0
- phonopy-2.45.1/test/interface/lammps_forces_Ti.0 +105 -0
- phonopy-2.45.1/test/interface/lammps_structure_H +15 -0
- phonopy-2.45.1/test/interface/lammps_structure_Ti +19 -0
- phonopy-2.45.1/test/interface/lammps_structure_Ti_id +19 -0
- phonopy-2.45.1/test/interface/nac.yaml +18 -0
- phonopy-2.45.1/test/interface/phonopy.yaml +353 -0
- phonopy-2.45.1/test/interface/phonopy_symcells_NaCl.yaml +42 -0
- phonopy-2.45.1/test/interface/test_CP2K.py +33 -0
- phonopy-2.45.1/test/interface/test_CRYSTAL.py +23 -0
- phonopy-2.45.1/test/interface/test_TURBOMOLE.py +23 -0
- phonopy-2.45.1/test/interface/test_abacus.py +81 -0
- phonopy-2.45.1/test/interface/test_abinit.py +32 -0
- phonopy-2.45.1/test/interface/test_castep.py +23 -0
- phonopy-2.45.1/test/interface/test_conversion.py +115 -0
- phonopy-2.45.1/test/interface/test_lammps.py +93 -0
- phonopy-2.45.1/test/interface/test_phonopy_yaml.py +211 -0
- phonopy-2.45.1/test/interface/test_pwmat.py +34 -0
- phonopy-2.45.1/test/interface/test_pypolymlp.py +421 -0
- phonopy-2.45.1/test/interface/test_qe.py +119 -0
- phonopy-2.45.1/test/interface/test_qlm.py +85 -0
- phonopy-2.45.1/test/interface/test_symfc.py +97 -0
- phonopy-2.45.1/test/interface/test_vasp.py +198 -0
- phonopy-2.45.1/test/interface/test_wien2k.py +24 -0
- phonopy-2.45.1/test/interface/vasprun.xml.tar.bz2 +0 -0
- phonopy-2.45.1/test/mlpsscha_KCl-120.pmlp +28 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_Amm2 +2093 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_I4_1a +992 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P-3m1 +746 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P-4 +1940 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P-42_1m +893 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P-43m +337 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P-6 +1940 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P-62m +338 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P-6m2 +959 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P2 +5882 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P222_1 +5522 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P2_13 +596 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P31m +4490 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P3m1 +1574 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P4_1 +6290 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P4_332 +828 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P4mm +1211 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P6 +3692 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_P6_222 +1472 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_Pa-3 +299 -0
- phonopy-2.45.1/test/phonon/FORCE_SETS_Pc +6290 -0
- phonopy-2.45.1/test/phonon/POSCAR_Amm2 +18 -0
- phonopy-2.45.1/test/phonon/POSCAR_I4_1a +32 -0
- phonopy-2.45.1/test/phonon/POSCAR_P-3m1 +13 -0
- phonopy-2.45.1/test/phonon/POSCAR_P-4 +32 -0
- phonopy-2.45.1/test/phonon/POSCAR_P-42_1m +16 -0
- phonopy-2.45.1/test/phonon/POSCAR_P-43m +16 -0
- phonopy-2.45.1/test/phonon/POSCAR_P-6 +26 -0
- phonopy-2.45.1/test/phonon/POSCAR_P-62m +27 -0
- phonopy-2.45.1/test/phonon/POSCAR_P-6m2 +15 -0
- phonopy-2.45.1/test/phonon/POSCAR_P2 +20 -0
- phonopy-2.45.1/test/phonon/POSCAR_P222_1 +36 -0
- phonopy-2.45.1/test/phonon/POSCAR_P2_13 +20 -0
- phonopy-2.45.1/test/phonon/POSCAR_P31m +41 -0
- phonopy-2.45.1/test/phonon/POSCAR_P3m1 +12 -0
- phonopy-2.45.1/test/phonon/POSCAR_P4_1 +40 -0
- phonopy-2.45.1/test/phonon/POSCAR_P4_332 +64 -0
- phonopy-2.45.1/test/phonon/POSCAR_P4mm +13 -0
- phonopy-2.45.1/test/phonon/POSCAR_P6 +38 -0
- phonopy-2.45.1/test/phonon/POSCAR_P6_222 +26 -0
- phonopy-2.45.1/test/phonon/POSCAR_Pa-3 +20 -0
- phonopy-2.45.1/test/phonon/POSCAR_Pc +24 -0
- phonopy-2.45.1/test/phonon/eigvecs_ii_TiPN3.txt +900 -0
- phonopy-2.45.1/test/phonon/eigvecs_ij_TiPN3.txt +1350 -0
- phonopy-2.45.1/test/phonon/test_band_structure.py +99 -0
- phonopy-2.45.1/test/phonon/test_dos.py +114 -0
- phonopy-2.45.1/test/phonon/test_group_velocity.py +105 -0
- phonopy-2.45.1/test/phonon/test_irreps.py +1302 -0
- phonopy-2.45.1/test/phonon/test_mesh.py +215 -0
- phonopy-2.45.1/test/phonon/test_modulation.py +47 -0
- phonopy-2.45.1/test/phonon/test_moment.py +66 -0
- phonopy-2.45.1/test/phonon/test_qpoints.py +36 -0
- phonopy-2.45.1/test/phonon/test_random_displacements.py +1023 -0
- phonopy-2.45.1/test/phonon/test_tetrahedron_mesh.py +78 -0
- phonopy-2.45.1/test/phonon/test_thermal_displacement.py +153 -0
- phonopy-2.45.1/test/phonon/test_thermal_properties.py +80 -0
- phonopy-2.45.1/test/phonon/test_thermal_properties_classical.py +84 -0
- phonopy-2.45.1/test/phonopy_KCl.yaml +361 -0
- phonopy-2.45.1/test/phonopy_NaCl_unitcell1.yaml +30 -0
- phonopy-2.45.1/test/phonopy_NaCl_unitcell2.yaml +30 -0
- phonopy-2.45.1/test/phonopy_SrTiO3.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_disp_NaCl.yaml +356 -0
- phonopy-2.45.1/test/phonopy_disp_SnO2.yaml +396 -0
- phonopy-2.45.1/test/phonopy_disp_TiO2.yaml +563 -0
- phonopy-2.45.1/test/phonopy_load/test_phonopy_load.py +36 -0
- phonopy-2.45.1/test/phonopy_params_NaCl-0.995.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_params_NaCl-1.00.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_params_NaCl-1.005.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_params_NaCl-QE.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_params_NaCl-fd.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_params_NaCl-rd.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_params_Si.yaml +125 -0
- phonopy-2.45.1/test/phonopy_params_TiPN3.yaml.xz +0 -0
- phonopy-2.45.1/test/phonopy_params_Zr3N4.yaml +511 -0
- phonopy-2.45.1/test/polymlp_KCL-120.yaml +44 -0
- phonopy-2.45.1/test/polymlp_KCL-120.yaml.xz +0 -0
- phonopy-2.45.1/test/qha/fe-v-Cu.dat +153 -0
- phonopy-2.45.1/test/qha/test_QHA.py +357 -0
- phonopy-2.45.1/test/qha/test_QHA_efe.py +370 -0
- phonopy-2.45.1/test/qha/test_electron.py +220 -0
- phonopy-2.45.1/test/qha/tprop-Cu.dat +453 -0
- phonopy-2.45.1/test/qha/tprop-Si.dat +633 -0
- phonopy-2.45.1/test/spectrum/XDATCAR +458 -0
- phonopy-2.45.1/test/spectrum/test_dynamic_structure_factor.py +316 -0
- phonopy-2.45.1/test/spectrum/test_velocity.py +28 -0
- phonopy-2.45.1/test/spectrum/velocities.dat +400 -0
- phonopy-2.45.1/test/sscha/test_core.py +40 -0
- phonopy-2.45.1/test/structure/Si-conv.yaml +29 -0
- phonopy-2.45.1/test/structure/SiO2-123.yaml +113 -0
- phonopy-2.45.1/test/structure/test_atoms.py +363 -0
- phonopy-2.45.1/test/structure/test_brillouin_zone.py +57 -0
- phonopy-2.45.1/test/structure/test_cells.py +548 -0
- phonopy-2.45.1/test/structure/test_grid_points.py +742 -0
- phonopy-2.45.1/test/structure/test_symmetry.py +337 -0
- phonopy-2.45.1/test/structure/test_tetrahedron_method.py +1225 -0
- phonopy-2.45.1/test/structure/tio2_qpoints.yaml +66 -0
- phonopy-2.45.1/test/test_exception.py +14 -0
- phonopy-2.45.1/test/test_file_IO.py +43 -0
- phonopy-2.45.1/test/unfolding/FORCE_SETS +136 -0
- phonopy-2.45.1/test/unfolding/bin-unfolding.dat +38 -0
- phonopy-2.45.1/test/unfolding/bin-unfolding_to_atoms.dat +36 -0
- phonopy-2.45.1/test/unfolding/plot_band.py +18 -0
- phonopy-2.45.1/test/unfolding/test_unfolding.py +175 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.20)
|
|
2
|
+
|
|
3
|
+
if(NOT SKBUILD_PROJECT_NAME)
|
|
4
|
+
set(SKBUILD_PROJECT_NAME phonopy)
|
|
5
|
+
endif()
|
|
6
|
+
|
|
7
|
+
if(PHONOPY_LIBS)
|
|
8
|
+
project(phonopy LANGUAGES C)
|
|
9
|
+
set(CMAKE_MACOSX_RPATH 1)
|
|
10
|
+
set(CMAKE_C_FLAGS_RELEASE "-Wall -O2")
|
|
11
|
+
set(CMAKE_C_FLAGS_DEBUG "-g -DTHMWARNING")
|
|
12
|
+
include(GNUInstallDirs)
|
|
13
|
+
|
|
14
|
+
# Version numbers
|
|
15
|
+
file(READ ${PROJECT_SOURCE_DIR}/phonopy/version.py VERSION_FILE)
|
|
16
|
+
string(REGEX MATCH "__version__.*([0-9]+)[.]([0-9]+)[.]([0-9]+)" phonopy_version
|
|
17
|
+
${VERSION_FILE})
|
|
18
|
+
set(PHONOPY_MAJOR_VERSION ${CMAKE_MATCH_1})
|
|
19
|
+
set(PHONOPY_MINOR_VERSION ${CMAKE_MATCH_2})
|
|
20
|
+
set(PHONOPY_MICRO_VERSION ${CMAKE_MATCH_3})
|
|
21
|
+
set(SERIAL
|
|
22
|
+
"${PHONOPY_MAJOR_VERSION}.${PHONOPY_MINOR_VERSION}.${PHONOPY_MICRO_VERSION}")
|
|
23
|
+
set(SOSERIAL "1")
|
|
24
|
+
else()
|
|
25
|
+
project(${SKBUILD_PROJECT_NAME})
|
|
26
|
+
set(DEV_MODULE Development.Module)
|
|
27
|
+
find_package(
|
|
28
|
+
Python 3.9 REQUIRED
|
|
29
|
+
COMPONENTS Interpreter ${DEV_MODULE}
|
|
30
|
+
OPTIONAL_COMPONENTS Development.SABIModule)
|
|
31
|
+
endif()
|
|
32
|
+
|
|
33
|
+
cmake_policy(SET CMP0007 NEW)
|
|
34
|
+
|
|
35
|
+
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
36
|
+
set(CMAKE_BUILD_TYPE
|
|
37
|
+
Release
|
|
38
|
+
CACHE STRING "Choose the type of build." FORCE)
|
|
39
|
+
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
|
|
40
|
+
"MinSizeRel" "RelWithDebInfo")
|
|
41
|
+
endif()
|
|
42
|
+
|
|
43
|
+
option(PHONOPY_USE_OMP "Build with OpenMP support" ON)
|
|
44
|
+
|
|
45
|
+
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
|
46
|
+
message(STATUS "CMAKE_SYSTEM_PREFIX_PATH: ${CMAKE_SYSTEM_PREFIX_PATH}")
|
|
47
|
+
|
|
48
|
+
if(PHONOPY_USE_OMP)
|
|
49
|
+
find_package(OpenMP)
|
|
50
|
+
|
|
51
|
+
if(OpenMP_FOUND)
|
|
52
|
+
message(STATUS "OpenMP libs: ${OpenMP_C_LIBRARIES}")
|
|
53
|
+
message(STATUS "OpenMP flags: ${OpenMP_C_FLAGS}")
|
|
54
|
+
endif()
|
|
55
|
+
else()
|
|
56
|
+
message(STATUS "OpenMP is not used.")
|
|
57
|
+
set(OpenMP_FOUND OFF) # cmake-lint: disable=C0103
|
|
58
|
+
endif()
|
|
59
|
+
|
|
60
|
+
set(SOURCES_PHONOPY
|
|
61
|
+
${PROJECT_SOURCE_DIR}/c/phonopy.c ${PROJECT_SOURCE_DIR}/c/dynmat.c
|
|
62
|
+
${PROJECT_SOURCE_DIR}/c/derivative_dynmat.c ${PROJECT_SOURCE_DIR}/c/rgrid.c
|
|
63
|
+
${PROJECT_SOURCE_DIR}/c/tetrahedron_method.c)
|
|
64
|
+
|
|
65
|
+
if(BUILD_SHARED_LIBS)
|
|
66
|
+
# Shared library
|
|
67
|
+
add_library(phonopy_libs SHARED ${SOURCES_PHONOPY})
|
|
68
|
+
|
|
69
|
+
if(OpenMP_FOUND)
|
|
70
|
+
target_link_libraries(phonopy_libs PRIVATE OpenMP::OpenMP_C)
|
|
71
|
+
endif()
|
|
72
|
+
|
|
73
|
+
target_compile_definitions(phonopy_libs PRIVATE THM_EPSILON=1e-10)
|
|
74
|
+
else()
|
|
75
|
+
# Static link library
|
|
76
|
+
add_library(phonopy_libs STATIC ${SOURCES_PHONOPY})
|
|
77
|
+
|
|
78
|
+
if(OpenMP_FOUND)
|
|
79
|
+
target_link_libraries(phonopy_libs PRIVATE OpenMP::OpenMP_C)
|
|
80
|
+
endif()
|
|
81
|
+
|
|
82
|
+
target_compile_definitions(phonopy_libs PRIVATE THM_EPSILON=1e-10)
|
|
83
|
+
endif()
|
|
84
|
+
|
|
85
|
+
if(PHONOPY_LIBS)
|
|
86
|
+
install(FILES ${PROJECT_SOURCE_DIR}/c/phonopy.h
|
|
87
|
+
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
|
88
|
+
|
|
89
|
+
if(BUILD_SHARED_LIBS)
|
|
90
|
+
install(TARGETS phonopy_libs LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
91
|
+
set_property(TARGET phonopy_libs PROPERTY VERSION ${SERIAL})
|
|
92
|
+
set_property(TARGET phonopy_libs PROPERTY SOVERSION ${SOSERIAL})
|
|
93
|
+
else()
|
|
94
|
+
install(TARGETS phonopy_libs ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
95
|
+
set_property(TARGET phonopy_libs PROPERTY VERSION ${SERIAL})
|
|
96
|
+
set_property(TARGET phonopy_libs PROPERTY SOVERSION ${SOSERIAL})
|
|
97
|
+
set_property(TARGET phonopy_libs PROPERTY OUTPUT_NAME phonopy_libs)
|
|
98
|
+
endif()
|
|
99
|
+
else()
|
|
100
|
+
set_target_properties(phonopy_libs PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
101
|
+
|
|
102
|
+
execute_process(
|
|
103
|
+
COMMAND "${Python_EXECUTABLE}" -m nanobind --cmake_dir
|
|
104
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
105
|
+
OUTPUT_VARIABLE NB_DIR)
|
|
106
|
+
list(APPEND CMAKE_PREFIX_PATH "${NB_DIR}")
|
|
107
|
+
find_package(nanobind CONFIG REQUIRED)
|
|
108
|
+
nanobind_add_module(_phonopy STABLE_ABI ${PROJECT_SOURCE_DIR}/c/phonopy.h
|
|
109
|
+
${PROJECT_SOURCE_DIR}/c/_phonopy.cpp)
|
|
110
|
+
|
|
111
|
+
if(OpenMP_FOUND)
|
|
112
|
+
target_link_libraries(_phonopy PRIVATE phonopy_libs OpenMP::OpenMP_C)
|
|
113
|
+
else()
|
|
114
|
+
target_link_libraries(_phonopy PRIVATE phonopy_libs)
|
|
115
|
+
endif()
|
|
116
|
+
|
|
117
|
+
target_compile_definitions(_phonopy PRIVATE THM_EPSILON=1e-10)
|
|
118
|
+
install(TARGETS _phonopy LIBRARY DESTINATION ${SKBUILD_PROJECT_NAME})
|
|
119
|
+
endif()
|
phonopy-2.45.1/LICENSE
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Copyright (c) 2014-2024, Phonopy. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions
|
|
5
|
+
are met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
10
|
+
notice, this list of conditions and the following disclaimer in the
|
|
11
|
+
documentation and/or other materials provided with the distribution.
|
|
12
|
+
* Neither the name of the phonopy project nor the
|
|
13
|
+
names of its contributors may be used to endorse or promote products
|
|
14
|
+
derived from this software without specific prior written permission.
|
|
15
|
+
|
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
17
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
18
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
19
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT
|
|
20
|
+
HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
21
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
22
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
23
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
24
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
25
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
26
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
phonopy-2.45.1/PKG-INFO
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: phonopy
|
|
3
|
+
Version: 2.45.1
|
|
4
|
+
Summary: This is the phonopy module.
|
|
5
|
+
Author-Email: Atsushi Togo <atz.togo@gmail.com>
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Project-URL: Homepage, https://phonopy.github.io/phonopy/
|
|
9
|
+
Project-URL: Repository, https://github.com/phonopy/phonopy
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Requires-Dist: numpy>=1.17.0
|
|
12
|
+
Requires-Dist: PyYAML>=5.3
|
|
13
|
+
Requires-Dist: matplotlib>=2.2.2
|
|
14
|
+
Requires-Dist: h5py>=3.0
|
|
15
|
+
Requires-Dist: spglib>=2.5
|
|
16
|
+
Requires-Dist: symfc>=1.5
|
|
17
|
+
Provides-Extra: cp2k
|
|
18
|
+
Requires-Dist: cp2k-input-tools; extra == "cp2k"
|
|
19
|
+
Provides-Extra: seekpath
|
|
20
|
+
Requires-Dist: seekpath; extra == "seekpath"
|
|
21
|
+
Provides-Extra: pypolymlp
|
|
22
|
+
Requires-Dist: pypolymlp>=0.10.0; extra == "pypolymlp"
|
|
23
|
+
Provides-Extra: tools
|
|
24
|
+
Requires-Dist: seekpath; extra == "tools"
|
|
25
|
+
Requires-Dist: pypolymlp>=0.10.0; extra == "tools"
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
[](https://anaconda.org/conda-forge/phonopy)
|
|
29
|
+
[](https://anaconda.org/conda-forge/phonopy)
|
|
30
|
+
[](https://pypi.python.org/pypi/phonopy)
|
|
31
|
+
[](https://codecov.io/gh/phonopy/phonopy)
|
|
32
|
+
|
|
33
|
+
# Phonopy
|
|
34
|
+
|
|
35
|
+
Phonon code mainly written in python. Phonopy user documentation is found at
|
|
36
|
+
http://phonopy.github.io/phonopy/
|
|
37
|
+
|
|
38
|
+
## Installation
|
|
39
|
+
|
|
40
|
+
See https://phonopy.github.io/phonopy/install.html.
|
|
41
|
+
|
|
42
|
+
## Mailing list for questions
|
|
43
|
+
|
|
44
|
+
Usual phonopy questions should be sent to phonopy mailing list
|
|
45
|
+
(https://sourceforge.net/p/phonopy/mailman/).
|
|
46
|
+
|
|
47
|
+
## Development
|
|
48
|
+
|
|
49
|
+
The development of phonopy is managed on the `develop` branch of github phonopy
|
|
50
|
+
repository.
|
|
51
|
+
|
|
52
|
+
- Github issues is the place to discuss about phonopy issues.
|
|
53
|
+
- Github pull request is the place to request merging source code.
|
|
54
|
+
|
|
55
|
+
### Formatting
|
|
56
|
+
|
|
57
|
+
Formatting rules are found in `pyproject.toml`.
|
|
58
|
+
|
|
59
|
+
### pre-commit
|
|
60
|
+
|
|
61
|
+
Pre-commit (https://pre-commit.com/) is mainly used for applying the formatting
|
|
62
|
+
rules automatically. Therefore, it is strongly encouraged to use it at or before
|
|
63
|
+
git-commit. Pre-commit is set-up and used in the following way:
|
|
64
|
+
|
|
65
|
+
- Installed by `pip install pre-commit`, `conda install pre_commit` or see
|
|
66
|
+
https://pre-commit.com/#install.
|
|
67
|
+
- pre-commit hook is installed by `pre-commit install`.
|
|
68
|
+
- pre-commit hook is run by `pre-commit run --all-files`.
|
|
69
|
+
|
|
70
|
+
Unless running pre-commit, pre-commit.ci may push the fix at PR by github
|
|
71
|
+
action. In this case, the fix should be merged by the contributor's repository.
|
|
72
|
+
|
|
73
|
+
### VSCode setting
|
|
74
|
+
- Not strictly, but VSCode's `settings.json` may be written like below
|
|
75
|
+
|
|
76
|
+
```json
|
|
77
|
+
"ruff.lint.args": [
|
|
78
|
+
"--config=${workspaceFolder}/pyproject.toml",
|
|
79
|
+
],
|
|
80
|
+
"[python]": {
|
|
81
|
+
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
82
|
+
"editor.codeActionsOnSave": {
|
|
83
|
+
"source.organizeImports": "explicit"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Documentation
|
|
89
|
+
|
|
90
|
+
Phonopy user documentation is written using python sphinx. The source files are
|
|
91
|
+
stored in `doc` directory. Please see how to write the documentation at
|
|
92
|
+
`doc/README.md`.
|
|
93
|
+
|
|
94
|
+
## How to run tests
|
|
95
|
+
|
|
96
|
+
Tests are written using pytest. To run tests, pytest has to be installed. The
|
|
97
|
+
tests can be run by
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
% pytest
|
|
101
|
+
```
|
phonopy-2.45.1/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
[](https://anaconda.org/conda-forge/phonopy)
|
|
2
|
+
[](https://anaconda.org/conda-forge/phonopy)
|
|
3
|
+
[](https://pypi.python.org/pypi/phonopy)
|
|
4
|
+
[](https://codecov.io/gh/phonopy/phonopy)
|
|
5
|
+
|
|
6
|
+
# Phonopy
|
|
7
|
+
|
|
8
|
+
Phonon code mainly written in python. Phonopy user documentation is found at
|
|
9
|
+
http://phonopy.github.io/phonopy/
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
See https://phonopy.github.io/phonopy/install.html.
|
|
14
|
+
|
|
15
|
+
## Mailing list for questions
|
|
16
|
+
|
|
17
|
+
Usual phonopy questions should be sent to phonopy mailing list
|
|
18
|
+
(https://sourceforge.net/p/phonopy/mailman/).
|
|
19
|
+
|
|
20
|
+
## Development
|
|
21
|
+
|
|
22
|
+
The development of phonopy is managed on the `develop` branch of github phonopy
|
|
23
|
+
repository.
|
|
24
|
+
|
|
25
|
+
- Github issues is the place to discuss about phonopy issues.
|
|
26
|
+
- Github pull request is the place to request merging source code.
|
|
27
|
+
|
|
28
|
+
### Formatting
|
|
29
|
+
|
|
30
|
+
Formatting rules are found in `pyproject.toml`.
|
|
31
|
+
|
|
32
|
+
### pre-commit
|
|
33
|
+
|
|
34
|
+
Pre-commit (https://pre-commit.com/) is mainly used for applying the formatting
|
|
35
|
+
rules automatically. Therefore, it is strongly encouraged to use it at or before
|
|
36
|
+
git-commit. Pre-commit is set-up and used in the following way:
|
|
37
|
+
|
|
38
|
+
- Installed by `pip install pre-commit`, `conda install pre_commit` or see
|
|
39
|
+
https://pre-commit.com/#install.
|
|
40
|
+
- pre-commit hook is installed by `pre-commit install`.
|
|
41
|
+
- pre-commit hook is run by `pre-commit run --all-files`.
|
|
42
|
+
|
|
43
|
+
Unless running pre-commit, pre-commit.ci may push the fix at PR by github
|
|
44
|
+
action. In this case, the fix should be merged by the contributor's repository.
|
|
45
|
+
|
|
46
|
+
### VSCode setting
|
|
47
|
+
- Not strictly, but VSCode's `settings.json` may be written like below
|
|
48
|
+
|
|
49
|
+
```json
|
|
50
|
+
"ruff.lint.args": [
|
|
51
|
+
"--config=${workspaceFolder}/pyproject.toml",
|
|
52
|
+
],
|
|
53
|
+
"[python]": {
|
|
54
|
+
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
55
|
+
"editor.codeActionsOnSave": {
|
|
56
|
+
"source.organizeImports": "explicit"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Documentation
|
|
62
|
+
|
|
63
|
+
Phonopy user documentation is written using python sphinx. The source files are
|
|
64
|
+
stored in `doc` directory. Please see how to write the documentation at
|
|
65
|
+
`doc/README.md`.
|
|
66
|
+
|
|
67
|
+
## How to run tests
|
|
68
|
+
|
|
69
|
+
Tests are written using pytest. To run tests, pytest has to be installed. The
|
|
70
|
+
tests can be run by
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
% pytest
|
|
74
|
+
```
|