mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 05:05:30 -04:00
Fixed issue in iso-in-lab setting for elements
This commit is contained in:
parent
1080213912
commit
43b141e9ba
1 changed files with 1 additions and 1 deletions
|
|
@ -610,7 +610,7 @@ class Material(object):
|
|||
def make_isotropic_in_lab(self):
|
||||
for nuclide, percent, percent_type in self._nuclides:
|
||||
nuclide.scattering = 'iso-in-lab'
|
||||
for element, percent, percent_type in self._elements:
|
||||
for element, percent, percent_type, enrichment in self._elements:
|
||||
element.scattering = 'iso-in-lab'
|
||||
|
||||
def get_nuclides(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue