Skip to content

Commit

Permalink
replaced 444 with damage energy
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Feb 7, 2024
1 parent 4f3d555 commit 66db21c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/task_06_CSG_cell_tally_DPA/1_find_dpa.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"This sets up the damage energy tally using the MT number 444. A list of MT numbers including their reaction discription can be found [here](https://t2.lanl.gov/nis/endf/mts.html)."
"This sets up the damage energy tally using the score \"damage-energy\". This is the same as MT number 444. More details on MT numbers and their full description can be found [here](https://t2.lanl.gov/nis/endf/mts.html)."
]
},
{
Expand All @@ -101,7 +101,7 @@
"cell_filter = openmc.CellFilter(vessel_cell)\n",
"dpa_reaction_tally = openmc.Tally(name='DPA')\n",
"dpa_reaction_tally.filters = [cell_filter]\n",
"dpa_reaction_tally.scores = ['444'] # note use of 444 in string format, this is the MT reaction number for damage energy more MT numbers here https://t2.lanl.gov/nis/endf/mts.html\n",
"dpa_reaction_tally.scores = ['damage-energy']\n",
"dpa_reaction_tally.nuclides = ['Fe54', 'Fe56', 'Fe57', 'Fe58'] # this records the tally for each nuclide in the list\n",
"my_tallies = openmc.Tallies([dpa_reaction_tally])"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@
"cell_filter_conductor = openmc.CellFilter(blanket_breeder_cell)\n",
"conductor_damage_tally = openmc.Tally(name='conductor_damage')\n",
"conductor_damage_tally.filters = [cell_filter_conductor]\n",
"conductor_damage_tally.scores = ['444']\n",
"conductor_damage_tally.scores = ['damage-energy']\n",
"\n",
"my_tallies = openmc.Tallies([tbr_tally, blanket_heating_tally, conductor_damage_tally])"
]
Expand Down

0 comments on commit 66db21c

Please sign in to comment.