Skip to content

Commit af512f8

Browse files
committed
use temp instead of temp_list[ii] in _gen_lammps_input to avoid error for p path
1 parent 36ac51b commit af512f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dpti/mti.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def make_tasks(iter_name, jdata):
232232
nsteps,
233233
timestep,
234234
ens,
235-
temp_list[ii],
235+
temp=temp,
236236
pres=pres,
237237
tau_t=tau_t,
238238
thermo_freq=thermo_freq,
@@ -250,7 +250,7 @@ def make_tasks(iter_name, jdata):
250250
nsteps,
251251
timestep,
252252
ens,
253-
temp_list[ii],
253+
temp=temp,
254254
pres=pres,
255255
tau_t=tau_t,
256256
thermo_freq=thermo_freq,
@@ -285,7 +285,7 @@ def make_tasks(iter_name, jdata):
285285
nsteps,
286286
timestep,
287287
ens,
288-
temp_list[ii],
288+
temp=temp,
289289
pres=pres,
290290
tau_t=tau_t,
291291
thermo_freq=thermo_freq,
@@ -303,7 +303,7 @@ def make_tasks(iter_name, jdata):
303303
nsteps,
304304
timestep,
305305
ens,
306-
temp_list[ii],
306+
temp=temp,
307307
pres=pres,
308308
tau_t=tau_t,
309309
thermo_freq=thermo_freq,

0 commit comments

Comments
 (0)