Skip to content

Commit 339637c

Browse files
committed
fixed missing att
1 parent 4aac80f commit 339637c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

atomate/vasp/analysis/phonopy.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_phonopy_gibbs(
5353
)
5454

5555
# gibbs free energy and temperature
56-
max_t_index = phonopy_qha._qha._max_t_index
56+
max_t_index = phonopy_qha._qha._len
5757
G = phonopy_qha.get_gibbs_temperature()[:max_t_index]
5858
T = phonopy_qha._qha._temperatures[:max_t_index]
5959
return G, T
@@ -178,7 +178,7 @@ def get_phonopy_thermal_expansion(
178178
)
179179

180180
# thermal expansion coefficient and temperature
181-
max_t_index = phonopy_qha._qha._max_t_index
182-
alpha = phonopy_qha.get_thermal_expansion()[:max_t_index]
181+
max_t_index = phonopy_qha._qha._len
182+
alpha = phonopy_qha.get_thermal_expansion()[: max_t_index]
183183
T = phonopy_qha._qha._temperatures[:max_t_index]
184184
return alpha, T

0 commit comments

Comments
 (0)