Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #86 from fusion-energy/develop
Browse files Browse the repository at this point in the history
mesh overwritting bug fix
  • Loading branch information
shimwell authored Nov 23, 2021
2 parents 5ae6f52 + 7c8f6f5 commit 48a74ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmc_dagmc_wrapper/Tally.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def add_mesh_filter(self, bounding_box):
else:
self.bounding_box = bounding_box

mesh = openmc.RegularMesh(mesh_id=1, name="3d_mesh")
mesh = openmc.RegularMesh(name="3d_mesh")
mesh.dimension = self.mesh_resolution
mesh.lower_left = self.bounding_box[0]
mesh.upper_right = self.bounding_box[1]
Expand Down

0 comments on commit 48a74ba

Please sign in to comment.