Skip to content

Commit

Permalink
removed isotopes from example for testing speed
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Jun 6, 2023
1 parent 2671c4a commit 012d8cc
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions examples/decay_heat_vs_time/decay_heat_vs_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
# based on CoNDERC data
# https://www-nds.iaea.org/conderc/fusion/element/SS304

# makes a simple material from Silver
my_material = openmc.Material()
my_material.add_element('Cr', 18.02, percent_type='ao')
my_material.add_element('Mn', 1.44, percent_type='ao')
my_material.add_element('Ni', 8.82, percent_type='ao')
my_material.add_element('Si', 0.55, percent_type='ao')
my_material.add_element('Fe', 71.17, percent_type='ao')
# makes a simple material
my_material = openmc.Material()
# my_material.add_element('Cr', 18.02, percent_type='ao')
# my_material.add_element('Mn', 1.44, percent_type='ao')
# my_material.add_element('Ni', 8.82, percent_type='ao')
# my_material.add_element('Si', 0.55, percent_type='ao')
# my_material.add_element('Fe', 71.17, percent_type='ao')
my_material.add_nuclide('Fe56', 71.17, percent_type='ao')
my_material.set_density('g/cm3', 7.9)

sphere_radius = 100
Expand Down

0 comments on commit 012d8cc

Please sign in to comment.