mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Fixed issue with discrepancy in indexing of y-dimension in lattice universes and offsets
This commit is contained in:
parent
3df9f3937b
commit
e413bf30e5
1 changed files with 1 additions and 1 deletions
|
|
@ -369,7 +369,7 @@ class Summary(object):
|
|||
|
||||
# Set the distribcell offsets for the lattice
|
||||
if offsets is not None:
|
||||
lattice.offsets = offsets
|
||||
lattice.offsets = offsets[:, ::-1, :]
|
||||
|
||||
# Add the Lattice to the global dictionary of all Lattices
|
||||
self.lattices[index] = lattice
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue