We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aac80f commit 339637cCopy full SHA for 339637c
atomate/vasp/analysis/phonopy.py
@@ -53,7 +53,7 @@ def get_phonopy_gibbs(
53
)
54
55
# gibbs free energy and temperature
56
- max_t_index = phonopy_qha._qha._max_t_index
+ max_t_index = phonopy_qha._qha._len
57
G = phonopy_qha.get_gibbs_temperature()[:max_t_index]
58
T = phonopy_qha._qha._temperatures[:max_t_index]
59
return G, T
@@ -178,7 +178,7 @@ def get_phonopy_thermal_expansion(
178
179
180
# thermal expansion coefficient and temperature
181
182
- alpha = phonopy_qha.get_thermal_expansion()[:max_t_index]
+ alpha = phonopy_qha.get_thermal_expansion()[: max_t_index]
183
184
return alpha, T
0 commit comments