Skip to content

Commit

Permalink
fix #7188 missing dagmc file at execution (#7189)
Browse files Browse the repository at this point in the history
  • Loading branch information
moellep committed Jul 25, 2024
1 parent 98c76b9 commit 67c02d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sirepo/sim_data/openmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,10 @@ def _lib_file_basenames(cls, data):
if data.get("report") == "tallyReport":
return r
if data.models.geometryInput.dagmcFile:
r = cls.source_filenames(data)
d, s = cls.dagmc_and_maybe_step_filename(data)
if not s:
r.append(d)
r += cls.source_filenames(data)
if data.get("report") == "dagmcAnimation":
d, s = cls.dagmc_and_maybe_step_filename(data)
r.append(s or d)
Expand Down

0 comments on commit 67c02d0

Please sign in to comment.