phonopy 4.2.2__tar.gz → 4.3.0__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.
Files changed (801) hide show
  1. {phonopy-4.2.2 → phonopy-4.3.0}/PKG-INFO +2 -2
  2. phonopy-4.3.0/example/NaCl-wien2k/README.md +26 -0
  3. phonopy-4.3.0/example/NaCl-wien2k-P1/README.md +26 -0
  4. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/_version.py +3 -3
  5. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/api_phonopy.py +5 -1
  6. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/api_qha.py +7 -7
  7. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/collect_cell_info.py +1 -1
  8. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/phonopy_vasp_efe_script.py +66 -6
  9. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/show_symmetry.py +40 -17
  10. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/harmonic/derivative_dynmat.py +7 -6
  11. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/harmonic/dynamical_matrix.py +168 -19
  12. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/harmonic/force_constants.py +15 -17
  13. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/calculator.py +2 -4
  14. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/elk.py +2 -2
  15. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/fleur.py +2 -2
  16. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/vasp.py +226 -126
  17. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/mesh.py +18 -8
  18. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/qpoints.py +12 -27
  19. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/atoms.py +45 -1
  20. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/cells.py +287 -134
  21. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/mixture.py +45 -15
  22. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/symmetry.py +24 -32
  23. {phonopy-4.2.2 → phonopy-4.3.0}/pyproject.toml +1 -1
  24. {phonopy-4.2.2 → phonopy-4.3.0}/test/api/test_api_phonopy.py +26 -0
  25. phonopy-4.3.0/test/cui/phonopy_vasp_efe/test_phonopy_vasp_efe_script.py +285 -0
  26. phonopy-4.3.0/test/cui/test_show_symmetry.py +86 -0
  27. phonopy-4.3.0/test/harmonic/test_dynamical_matrices_at_qpoints_py.py +86 -0
  28. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_dynamical_matrix.py +97 -1
  29. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_vasp.py +202 -16
  30. phonopy-4.3.0/test/interface/vasprun_kpoints_opt.xml.xz +0 -0
  31. phonopy-4.3.0/test/interface/vasprun_kpoints_opt_spin.xml.xz +0 -0
  32. {phonopy-4.2.2 → phonopy-4.3.0}/test/qha/test_QHA.py +18 -0
  33. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_cells.py +24 -7
  34. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_cells_lang.py +4 -4
  35. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_site_mixture.py +113 -13
  36. phonopy-4.2.2/example/NaCl-wien2k/README.md +0 -21
  37. phonopy-4.2.2/example/NaCl-wien2k-P1/README.md +0 -23
  38. phonopy-4.2.2/test/cui/phonopy_vasp_efe/test_phonopy_vasp_efe_script.py +0 -143
  39. {phonopy-4.2.2 → phonopy-4.3.0}/CMakeLists.txt +0 -0
  40. {phonopy-4.2.2 → phonopy-4.3.0}/LICENSE +0 -0
  41. {phonopy-4.2.2 → phonopy-4.3.0}/README.md +0 -0
  42. {phonopy-4.2.2 → phonopy-4.3.0}/c/_phonopy.cpp +0 -0
  43. {phonopy-4.2.2 → phonopy-4.3.0}/c/_recgrid.cpp +0 -0
  44. {phonopy-4.2.2 → phonopy-4.3.0}/c/bzgrid.c +0 -0
  45. {phonopy-4.2.2 → phonopy-4.3.0}/c/bzgrid.h +0 -0
  46. {phonopy-4.2.2 → phonopy-4.3.0}/c/derivative_dynmat.c +0 -0
  47. {phonopy-4.2.2 → phonopy-4.3.0}/c/derivative_dynmat.h +0 -0
  48. {phonopy-4.2.2 → phonopy-4.3.0}/c/dynmat.c +0 -0
  49. {phonopy-4.2.2 → phonopy-4.3.0}/c/dynmat.h +0 -0
  50. {phonopy-4.2.2 → phonopy-4.3.0}/c/grgrid.c +0 -0
  51. {phonopy-4.2.2 → phonopy-4.3.0}/c/grgrid.h +0 -0
  52. {phonopy-4.2.2 → phonopy-4.3.0}/c/lagrid.c +0 -0
  53. {phonopy-4.2.2 → phonopy-4.3.0}/c/lagrid.h +0 -0
  54. {phonopy-4.2.2 → phonopy-4.3.0}/c/phonopy.c +0 -0
  55. {phonopy-4.2.2 → phonopy-4.3.0}/c/phonopy.h +0 -0
  56. {phonopy-4.2.2 → phonopy-4.3.0}/c/recgrid.c +0 -0
  57. {phonopy-4.2.2 → phonopy-4.3.0}/c/recgrid.h +0 -0
  58. {phonopy-4.2.2 → phonopy-4.3.0}/c/rgrid.c +0 -0
  59. {phonopy-4.2.2 → phonopy-4.3.0}/c/rgrid.h +0 -0
  60. {phonopy-4.2.2 → phonopy-4.3.0}/c/snf3x3.c +0 -0
  61. {phonopy-4.2.2 → phonopy-4.3.0}/c/snf3x3.h +0 -0
  62. {phonopy-4.2.2 → phonopy-4.3.0}/c/tetrahedron_method.c +0 -0
  63. {phonopy-4.2.2 → phonopy-4.3.0}/c/tetrahedron_method.h +0 -0
  64. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/FORCE_SETS +0 -0
  65. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/STRU +0 -0
  66. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/STRU.in +0 -0
  67. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/band.conf +0 -0
  68. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/band.yaml +0 -0
  69. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/disp-001/Al.PD04.PBE.UPF +0 -0
  70. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/disp-001/Al_gga_10au_100Ry_3s3p2d.orb +0 -0
  71. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/disp-001/INPUT +0 -0
  72. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/disp-001/KPT +0 -0
  73. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/disp-001/OUT.ABACUS/running_scf.log +0 -0
  74. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/disp-001/STRU-001 +0 -0
  75. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/mesh.yaml +0 -0
  76. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/phonopy.yaml +0 -0
  77. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/phonopy_disp.yaml +0 -0
  78. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-lcao/setting.conf +0 -0
  79. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/FORCE_SETS +0 -0
  80. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/STRU +0 -0
  81. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/STRU.in +0 -0
  82. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/band.conf +0 -0
  83. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/band.yaml +0 -0
  84. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/disp-001/Al.PD04.PBE.UPF +0 -0
  85. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/disp-001/INPUT +0 -0
  86. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/disp-001/KPT +0 -0
  87. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/disp-001/OUT.ABACUS/running_scf.log +0 -0
  88. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/disp-001/STRU-001 +0 -0
  89. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/mesh.yaml +0 -0
  90. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/phonopy.yaml +0 -0
  91. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/phonopy_disp.yaml +0 -0
  92. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-ABACUS/abacus-pw/setting.conf +0 -0
  93. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/FORCES +0 -0
  94. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/IO/inp.xml +0 -0
  95. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/IO/kpts.xml +0 -0
  96. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/IO/out +0 -0
  97. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/IO/sym.xml +0 -0
  98. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/README +0 -0
  99. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/band.pdf +0 -0
  100. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/fleur_inpgen +0 -0
  101. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/phonopy_disp.yaml +0 -0
  102. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-Fleur/supercell-001.in +0 -0
  103. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/Al-QHA.py +0 -0
  104. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR--1 +0 -0
  105. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR--2 +0 -0
  106. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR--3 +0 -0
  107. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR--4 +0 -0
  108. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR--5 +0 -0
  109. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR-0 +0 -0
  110. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR-1 +0 -0
  111. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR-2 +0 -0
  112. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR-3 +0 -0
  113. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR-4 +0 -0
  114. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/POSCAR-5 +0 -0
  115. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/README +0 -0
  116. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/e-v.dat +0 -0
  117. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml--1 +0 -0
  118. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml--2 +0 -0
  119. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml--3 +0 -0
  120. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml--4 +0 -0
  121. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml--5 +0 -0
  122. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml-0 +0 -0
  123. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml-1 +0 -0
  124. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml-2 +0 -0
  125. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml-3 +0 -0
  126. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml-4 +0 -0
  127. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al-QHA/thermal_properties.yaml-5 +0 -0
  128. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al2O3/Al2O3.py +0 -0
  129. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al2O3/BORN +0 -0
  130. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al2O3/FORCE_SETS +0 -0
  131. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al2O3/POSCAR-unitcell +0 -0
  132. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al2O3/README.md +0 -0
  133. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al2O3/phonopy_disp.yaml +0 -0
  134. {phonopy-4.2.2 → phonopy-4.3.0}/example/Al2O3/vaspruns.tar.lzma +0 -0
  135. {phonopy-4.2.2 → phonopy-4.3.0}/example/CaTiO3/FORCE_SETS +0 -0
  136. {phonopy-4.2.2 → phonopy-4.3.0}/example/CaTiO3/POSCAR-unitcell +0 -0
  137. {phonopy-4.2.2 → phonopy-4.3.0}/example/CaTiO3/phonopy_disp.yaml +0 -0
  138. {phonopy-4.2.2 → phonopy-4.3.0}/example/CaTiO3/vaspruns.tar.lzma +0 -0
  139. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr/FORCE_SETS +0 -0
  140. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr/POSCAR-unitcell +0 -0
  141. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr/README.md +0 -0
  142. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr/phonopy_disp.yaml +0 -0
  143. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr/vasprun.xml.xz +0 -0
  144. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr-castep/FORCE_SETS +0 -0
  145. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr-castep/README +0 -0
  146. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr-castep/band.pdf +0 -0
  147. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr-castep/make_displ_dirs.sh +0 -0
  148. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr-castep/tail.cell +0 -0
  149. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cr-castep/unitcell.cell +0 -0
  150. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-00 +0 -0
  151. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-01 +0 -0
  152. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-02 +0 -0
  153. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-03 +0 -0
  154. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-04 +0 -0
  155. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-05 +0 -0
  156. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-06 +0 -0
  157. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-07 +0 -0
  158. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-08 +0 -0
  159. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-09 +0 -0
  160. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/POSCAR-10 +0 -0
  161. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/README +0 -0
  162. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/e-v.dat +0 -0
  163. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/fe-v.dat +0 -0
  164. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-00 +0 -0
  165. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-01 +0 -0
  166. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-02 +0 -0
  167. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-03 +0 -0
  168. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-04 +0 -0
  169. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-05 +0 -0
  170. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-06 +0 -0
  171. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-07 +0 -0
  172. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-08 +0 -0
  173. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-09 +0 -0
  174. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/thermal_properties.yaml-10 +0 -0
  175. {phonopy-4.2.2 → phonopy-4.3.0}/example/Cu-QHA/vasprun.xmls.tar.lzma +0 -0
  176. {phonopy-4.2.2 → phonopy-4.3.0}/example/Graphene-siesta/Gr.fdf +0 -0
  177. {phonopy-4.2.2 → phonopy-4.3.0}/example/Graphene-siesta/README +0 -0
  178. {phonopy-4.2.2 → phonopy-4.3.0}/example/Graphene-siesta/disp-001/Gr.FA +0 -0
  179. {phonopy-4.2.2 → phonopy-4.3.0}/example/Graphene-siesta/run_example.sh +0 -0
  180. {phonopy-4.2.2 → phonopy-4.3.0}/example/KCl-SSCHA/README.md +0 -0
  181. {phonopy-4.2.2 → phonopy-4.3.0}/example/KCl-SSCHA/embed_sscha_fc.py +0 -0
  182. {phonopy-4.2.2 → phonopy-4.3.0}/example/KCl-SSCHA/phonopy_fc222_JPCM2022.yaml.xz +0 -0
  183. {phonopy-4.2.2 → phonopy-4.3.0}/example/KCl-SSCHA/phonopy_fc444_JPCM2022.yaml.xz +0 -0
  184. {phonopy-4.2.2 → phonopy-4.3.0}/example/KCl-SSCHA/phonopy_mlpsscha_params_KCl-120.yaml.xz +0 -0
  185. {phonopy-4.2.2 → phonopy-4.3.0}/example/KCl-SSCHA/phonopy_sscha_fc_JPCM2022.yaml.xz +0 -0
  186. {phonopy-4.2.2 → phonopy-4.3.0}/example/LiF-nosym/BORN +0 -0
  187. {phonopy-4.2.2 → phonopy-4.3.0}/example/LiF-nosym/FORCE_SETS +0 -0
  188. {phonopy-4.2.2 → phonopy-4.3.0}/example/LiF-nosym/POSCAR-unitcell +0 -0
  189. {phonopy-4.2.2 → phonopy-4.3.0}/example/LiF-nosym/README.md +0 -0
  190. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgB2/FORCE_SETS +0 -0
  191. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgB2/MgB2.py +0 -0
  192. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgB2/POSCAR-unitcell +0 -0
  193. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgB2/README.md +0 -0
  194. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgB2/phonopy_disp.yaml +0 -0
  195. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgB2/vaspruns.tar.lzma +0 -0
  196. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgO/BORN +0 -0
  197. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgO/FORCE_SETS +0 -0
  198. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgO/POSCAR-unitcell +0 -0
  199. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgO/README.md +0 -0
  200. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgO/phonopy_disp.yaml +0 -0
  201. {phonopy-4.2.2 → phonopy-4.3.0}/example/MgO/vaspruns.tar.lzma +0 -0
  202. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/BORN +0 -0
  203. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/FORCE_SETS +0 -0
  204. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/NaCl-band-gv.py +0 -0
  205. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/NaCl-band.py +0 -0
  206. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/NaCl-dynmat.py +0 -0
  207. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/NaCl-gv.py +0 -0
  208. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/NaCl-read_write_fc.py +0 -0
  209. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/NaCl-yaml.py +0 -0
  210. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/NaCl.py +0 -0
  211. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/POSCAR-unitcell +0 -0
  212. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/README.md +0 -0
  213. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/phonopy_disp.yaml +0 -0
  214. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/vasprun.xml-001 +0 -0
  215. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl/vasprun.xml-002 +0 -0
  216. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CP2K/.gitignore +0 -0
  217. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CP2K/NaCl-supercell-001-forces-1_0.xyz +0 -0
  218. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CP2K/NaCl-supercell-002-forces-1_0.xyz +0 -0
  219. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CP2K/NaCl.inp +0 -0
  220. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CP2K/README.md +0 -0
  221. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CP2K/band.conf +0 -0
  222. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CP2K/phonopy_disp.yaml +0 -0
  223. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CRYSTAL/README +0 -0
  224. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CRYSTAL/TEMPLATE +0 -0
  225. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CRYSTAL/band.conf +0 -0
  226. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CRYSTAL/crystal.o +0 -0
  227. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CRYSTAL/supercell-001.o +0 -0
  228. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-CRYSTAL/supercell-002.o +0 -0
  229. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/README +0 -0
  230. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/atom.config +0 -0
  231. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/band.conf +0 -0
  232. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/etot.input +0 -0
  233. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/force-001/OUT.FORCE +0 -0
  234. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/force-001/etot.input +0 -0
  235. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/force-001/supercell-001.config +0 -0
  236. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/force-002/OUT.FORCE +0 -0
  237. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/force-002/etot.input +0 -0
  238. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/force-002/supercell-002.config +0 -0
  239. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/supercell-001.config +0 -0
  240. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/supercell-002.config +0 -0
  241. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-PWmat/supercell.config +0 -0
  242. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/BORN +0 -0
  243. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/NaCl-001.in +0 -0
  244. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/NaCl-001.out +0 -0
  245. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/NaCl-002.in +0 -0
  246. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/NaCl-002.out +0 -0
  247. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/NaCl.in +0 -0
  248. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/NaCl.ph.in +0 -0
  249. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/NaCl.ph.out +0 -0
  250. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/README.md +0 -0
  251. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/band.conf +0 -0
  252. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/header.in +0 -0
  253. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE/phonopy_disp.yaml +0 -0
  254. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/NaCl.fc.xz +0 -0
  255. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/NaCl.in +0 -0
  256. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/NaCl.ph-gamma.in +0 -0
  257. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/NaCl.ph.in +0 -0
  258. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/README +0 -0
  259. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/make_born_q2r.py +0 -0
  260. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/make_fc_q2r.py +0 -0
  261. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/output888.tar.lzma +0 -0
  262. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-QE-q2r/q2r.in +0 -0
  263. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-VASPdfpt/FORCE_CONSTANTS +0 -0
  264. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-VASPdfpt/OUTCAR +0 -0
  265. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-VASPdfpt/POSCAR +0 -0
  266. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-VASPdfpt/POSCAR-unitcell +0 -0
  267. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-VASPdfpt/README.md +0 -0
  268. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-VASPdfpt/vasprun.xml +0 -0
  269. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-abinit/NaCl.in +0 -0
  270. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-abinit/README +0 -0
  271. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-abinit/band.conf +0 -0
  272. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-abinit/disp.yaml +0 -0
  273. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-abinit/supercell-001.out +0 -0
  274. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-abinit/supercell-002.out +0 -0
  275. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/BORN +0 -0
  276. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/FORCE_SETS +0 -0
  277. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/README +0 -0
  278. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/band.conf +0 -0
  279. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/make_displ_dirs.sh +0 -0
  280. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/supercell.param +0 -0
  281. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/tail.cell +0 -0
  282. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-castep/unitcell.cell +0 -0
  283. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-0.995/BORN +0 -0
  284. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-0.995/FORCE_SETS +0 -0
  285. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-0.995/POSCAR-unitcell +0 -0
  286. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-1.00/BORN +0 -0
  287. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-1.00/FORCE_SETS +0 -0
  288. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-1.00/POSCAR-unitcell +0 -0
  289. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-1.005/BORN +0 -0
  290. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-1.005/FORCE_SETS +0 -0
  291. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/NaCl-1.005/POSCAR-unitcell +0 -0
  292. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-gruneisen/README +0 -0
  293. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-rd/BORN +0 -0
  294. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-rd/FORCE_SETS +0 -0
  295. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-rd/POSCAR-unitcell +0 -0
  296. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-rd/README.md +0 -0
  297. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-rd/force-calcs.tar.xz +0 -0
  298. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-rd/phonopy_disp.yaml +0 -0
  299. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k/NaCl-001.scf +0 -0
  300. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k/NaCl-002.scf +0 -0
  301. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k/NaCl.struct +0 -0
  302. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k/phonopy_disp.yaml +0 -0
  303. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k-P1/NaCl-001.scf +0 -0
  304. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k-P1/NaCl-002.scf +0 -0
  305. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k-P1/NaCl.struct +0 -0
  306. {phonopy-4.2.2 → phonopy-4.3.0}/example/NaCl-wien2k-P1/phonopy_disp.yaml +0 -0
  307. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si/POSCAR-unitcell +0 -0
  308. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si/README.md +0 -0
  309. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si/phonopy_disp.yaml +0 -0
  310. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si/vasprun.xml +0 -0
  311. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CP2K/README.md +0 -0
  312. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CP2K/Si-supercell-001-forces-1_0.xyz +0 -0
  313. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CP2K/Si.inp +0 -0
  314. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CRYSTAL/README +0 -0
  315. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CRYSTAL/TEMPLATE +0 -0
  316. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CRYSTAL/band.conf +0 -0
  317. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CRYSTAL/crystal.o +0 -0
  318. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-CRYSTAL/supercell-001.o +0 -0
  319. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/OUT.FORCE-001 +0 -0
  320. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/README.md +0 -0
  321. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/atom.config +0 -0
  322. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/band.conf +0 -0
  323. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/etot.input +0 -0
  324. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/mesh.conf +0 -0
  325. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/mesh.yaml +0 -0
  326. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/supercell-001.config +0 -0
  327. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-PWmat/supercell.config +0 -0
  328. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QE/README.md +0 -0
  329. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QE/Si.in +0 -0
  330. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QE/phonopy_disp.yaml +0 -0
  331. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QE/supercell-001.out +0 -0
  332. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR--1 +0 -0
  333. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR--2 +0 -0
  334. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR--3 +0 -0
  335. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR--4 +0 -0
  336. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR--5 +0 -0
  337. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR-0 +0 -0
  338. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR-1 +0 -0
  339. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR-2 +0 -0
  340. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR-3 +0 -0
  341. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR-4 +0 -0
  342. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/POSCAR-5 +0 -0
  343. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/README +0 -0
  344. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/Si.py +0 -0
  345. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/disp.yaml +0 -0
  346. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/e-v.dat +0 -0
  347. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml--1 +0 -0
  348. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml--2 +0 -0
  349. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml--3 +0 -0
  350. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml--4 +0 -0
  351. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml--5 +0 -0
  352. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml-0 +0 -0
  353. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml-1 +0 -0
  354. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml-2 +0 -0
  355. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml-3 +0 -0
  356. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml-4 +0 -0
  357. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/thermal_properties.yaml-5 +0 -0
  358. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-QHA/vasprun_xmls.tar.lzma +0 -0
  359. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/README +0 -0
  360. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/band.conf +0 -0
  361. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/control +0 -0
  362. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/coord +0 -0
  363. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/example-001/auxbasis +0 -0
  364. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/example-001/basis +0 -0
  365. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/example-001/control +0 -0
  366. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/example-001/coord +0 -0
  367. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/example-001/energy +0 -0
  368. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/example-001/gradient +0 -0
  369. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-TURBOMOLE/example-001/supercell-001.out +0 -0
  370. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-abinit/README +0 -0
  371. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-abinit/Si.in +0 -0
  372. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-abinit/disp.yaml +0 -0
  373. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-abinit/supercell-001.out +0 -0
  374. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-elk/INFO.OUT +0 -0
  375. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-elk/README +0 -0
  376. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-elk/disp.yaml +0 -0
  377. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-elk/elk-unitcell.in +0 -0
  378. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-elk/elk.in +0 -0
  379. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/README +0 -0
  380. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/Si-gruneisen.py +0 -0
  381. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/minus/FORCE_SETS +0 -0
  382. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/minus/POSCAR-unitcell +0 -0
  383. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/minus/disp.yaml +0 -0
  384. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/minus/vasprun.xml +0 -0
  385. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/orig/FORCE_SETS +0 -0
  386. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/orig/POSCAR-unitcell +0 -0
  387. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/orig/disp.yaml +0 -0
  388. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/orig/vasprun.xml +0 -0
  389. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/plus/FORCE_SETS +0 -0
  390. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/plus/POSCAR-unitcell +0 -0
  391. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/plus/disp.yaml +0 -0
  392. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-gruneisen/plus/vasprun.xml +0 -0
  393. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-lammps/README.md +0 -0
  394. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-lammps/generate_displacements.py +0 -0
  395. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-lammps/in.polymlp +0 -0
  396. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-lammps/lammps_forces_Si.0 +0 -0
  397. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-lammps/phonopy_disp.yaml +0 -0
  398. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-lammps/phonopy_unitcell.yaml +0 -0
  399. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-nosym/POSCAR +0 -0
  400. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-nosym/README +0 -0
  401. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-nosym/disp.yaml +0 -0
  402. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-nosym/mesh.conf +0 -0
  403. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-nosym/vasprun_xmls.tar.lzma +0 -0
  404. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-siesta/README +0 -0
  405. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-siesta/Si.fdf +0 -0
  406. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-siesta/disp-001/Si.FA +0 -0
  407. {phonopy-4.2.2 → phonopy-4.3.0}/example/Si-siesta/run_example.sh +0 -0
  408. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/BORN +0 -0
  409. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/FORCE_SETS.xz +0 -0
  410. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/Punitcell.inp +0 -0
  411. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/README.md +0 -0
  412. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/force.inp +0 -0
  413. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/gen_supercell_xyz.py +0 -0
  414. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/get_born_cp2k.py +0 -0
  415. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/make_displ_dirs.sh +0 -0
  416. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-CP2K-xyz/polar.inp +0 -0
  417. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-HP/BORN +0 -0
  418. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-HP/FORCE_SETS +0 -0
  419. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-HP/INCAR +0 -0
  420. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-HP/POSCAR-unitcell +0 -0
  421. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-HP/README.md +0 -0
  422. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-HP/phonopy_disp.yaml +0 -0
  423. {phonopy-4.2.2 → phonopy-4.3.0}/example/SiO2-HP/vaspruns.tar.lzma +0 -0
  424. {phonopy-4.2.2 → phonopy-4.3.0}/example/SnO2/BORN +0 -0
  425. {phonopy-4.2.2 → phonopy-4.3.0}/example/SnO2/FORCE_SETS +0 -0
  426. {phonopy-4.2.2 → phonopy-4.3.0}/example/SnO2/POSCAR-unitcell +0 -0
  427. {phonopy-4.2.2 → phonopy-4.3.0}/example/SnO2/README.md +0 -0
  428. {phonopy-4.2.2 → phonopy-4.3.0}/example/SnO2/phonopy_disp.yaml +0 -0
  429. {phonopy-4.2.2 → phonopy-4.3.0}/example/SnO2/vaspruns.tar.lzma +0 -0
  430. {phonopy-4.2.2 → phonopy-4.3.0}/example/Ti-lammps/README.md +0 -0
  431. {phonopy-4.2.2 → phonopy-4.3.0}/example/Ti-lammps/in.polymlp +0 -0
  432. {phonopy-4.2.2 → phonopy-4.3.0}/example/Ti-lammps/lammps_forces_Ti.0 +0 -0
  433. {phonopy-4.2.2 → phonopy-4.3.0}/example/Ti-lammps/lammps_structure_Ti +0 -0
  434. {phonopy-4.2.2 → phonopy-4.3.0}/example/Ti-lammps/phonopy_disp.yaml +0 -0
  435. {phonopy-4.2.2 → phonopy-4.3.0}/example/TiO2-anatase/BORN +0 -0
  436. {phonopy-4.2.2 → phonopy-4.3.0}/example/TiO2-anatase/FORCE_SETS +0 -0
  437. {phonopy-4.2.2 → phonopy-4.3.0}/example/TiO2-anatase/POSCAR-unitcell +0 -0
  438. {phonopy-4.2.2 → phonopy-4.3.0}/example/TiO2-anatase/README.md +0 -0
  439. {phonopy-4.2.2 → phonopy-4.3.0}/example/TiO2-anatase/phonopy_disp.yaml +0 -0
  440. {phonopy-4.2.2 → phonopy-4.3.0}/example/TiO2-anatase/vaspruns.tar.lzma +0 -0
  441. {phonopy-4.2.2 → phonopy-4.3.0}/example/ZnO/BORN +0 -0
  442. {phonopy-4.2.2 → phonopy-4.3.0}/example/ZnO/FORCE_SETS +0 -0
  443. {phonopy-4.2.2 → phonopy-4.3.0}/example/ZnO/POSCAR-unitcell +0 -0
  444. {phonopy-4.2.2 → phonopy-4.3.0}/example/ZnO/README.md +0 -0
  445. {phonopy-4.2.2 → phonopy-4.3.0}/example/ZnO/phonopy_disp.yaml +0 -0
  446. {phonopy-4.2.2 → phonopy-4.3.0}/example/ZnO/vaspruns.tar.lzma +0 -0
  447. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-FHI-aims/README.md +0 -0
  448. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-FHI-aims/band.conf +0 -0
  449. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-FHI-aims/disp-001/aims.out +0 -0
  450. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-FHI-aims/disp-001/control.in +0 -0
  451. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-FHI-aims/disp-001/geometry.in +0 -0
  452. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-FHI-aims/geometry.in +0 -0
  453. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-dftb/README +0 -0
  454. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-dftb/band.conf +0 -0
  455. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-dftb/dftb_in.hsd +0 -0
  456. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-dftb/geo.gen +0 -0
  457. {phonopy-4.2.2 → phonopy-4.3.0}/example/diamond-dftb/results.tag +0 -0
  458. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/__init__.py +0 -0
  459. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/_lang.py +0 -0
  460. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/api_gruneisen.py +0 -0
  461. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/create_force_sets.py +0 -0
  462. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/load.py +0 -0
  463. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/load_helper.py +0 -0
  464. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/phonopy_argparse.py +0 -0
  465. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/phonopy_bandplot_script.py +0 -0
  466. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/phonopy_gruneisen_script.py +0 -0
  467. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/phonopy_qe_born_script.py +0 -0
  468. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/phonopy_qha_script.py +0 -0
  469. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/phonopy_script.py +0 -0
  470. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/cui/settings.py +0 -0
  471. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/exception.py +0 -0
  472. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/file_IO.py +0 -0
  473. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/gruneisen/band_structure.py +0 -0
  474. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/gruneisen/core.py +0 -0
  475. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/gruneisen/mesh.py +0 -0
  476. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/harmonic/displacement.py +0 -0
  477. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/harmonic/dynmat_to_fc.py +0 -0
  478. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/abacus.py +0 -0
  479. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/abinit.py +0 -0
  480. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/aims.py +0 -0
  481. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/alm.py +0 -0
  482. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/castep.py +0 -0
  483. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/cif.py +0 -0
  484. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/cp2k.py +0 -0
  485. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/crystal.py +0 -0
  486. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/dftbp.py +0 -0
  487. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/fc_calculator.py +0 -0
  488. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/lammps.py +0 -0
  489. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/mlp.py +0 -0
  490. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/phonopy_yaml.py +0 -0
  491. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/pwmat.py +0 -0
  492. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/pypolymlp.py +0 -0
  493. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/qe.py +0 -0
  494. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/qlm.py +0 -0
  495. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/siesta.py +0 -0
  496. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/symfc.py +0 -0
  497. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/turbomole.py +0 -0
  498. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/interface/wien2k.py +0 -0
  499. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/animation.py +0 -0
  500. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/band_structure.py +0 -0
  501. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/character_table.py +0 -0
  502. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/degeneracy.py +0 -0
  503. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/dos.py +0 -0
  504. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/grid.py +0 -0
  505. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/group_velocity.py +0 -0
  506. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/irreps.py +0 -0
  507. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/modulation.py +0 -0
  508. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/moment.py +0 -0
  509. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/plot.py +0 -0
  510. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/random_displacements.py +0 -0
  511. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/spectrum.py +0 -0
  512. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/tetrahedron_mesh.py +0 -0
  513. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/tetrahedron_method.py +0 -0
  514. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/thermal_displacement.py +0 -0
  515. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/phonon/thermal_properties.py +0 -0
  516. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/physical_units.py +0 -0
  517. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/py.typed +0 -0
  518. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/qha/core.py +0 -0
  519. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/qha/electron.py +0 -0
  520. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/qha/eos.py +0 -0
  521. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy.py +0 -0
  522. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_bandplot.py +0 -0
  523. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_calc_convert.py +0 -0
  524. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_crystal_born.py +0 -0
  525. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_gruneisen.py +0 -0
  526. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_gruneisenplot.py +0 -0
  527. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_init.py +0 -0
  528. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_load.py +0 -0
  529. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_pdosplot.py +0 -0
  530. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_propplot.py +0 -0
  531. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_qe_born.py +0 -0
  532. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_qha.py +0 -0
  533. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_tdplot.py +0 -0
  534. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_vasp_born.py +0 -0
  535. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/scripts/phonopy_vasp_efe.py +0 -0
  536. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/spectrum/dynamic_structure_factor.py +0 -0
  537. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/spectrum/velocity.py +0 -0
  538. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/sscha/core.py +0 -0
  539. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/atomic_data.py +0 -0
  540. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/brillouin_zone.py +0 -0
  541. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/dataset.py +0 -0
  542. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/structure/snf.py +0 -0
  543. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/unfolding/core.py +0 -0
  544. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/units.py +0 -0
  545. {phonopy-4.2.2 → phonopy-4.3.0}/phonopy/utils.py +0 -0
  546. {phonopy-4.2.2 → phonopy-4.3.0}/test/AgNO2_cell.yaml +0 -0
  547. {phonopy-4.2.2 → phonopy-4.3.0}/test/BORN_NaCl +0 -0
  548. {phonopy-4.2.2 → phonopy-4.3.0}/test/BORN_SnO2 +0 -0
  549. {phonopy-4.2.2 → phonopy-4.3.0}/test/BORN_TiO2 +0 -0
  550. {phonopy-4.2.2 → phonopy-4.3.0}/test/FORCE_SETS_NaCl +0 -0
  551. {phonopy-4.2.2 → phonopy-4.3.0}/test/FORCE_SETS_SnO2 +0 -0
  552. {phonopy-4.2.2 → phonopy-4.3.0}/test/FORCE_SETS_TiO2 +0 -0
  553. {phonopy-4.2.2 → phonopy-4.3.0}/test/POSCAR_NaCl +0 -0
  554. {phonopy-4.2.2 → phonopy-4.3.0}/test/conftest.py +0 -0
  555. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_bandplot/test_phonopy_bandplot_script.py +0 -0
  556. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/NaCl/phonopy_disp.yaml.xz +0 -0
  557. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/NaCl/vasprun.xml-001.xz +0 -0
  558. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/NaCl/vasprun.xml-002.xz +0 -0
  559. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/POSCAR-unitcell_Cr +0 -0
  560. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/band_mesh.conf +0 -0
  561. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/dim.conf +0 -0
  562. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/dos.conf +0 -0
  563. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/irreps.conf +0 -0
  564. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/mesh.conf +0 -0
  565. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/pdos.conf +0 -0
  566. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/td.conf +0 -0
  567. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/test_phonopy_script.py +0 -0
  568. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/tprop.conf +0 -0
  569. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_NaCl_rd/phonopy_disp.yaml.xz +0 -0
  570. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_NaCl_rd/vasprun-00000.xml.xz +0 -0
  571. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_NaCl_rd/vasprun-00001.xml.xz +0 -0
  572. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_NaCl_rd/vasprun-00002.xml.xz +0 -0
  573. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_NaCl_rd/vasprun-00003.xml.xz +0 -0
  574. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_SnO2/phonopy_disp.yaml.xz +0 -0
  575. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_SnO2/vasprun.xml-000.xz +0 -0
  576. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_SnO2/vasprun.xml-001.xz +0 -0
  577. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_SnO2/vasprun.xml-002.xz +0 -0
  578. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_SnO2/vasprun.xml-003.xz +0 -0
  579. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_command/vaspruns_SnO2/vasprun.xml-born.xz +0 -0
  580. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-0.995/BORN +0 -0
  581. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-0.995/FORCE_SETS +0 -0
  582. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-0.995/POSCAR-unitcell +0 -0
  583. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.00/BORN +0 -0
  584. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.00/FORCE_SETS +0 -0
  585. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.00/POSCAR-unitcell +0 -0
  586. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.005/BORN +0 -0
  587. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.005/FORCE_SETS +0 -0
  588. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/NaCl-gruneisen/NaCl-1.005/POSCAR-unitcell +0 -0
  589. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_gruneisen/test_phonopy_gruneisen_script.py +0 -0
  590. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qe_born/test_phonopy_qe_born_script.py +0 -0
  591. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/e-v.dat +0 -0
  592. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/fe-v.dat +0 -0
  593. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-00.xz +0 -0
  594. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-01.xz +0 -0
  595. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-02.xz +0 -0
  596. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-03.xz +0 -0
  597. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-04.xz +0 -0
  598. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-05.xz +0 -0
  599. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-06.xz +0 -0
  600. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-07.xz +0 -0
  601. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-08.xz +0 -0
  602. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-09.xz +0 -0
  603. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/Cu-QHA/thermal_properties.yaml-10.xz +0 -0
  604. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_qha/test_phonopy_qha_script.py +0 -0
  605. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_vasp_efe/vasprun.xmls/vasprun.xml-00.xz +0 -0
  606. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_vasp_efe/vasprun.xmls/vasprun.xml-01.xz +0 -0
  607. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/phonopy_vasp_efe/vasprun.xmls/vasprun.xml-02.xz +0 -0
  608. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/test_collect_cell_info.py +0 -0
  609. {phonopy-4.2.2 → phonopy-4.3.0}/test/cui/test_load_helper.py +0 -0
  610. {phonopy-4.2.2 → phonopy-4.3.0}/test/gruneisen/test_gruneisen.py +0 -0
  611. {phonopy-4.2.2 → phonopy-4.3.0}/test/gruneisen/test_write_yaml.py +0 -0
  612. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_derivative_dynmat.py +0 -0
  613. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_derivative_dynmat_lang.py +0 -0
  614. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_displacements.py +0 -0
  615. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_dynamical_matrices_at_qpoints_lang.py +0 -0
  616. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_dynamical_matrix_lang.py +0 -0
  617. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_dynmat_to_fc.py +0 -0
  618. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_dynmat_to_fc_lang.py +0 -0
  619. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_force_constants.py +0 -0
  620. {phonopy-4.2.2 → phonopy-4.3.0}/test/harmonic/test_force_constants_lang.py +0 -0
  621. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/BaGa2-wien2k.yaml +0 -0
  622. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/BaGa2.struct +0 -0
  623. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/GeSn-vca-FORCE_SETS +0 -0
  624. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/GeSn-vca-phonopy_disp.yaml +0 -0
  625. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/GeSn-vca-vasprun-001.xml.xz +0 -0
  626. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abacus-mag-noncolin.stru +0 -0
  627. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abacus-mag-noncolin.yaml +0 -0
  628. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abacus-mag.stru +0 -0
  629. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abacus-mag.yaml +0 -0
  630. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abacus.out +0 -0
  631. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abacus.stru +0 -0
  632. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abinit-pwscf.yaml +0 -0
  633. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-abinit.in +0 -0
  634. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-aims.in +0 -0
  635. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-castep.cell +0 -0
  636. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-castep.yaml +0 -0
  637. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-pwscf-2.in +0 -0
  638. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-pwscf-Xn.in +0 -0
  639. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-pwscf-angstrom.in +0 -0
  640. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-pwscf-bohr.in +0 -0
  641. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-pwscf.in +0 -0
  642. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-q2r.fc.xz +0 -0
  643. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-q2r.in +0 -0
  644. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/NaCl-vasp.yaml +0 -0
  645. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/STRU.in +0 -0
  646. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-CP2K.inp +0 -0
  647. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-CP2K.yaml +0 -0
  648. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-CRYSTAL.o +0 -0
  649. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-CRYSTAL.yaml +0 -0
  650. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-TURBOMOLE-control +0 -0
  651. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-TURBOMOLE.yaml +0 -0
  652. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-pwmat.config +0 -0
  653. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/Si-pwmat.yaml +0 -0
  654. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/XDATCAR-NaCl +0 -0
  655. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/elk.in +0 -0
  656. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/fleur_inpgen +0 -0
  657. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/lammps_forces_Ti.0 +0 -0
  658. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/lammps_structure_H +0 -0
  659. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/lammps_structure_Ti +0 -0
  660. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/lammps_structure_Ti_id +0 -0
  661. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/nac.yaml +0 -0
  662. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/phonopy.yaml +0 -0
  663. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/phonopy_symcells_NaCl.yaml +0 -0
  664. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/qe/NaCl-ph/NaCl-noborn.ph.out +0 -0
  665. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/qe/NaCl-ph/NaCl.fc +0 -0
  666. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/qe/NaCl-ph/NaCl.in +0 -0
  667. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/qe/NaCl-ph/NaCl.ph.out +0 -0
  668. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_CP2K.py +0 -0
  669. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_CRYSTAL.py +0 -0
  670. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_TURBOMOLE.py +0 -0
  671. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_abacus.py +0 -0
  672. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_abinit.py +0 -0
  673. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_aims.py +0 -0
  674. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_alm.py +0 -0
  675. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_calculator.py +0 -0
  676. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_castep.py +0 -0
  677. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_conversion.py +0 -0
  678. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_dftbp.py +0 -0
  679. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_elk.py +0 -0
  680. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_fleur.py +0 -0
  681. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_lammps.py +0 -0
  682. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_phonopy_yaml.py +0 -0
  683. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_pwmat.py +0 -0
  684. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_pypolymlp.py +0 -0
  685. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_qe.py +0 -0
  686. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_qlm.py +0 -0
  687. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_siesta.py +0 -0
  688. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_symfc.py +0 -0
  689. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/test_wien2k.py +0 -0
  690. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/vasprun.xml.tar.bz2 +0 -0
  691. {phonopy-4.2.2 → phonopy-4.3.0}/test/interface/vasprun_fc.xml.xz +0 -0
  692. {phonopy-4.2.2 → phonopy-4.3.0}/test/mlpsscha_KCl-120.pmlp +0 -0
  693. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_Amm2 +0 -0
  694. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_I4_1a +0 -0
  695. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P-3m1 +0 -0
  696. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P-4 +0 -0
  697. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P-42_1m +0 -0
  698. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P-43m +0 -0
  699. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P-6 +0 -0
  700. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P-62m +0 -0
  701. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P-6m2 +0 -0
  702. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P2 +0 -0
  703. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P222_1 +0 -0
  704. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P2_13 +0 -0
  705. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P31m +0 -0
  706. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P3m1 +0 -0
  707. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P4_1 +0 -0
  708. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P4_332 +0 -0
  709. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P4mm +0 -0
  710. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P6 +0 -0
  711. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_P6_222 +0 -0
  712. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_Pa-3 +0 -0
  713. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/FORCE_SETS_Pc +0 -0
  714. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_Amm2 +0 -0
  715. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_I4_1a +0 -0
  716. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P-3m1 +0 -0
  717. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P-4 +0 -0
  718. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P-42_1m +0 -0
  719. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P-43m +0 -0
  720. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P-6 +0 -0
  721. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P-62m +0 -0
  722. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P-6m2 +0 -0
  723. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P2 +0 -0
  724. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P222_1 +0 -0
  725. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P2_13 +0 -0
  726. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P31m +0 -0
  727. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P3m1 +0 -0
  728. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P4_1 +0 -0
  729. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P4_332 +0 -0
  730. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P4mm +0 -0
  731. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P6 +0 -0
  732. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_P6_222 +0 -0
  733. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_Pa-3 +0 -0
  734. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/POSCAR_Pc +0 -0
  735. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/eigvecs_ii_TiPN3.txt +0 -0
  736. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/eigvecs_ij_TiPN3.txt +0 -0
  737. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_animation.py +0 -0
  738. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_band_structure.py +0 -0
  739. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_dos.py +0 -0
  740. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_grid.py +0 -0
  741. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_group_velocity.py +0 -0
  742. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_irreps.py +0 -0
  743. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_mesh.py +0 -0
  744. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_modulation.py +0 -0
  745. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_moment.py +0 -0
  746. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_plot.py +0 -0
  747. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_qpoints.py +0 -0
  748. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_random_displacements.py +0 -0
  749. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_snf3x3.py +0 -0
  750. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_spectrum.py +0 -0
  751. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_tetrahedron_mesh.py +0 -0
  752. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_tetrahedron_method.py +0 -0
  753. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_thermal_displacement.py +0 -0
  754. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_thermal_properties.py +0 -0
  755. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonon/test_thermal_properties_classical.py +0 -0
  756. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_KCl.yaml +0 -0
  757. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_NaCl_unitcell1.yaml +0 -0
  758. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_NaCl_unitcell2.yaml +0 -0
  759. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_SrTiO3.yaml.xz +0 -0
  760. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_disp_NaCl.yaml +0 -0
  761. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_disp_SnO2.yaml +0 -0
  762. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_disp_TiO2.yaml +0 -0
  763. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_load/test_phonopy_load.py +0 -0
  764. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_NaCl-0.995.yaml.xz +0 -0
  765. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_NaCl-1.00.yaml.xz +0 -0
  766. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_NaCl-1.005.yaml.xz +0 -0
  767. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_NaCl-QE.yaml.xz +0 -0
  768. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_NaCl-fd.yaml.xz +0 -0
  769. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_NaCl-rd.yaml.xz +0 -0
  770. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_Si.yaml +0 -0
  771. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_TiPN3.yaml.xz +0 -0
  772. {phonopy-4.2.2 → phonopy-4.3.0}/test/phonopy_params_Zr3N4.yaml +0 -0
  773. {phonopy-4.2.2 → phonopy-4.3.0}/test/polymlp_KCL-120.yaml +0 -0
  774. {phonopy-4.2.2 → phonopy-4.3.0}/test/polymlp_KCL-120.yaml.xz +0 -0
  775. {phonopy-4.2.2 → phonopy-4.3.0}/test/qha/fe-v-Cu.dat +0 -0
  776. {phonopy-4.2.2 → phonopy-4.3.0}/test/qha/test_QHA_efe.py +0 -0
  777. {phonopy-4.2.2 → phonopy-4.3.0}/test/qha/test_electron.py +0 -0
  778. {phonopy-4.2.2 → phonopy-4.3.0}/test/qha/test_eos.py +0 -0
  779. {phonopy-4.2.2 → phonopy-4.3.0}/test/qha/tprop-Cu.dat +0 -0
  780. {phonopy-4.2.2 → phonopy-4.3.0}/test/qha/tprop-Si.dat +0 -0
  781. {phonopy-4.2.2 → phonopy-4.3.0}/test/spectrum/XDATCAR +0 -0
  782. {phonopy-4.2.2 → phonopy-4.3.0}/test/spectrum/test_dynamic_structure_factor.py +0 -0
  783. {phonopy-4.2.2 → phonopy-4.3.0}/test/spectrum/test_velocity.py +0 -0
  784. {phonopy-4.2.2 → phonopy-4.3.0}/test/spectrum/velocities.dat +0 -0
  785. {phonopy-4.2.2 → phonopy-4.3.0}/test/sscha/test_core.py +0 -0
  786. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/Si-conv.yaml +0 -0
  787. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/SiO2-123.yaml +0 -0
  788. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_atomic_data.py +0 -0
  789. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_atoms.py +0 -0
  790. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_brillouin_zone.py +0 -0
  791. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_mixture.py +0 -0
  792. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/test_symmetry.py +0 -0
  793. {phonopy-4.2.2 → phonopy-4.3.0}/test/structure/tio2_qpoints.yaml +0 -0
  794. {phonopy-4.2.2 → phonopy-4.3.0}/test/test_exception.py +0 -0
  795. {phonopy-4.2.2 → phonopy-4.3.0}/test/test_file_IO.py +0 -0
  796. {phonopy-4.2.2 → phonopy-4.3.0}/test/test_invalidation.py +0 -0
  797. {phonopy-4.2.2 → phonopy-4.3.0}/test/unfolding/FORCE_SETS +0 -0
  798. {phonopy-4.2.2 → phonopy-4.3.0}/test/unfolding/bin-unfolding.dat +0 -0
  799. {phonopy-4.2.2 → phonopy-4.3.0}/test/unfolding/bin-unfolding_to_atoms.dat +0 -0
  800. {phonopy-4.2.2 → phonopy-4.3.0}/test/unfolding/plot_band.py +0 -0
  801. {phonopy-4.2.2 → phonopy-4.3.0}/test/unfolding/test_unfolding.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: phonopy
3
- Version: 4.2.2
3
+ Version: 4.3.0
4
4
  Summary: This is the phonopy module.
5
5
  Author-Email: Atsushi Togo <atz.togo@gmail.com>
6
6
  License-Expression: BSD-3-Clause
@@ -14,7 +14,7 @@ Requires-Dist: matplotlib>=2.2.2
14
14
  Requires-Dist: h5py>=3.0
15
15
  Requires-Dist: spglib>=2.5
16
16
  Requires-Dist: symfc>=1.7
17
- Requires-Dist: phonors>=0.2.0
17
+ Requires-Dist: phonors>=0.3.0
18
18
  Provides-Extra: cp2k
19
19
  Requires-Dist: cp2k-input-tools; extra == "cp2k"
20
20
  Provides-Extra: seekpath
@@ -0,0 +1,26 @@
1
+ # NaCl phonon calculation with Wien2k
2
+
3
+ NaCl phonon calculation with Wien2k output files. The supercell structures are
4
+ made by
5
+
6
+ ```bash
7
+ % phonopy-init --wien2k -c NaCl.struct -d --dim="2 2 2" --pa auto
8
+ ```
9
+
10
+ This is also done for restoring `phonopy_disp.yaml` that is used in the next step.
11
+ `FORCE_SETS` is obtained by
12
+
13
+ ```bash
14
+ % phonopy-init --wien2k -f NaCl-001.scf NaCl-002.scf
15
+ ```
16
+
17
+ Phonon analysis is done such as
18
+
19
+ ```bash
20
+ % phonopy-load --band "0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.5" -p
21
+ ```
22
+ or
23
+ ```bash
24
+ % phonopy-load --band "0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.5" -p -s
25
+ ```
26
+ to save a "band.pdf" file
@@ -0,0 +1,26 @@
1
+ # NaCl phonon calculation with Wien2k
2
+ NaCl phonon calculation with Wien2k output files. The supercell structures are
3
+ made by
4
+
5
+ ```bash
6
+ % phonopy-init --wien2k -c NaCl.struct -d --dim="2 2 2" --pa auto
7
+ ```
8
+
9
+ This is also done for restoring `phonopy_disp.yaml` that is used in the next step.
10
+ `FORCE_SETS` is obtained by
11
+
12
+ ```bash
13
+ % phonopy-init --wien2k -f NaCl-001.scf NaCl-002.scf
14
+ ```
15
+
16
+ Phonon analysis is done such as
17
+
18
+ ```bash
19
+ % phonopy-load --band "0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.5" -p
20
+ ```
21
+ or
22
+
23
+ ```bash
24
+ % phonopy-load --band "0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.5" -p -s
25
+ ```
26
+ to save a "band.pdf" file
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '4.2.2'
22
- __version_tuple__ = version_tuple = (4, 2, 2)
21
+ __version__ = version = '4.3.0'
22
+ __version_tuple__ = version_tuple = (4, 3, 0)
23
23
 
24
- __commit_id__ = commit_id = 'ge3a4edae1'
24
+ __commit_id__ = commit_id = 'g2193d7f65'
@@ -2514,13 +2514,17 @@ class Phonopy:
2514
2514
  'free_energy', 'entropy', and 'heat_capacity'.
2515
2515
  Each value of corresponding key is as follows:
2516
2516
 
2517
- temperatures: ndarray
2517
+ temperatures : ndarray
2518
+ Temperatures in K.
2518
2519
  shape=(temperatures, ), dtype='double'
2519
2520
  free_energy : ndarray
2521
+ Helmholtz free energies in kJ/mol.
2520
2522
  shape=(temperatures, ), dtype='double'
2521
2523
  entropy : ndarray
2524
+ Entropies in J/K/mol.
2522
2525
  shape=(temperatures, ), dtype='double'
2523
2526
  heat_capacity : ndarray
2527
+ Heat capacities in J/K/mol.
2524
2528
  shape=(temperatures, ), dtype='double'
2525
2529
 
2526
2530
  .. deprecated::
@@ -154,7 +154,7 @@ class PhonopyQHA:
154
154
  Returns
155
155
  -------
156
156
  list
157
- Thermal expansion coefficients at temperatues.
157
+ Thermal expansion coefficients at temperatues in K^-1.
158
158
  shape=(temperatures, )
