Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added missing back slash #224

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions tasks/task_01_cross_sections/4_Doppler_broadening.ipynb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"cells": [
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down Expand Up @@ -34,6 +35,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -50,7 +52,7 @@
"\n",
"mt_number = REACTION_MT[\"(n,total)\"] # looks up the MT number for the total reaction\n",
"\n",
"h5_file = f\"WMP_Library/074186.h5\" # 074186 is W186\n",
"h5_file = f\"/WMP_Library/074186.h5\" # 074186 is W186\n",
"\n",
"isotope_multipole = openmc.data.WindowedMultipole.from_hdf5(h5_file) # loads up the WMP cross section file\n",
"\n",
Expand All @@ -70,13 +72,15 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"Zoom in on one of the spectral peaks to observe how increasing temperature causes Doppler broadening."
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand All @@ -93,7 +97,7 @@
"\n",
"mt_number = REACTION_MT[\"(n,total)\"] # looks up the MT number for the total reaction\n",
"\n",
"h5_file = f\"WMP_Library/026056.h5\" # 026056 is Fe56\n",
"h5_file = f\"/WMP_Library/026056.h5\" # 026056 is Fe56\n",
"\n",
"isotope_multipole = openmc.data.WindowedMultipole.from_hdf5(h5_file) # loads up the WMP cross section file\n",
"\n",
Expand All @@ -113,6 +117,7 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
Expand Down