Skip to content

Commit

Permalink
add mpids to names
Browse files Browse the repository at this point in the history
  • Loading branch information
JaGeo committed Oct 10, 2024
1 parent d557323 commit a54996f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions autoplex/auto/phonons/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ def make(
w_angle=self.w_angle,
supercell_settings=self.supercell_settings,
)
addDFTrand.append_name("_"+str(mp_id))
flows.append(addDFTrand)
fit_input.update({mp_id: addDFTrand.output})
if self.add_dft_phonon_struct:
Expand All @@ -243,6 +244,7 @@ def make(
supercell_settings=self.supercell_settings,
)
flows.append(addDFTphon)
addDFTphon.append_name("_"+str(mp_id))
fit_input.update({mp_id: addDFTphon.output})
if self.add_dft_random_struct and self.add_dft_phonon_struct:
fit_input.update(
Expand Down Expand Up @@ -321,6 +323,7 @@ def make(
supercell_settings=self.supercell_settings,
**self.benchmark_kwargs,
)
complete_bm.append_name("_"+str(benchmark_mp_ids[ibenchmark_structure]))
flows.append(complete_bm)
bm_outputs.append(complete_bm.output)

Expand Down Expand Up @@ -388,6 +391,7 @@ def make(
supercell_settings=self.supercell_settings,
**self.benchmark_kwargs,
)
complete_bm.append_name("_"+str(benchmark_mp_ids[ibenchmark_structure]))
flows.append(complete_bm)
bm_outputs.append(complete_bm.output)
collect_bm = write_benchmark_metrics(
Expand Down

0 comments on commit a54996f

Please sign in to comment.