159
159
 
160
160
  """
@@ -167,7 +167,7 @@ class PhonopyQHA:
167
167
  Returns
168
168
  -------
169
169
  ndarray
170
- Helmholtz free energies calculated at temperatures and volumes.
170
+ Helmholtz free energies calculated at temperatures and volumes in eV.
171
171
  shape=(temperatures, volumes)
172
172
 
173
173
  """
@@ -180,7 +180,7 @@ class PhonopyQHA:
180
180
  Returns
181
181
  -------
182
182
  ndarray
183
- Equilibrium volumes at temperatures
183
+ Equilibrium volumes at temperatures in Angstrom^3.
184
184
  shape=(temperatures,), dtype=float
185
185
 
186
186
  """
@@ -193,7 +193,7 @@ class PhonopyQHA:
193
193
  Returns
194
194
  -------
195
195
  ndarray
196
- Gibbs free energies at temperatures.
196
+ Gibbs free energies at temperatures in eV.
197
197
  shape=(temperatures, ), dtype=float
198
198
 
199
199
  """
@@ -206,7 +206,7 @@ class PhonopyQHA:
206
206
  Returns
207
207
  -------
208
208
  ndarray
209
- Bulk modulus at constant pressure and temperatures
209
+ Bulk modulus at constant pressure and temperatures in GPa.
210
210
  shape=(temperatures, ), dtype=float
