From 33bb0ecbd8d5308755f26960a1bc077b0ea1f28c Mon Sep 17 00:00:00 2001 From: Jiankai Yu Date: Tue, 14 Jul 2020 10:00:12 -0400 Subject: [PATCH] fix a small typo in unit of fission_q --- docs/source/usersguide/depletion.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/usersguide/depletion.rst b/docs/source/usersguide/depletion.rst index f6feb6d24..2f59d7252 100644 --- a/docs/source/usersguide/depletion.rst +++ b/docs/source/usersguide/depletion.rst @@ -71,7 +71,7 @@ variety of ways. This requires knowing what the total fission energy release sho be, including indirect components. Some examples are provided below:: # use a dictionary of fission_q values - fission_q = {"U235": 202} # energy in MeV + fission_q = {"U235": 202e+6} # energy in eV # create a modified chain and write it to a new file chain = openmc.deplete.Chain.from_xml("chain.xml", fission_q)