211
211
 
212
212
  """
@@ -378,7 +378,7 @@ class PhonopyQHA:
378
378
  def plot_gibbs_temperature(
379
379
  self,
380
380
  xlabel: str = "Temperature (K)",
381
- ylabel: str = "Gibbs free energy",
381
+ ylabel: str = "Gibbs free energy (eV)",
382
382
  ) -> Any:
383
383
  """Return pyplot of Gibbs free energy vs temperature."""
384
384
  return self._qha.plot_gibbs_temperature(xlabel=xlabel, ylabel=ylabel)
@@ -392,7 +392,7 @@ class PhonopyQHA:
392
392
  def plot_bulk_modulus_temperature(
393
393
  self,
394
394
  xlabel: str = "Temperature (K)",
395
- ylabel: str = "Bulk modulus",
395
+ ylabel: str = "Bulk modulus (GPa)",
396
396
  ) -> Any:
397
397
  """Return pyplot of bulk modulus vs temperature."""
398
398
  return self._qha.plot_bulk_modulus_temperature(xlabel=xlabel, ylabel=ylabel)
@@ -151,7 +151,7 @@ def get_cell_info(
151
151
  # site-mixture (merged mixtures or weighted species), so re-applying
152
152
  # the --site-mixture weights would fail. Skip in that case; the
153
153
  # persisted cell already has the information.
154
- if cell_info.unitcell.has_mixtures or cell_info.unitcell.has_weighted_species:
154
+ if cell_info.unitcell.is_site_mixture:
155
155
  if log_level:
156
156
  print(
157
157
  "Site mixture is already defined in the input cell; "
@@ -59,9 +59,11 @@ from phonopy.qha.electron import get_free_energy_at_T
59
59
  class PhonopyVaspEfeMockArgs:
60
60
  """Mock args of ArgumentParser."""
61
61
 
62
+ scale_factor: float = 1.0
62
63
  tmax: float = 1000.0
63
64
  tmin: float = 0.0
64
65
  tstep: float = 10.0
66
+ quiet: bool = False
65
67
  filenames: Sequence[os.PathLike | str] | None = None
66
68
 
67
69
 
@@ -69,6 +71,13 @@ def get_options() -> argparse.Namespace:
69
71
  """Parse command-line options."""
70
72
  parser = argparse.ArgumentParser(description="Phonopy vasp-efe command-line-tool")
71
73
  default_vals = PhonopyVaspEfeMockArgs()
74
+ parser.add_argument(
75
+ "--scale-factor",
76
+ dest="scale_factor",
77
+ type=float,
78
+ default=default_vals.scale_factor,
79
+ help="Scaling factor for volume, energy, and free energy (default: 1.0)",
80
+ )
72
81
  parser.add_argument(
73
82
  "--tmax",
74
83
  dest="tmax",
@@ -90,6 +99,13 @@ def get_options() -> argparse.Namespace:
90
99
  default=default_vals.tstep,
91
100
  help="Calculated temperature step",
92
101
  )
102
+ parser.add_argument(
103
+ "--quiet",
104
+ dest="quiet",
105
+ action="store_true",
106
+ default=default_vals.quiet,
107
+ help="Suppress progress messages printed while reading vasprun.xml files",
108
+ )
93
109
  parser.add_argument(
94
110
  "filenames",
95
111
  nargs="*",
@@ -110,20 +126,55 @@ def get_free_energy_lines(temperatures: NDArray, free_energies: NDArray) -> list
110
126
 
111
127
  def get_fe_ev_lines(
112
128
  args: argparse.Namespace | PhonopyVaspEfeMockArgs,
129
+ verbose: bool = False,
113
130
  ) -> tuple[list[str], list[str]]:
114
- """Return Free energy vs volume lines."""
131
+ """Return Free energy vs volume lines.
132
+
133
+ When ``verbose`` is True, progress is printed to stdout: which file is
134
+ being read and what is found in it (volume, NELECT, the k-point mesh
135
+ used for the electronic free energy).
136
+
137
+ """
115
138
  volumes = []
116
139
  energy_sigma0 = []
117
140
  free_energies = []
118
141
  temperatures = None
119
142
  assert args.filenames is not None
120
- for filename in args.filenames:
143
+ filenames = list(args.filenames)
144
+ if verbose:
145
+ print(
146
+ "Reading %d vasprun.xml file(s), T = %g..%g K step %g K"
147
+ % (len(filenames), args.tmin, args.tmax, args.tstep)
148
+ )
149
+ sys.stdout.flush()
150
+ for i, filename in enumerate(filenames):
151
+ if verbose:
152
+ print(" [%d/%d] reading %s" % (i + 1, len(filenames), filename))
153
+ sys.stdout.flush()
121
154
  vxml = parse_vasprunxml(filename)
122
- weights = vxml.k_weights
123
- eigenvalues = vxml.eigenvalues[:, :, :, 0]
155
+ # With KPOINTS_OPT the electronic DOS (hence the free energy) is
156
+ # evaluated on the denser kpoints_opt mesh, so prefer it when present.
157
+ if vxml.has_kpoints_opt:
158
+ weights = vxml.k_weights_kpoints_opt
159
+ eigenvalues = vxml.eigenvalues_kpoints_opt[:, :, :, 0]
160
+ k_mesh = vxml.k_mesh_kpoints_opt
161
+ kpoints_label = "KPOINTS_OPT mesh"
162
+ else:
163
+ weights = vxml.k_weights
164
+ eigenvalues = vxml.eigenvalues[:, :, :, 0]
165
+ k_mesh = vxml.k_mesh
166
+ kpoints_label = "SCF mesh"
124
167
  n_electrons = vxml.NELECT
125
168
  assert n_electrons is not None
126
169
  energy = vxml.energies[-1, 1]
170
+ if verbose:
171
+ k_mesh_str = "x".join("%d" % m for m in k_mesh)
172
+ print(
173
+ " volume = %.4f A^3, NELECT = %g, "
174
+ "free energy on %s (%s)"
175
+ % (vxml.volume[-1], n_electrons, kpoints_label, k_mesh_str)
176
+ )
177
+ sys.stdout.flush()
127
178
  temps, fe = get_free_energy_at_T(
128
179
  args.tmin, args.tmax, args.tstep, eigenvalues, weights, n_electrons
129
180
  )
@@ -135,11 +186,19 @@ def get_fe_ev_lines(
135
186
  else:
136
187
  assert (np.abs(temperatures - temps) < 1e-5).all()
137
188
  assert temperatures is not None
189
+ if verbose:
190
+ print("Done. %d volume(s) processed." % len(filenames))
191
+ sys.stdout.flush()
192
+
193
+ scale_factor = args.scale_factor
194
+ volumes = np.array(volumes) * scale_factor
195
+ energy_sigma0 = np.array(energy_sigma0) * scale_factor
196
+ free_energies = np.array(free_energies) * scale_factor
138
197
 
139
198
  lines_fe = []
140
199
  lines_fe.append(("# volume: " + " %15.8f" * len(volumes)) % tuple(volumes))
141
200
  lines_fe.append("# T(K) Free energies")
142
- lines_fe += get_free_energy_lines(temperatures, np.transpose(free_energies))
201
+ lines_fe += get_free_energy_lines(temperatures, free_energies.T)
143
202
 
144
203
  lines_ev = ["# cell volume energy of cell other than phonon"]
145
204
  lines_ev += [
@@ -157,7 +216,8 @@ def main(**argparse_control: PhonopyVaspEfeMockArgs) -> None:
157
216
  else:
158
217
  args = get_options()
159
218
 
160
- lines_fe, lines_ev = get_fe_ev_lines(args)
219
+ verbose = not getattr(args, "quiet", False)
220
+ lines_fe, lines_ev = get_fe_ev_lines(args, verbose=verbose)
161
221
 
162
222
  with open("fe-v.dat", "w") as w:
163
223
  w.write("\n".join(lines_fe))
@@ -36,6 +36,7 @@
36
36
 
37
37
  import numpy as np
38
38
  import spglib
39
+ from numpy.typing import NDArray
39
40
 
40
41
  try:
41
42
  spglib.error.OLD_ERROR_HANDLING = False
@@ -51,9 +52,10 @@ from phonopy.interface.calculator import (
51
52
  from phonopy.interface.phonopy_yaml import PhonopyYaml
52
53
  from phonopy.structure.atoms import PhonopyAtoms
53
54
  from phonopy.structure.cells import (
55
+ argsort_by_key,
54
56
  determinant,
55
57
  guess_primitive_matrix,
56
- sort_positions_by_symbols,
58
+ raise_if_suffixed_symbols,
57
59
  )
58
60
  from phonopy.structure.symmetry import Symmetry
59
61
 
@@ -74,22 +76,12 @@ def check_symmetry(phonon: Phonopy, cell_info: PhonopyCellInfoResult):
74
76
  spglib_cell = spglib.refine_cell(phonon.primitive.totuple(), symprec)
75
77
  assert spglib_cell is not None
76
78
  bravais_lattice, bravais_pos, bravais_numbers = spglib_cell
77
- _, _, _, perm = sort_positions_by_symbols(bravais_numbers)
78
- if phonon.primitive.has_mixtures:
79
- # spglib returns species_ids verbatim when the input has mixtures, so
80
- # rebuild PhonopyAtoms via the species table instead of atomic numbers.
81
- bravais = PhonopyAtoms(
82
- species_table=phonon.primitive.species_table,
83
- species_ids=bravais_numbers[perm],
84
- scaled_positions=bravais_pos[perm],
85
- cell=bravais_lattice,
86
- )
87
- else:
88
- bravais = PhonopyAtoms(
89
- numbers=bravais_numbers[perm],
90
- scaled_positions=bravais_pos[perm],
91
- cell=bravais_lattice,
92
- )
79
+ bravais = _rebuild_bravais_cell(
80
+ phonon.primitive,
81
+ np.array(bravais_lattice, dtype="double"),
82
+ np.array(bravais_pos, dtype="double"),
83
+ np.array(bravais_numbers, dtype="int64"),
84
+ )
93
85
  trans_mat = guess_primitive_matrix(bravais, symprec=symprec)
94
86
  ph = Phonopy(
95
87
  bravais,
@@ -128,6 +120,37 @@ def check_symmetry(phonon: Phonopy, cell_info: PhonopyCellInfoResult):
128
120
  _show_symmetry_yaml(phonon, cell_info, base_fname, ph)
129
121
 
130
122
 
123
+ def _rebuild_bravais_cell(
124
+ cell: PhonopyAtoms,
125
+ bravais_lattice: NDArray[np.double],
126
+ bravais_pos: NDArray[np.double],
127
+ bravais_numbers: NDArray[np.int64],
128
+ ) -> PhonopyAtoms:
129
+ """Rebuild the refined Bravais cell from a spglib ``refine_cell`` result.
130
+
131
+ For site-mixture cells ``totuple`` hands species ids (not atomic
132
+ numbers) to spglib, so ``bravais_numbers`` are species ids and the
133
+ species table of ``cell`` must be used to restore symbols, masses, and
134
+ mixture weights (both merged mixtures and weighted species). Ordinary
135
+ cells map the returned atomic numbers directly.
136
+
137
+ """
138
+ perm = argsort_by_key(bravais_numbers)
139
+ if cell.is_site_mixture:
140
+ return PhonopyAtoms(
141
+ species_table=cell.species_table,
142
+ species_ids=bravais_numbers[perm],
143
+ scaled_positions=bravais_pos[perm],
144
+ cell=bravais_lattice,
145
+ )
146
+ raise_if_suffixed_symbols(cell)
147
+ return PhonopyAtoms(
148
+ numbers=bravais_numbers[perm],
149
+ scaled_positions=bravais_pos[perm],
150
+ cell=bravais_lattice,
151
+ )
152
+
153
+
131
154
  def _show_symmetry_yaml(
132
155
  phonon: Phonopy, cell_info: PhonopyCellInfoResult, base_fname: str, ph: Phonopy
133
156
  ):
@@ -242,7 +242,7 @@ class DerivativeOfDynamicalMatrix:
242
242
  reclat,
243
243
  self._svecs,
244
244
  self._multi,
245
- self._dynmat.scaled_masses,
245
+ self._dynmat.normalization_masses,
246
246
  self._s2p_map,
247
247
  self._p2s_map,
248
248
  nac_factor,
@@ -262,7 +262,7 @@ class DerivativeOfDynamicalMatrix:
262
262
  np.array(np.linalg.inv(self._pcell.cell), dtype="double", order="C"),
263
263
  self._svecs,
264
264
  self._multi,
265
- self._dynmat.scaled_masses,
265
+ self._dynmat.normalization_masses,
266
266
  self._s2pp_map,
267
267
  np.arange(len(self._p2s_map), dtype="int64"),
268
268
  nac_factor,
@@ -354,7 +354,7 @@ class DerivativeOfDynamicalMatrix:
354
354
  reclat,
355
355
  self._svecs,
356
356
  self._multi,
357
- self._dynmat.scaled_masses,
357
+ self._dynmat.normalization_masses,
358
358
  s2_for_inner,
359
359
  fc_row,
360
360
  born=born if kernel_is_nac else None,
@@ -411,7 +411,7 @@ class DerivativeOfDynamicalMatrix:
411
411
 
412
412
  # Mass weighting: the kernel returns without 1/sqrt(m_k m_k'),
413
413
  # matching the value-side `get_recip_dipole_dipole` convention.
414
- inv_sqrt_m = 1.0 / np.sqrt(self._dynmat.scaled_masses)
414
+ inv_sqrt_m = 1.0 / np.sqrt(self._dynmat.normalization_masses)
415
415
  mass_pair = np.outer(inv_sqrt_m, inv_sqrt_m)
416
416
  dd *= mass_pair[None, :, None, :, None]
417
417
 
@@ -447,7 +447,8 @@ class DerivativeOfDynamicalMatrix:
447
447
  s_j = self._p2s_map[j]
448
448
  fc_row = s_i if is_full_fc else i
449
449
  mass = np.sqrt(
450
- self._dynmat.scaled_masses[i] * self._dynmat.scaled_masses[j]
450
+ self._dynmat.normalization_masses[i]
451
+ * self._dynmat.normalization_masses[j]
451
452
  )
452
453
  ddm_local = np.zeros((num_elem, 3, 3), dtype=np.cdouble)
453
454
 
@@ -656,7 +657,7 @@ class DerivativeOfDynamicalMatrix:
656
657
  d_dd += ZTZ * C * phase_pair[None, :, None, :, None]
657
658
 
658
659
  # Mass weighting 1 / sqrt(m_k m_kp)
659
- inv_sqrt_m = 1.0 / np.sqrt(self._dynmat.scaled_masses)
660
+ inv_sqrt_m = 1.0 / np.sqrt(self._dynmat.normalization_masses)
660
661
  mass_pair = np.outer(inv_sqrt_m, inv_sqrt_m)
661
662
  d_dd *= mass_pair[None, :, None, :, None]
662
663
  d_dd *= factor