From 43915dbe4c245082f64049d88d197a9a6fd41e88 Mon Sep 17 00:00:00 2001 From: Adam Nelson Date: Sun, 6 Jan 2013 09:17:40 -0500 Subject: [PATCH] Added kappa-fission as a valid identifier in the input processor. --- docs/source/usersguide/input.rst | 3 ++- src/input_xml.F90 | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/source/usersguide/input.rst b/docs/source/usersguide/input.rst index fd92ec79c8..a6d1361dba 100644 --- a/docs/source/usersguide/input.rst +++ b/docs/source/usersguide/input.rst @@ -838,7 +838,8 @@ The following responses can be tallied. Total production of neutrons due to fission :k-fission: - Kappa-Fission; the recoverable energy production due to fission. + Kappa-Fission; the recoverable energy production due to fission. ``kappa-fission`` + is also a valid identifier for this response. :events: Number of scoring events diff --git a/src/input_xml.F90 b/src/input_xml.F90 index 359dd8225e..780db6393c 100644 --- a/src/input_xml.F90 +++ b/src/input_xml.F90 @@ -1857,7 +1857,7 @@ contains ! Set tally estimator to analog t % estimator = ESTIMATOR_ANALOG end if - case ('k-fission') + case ('k-fission', 'kappa-fission') t % score_bins(j) = SCORE_K_FISSION case ('current') t % score_bins(j) = SCORE_CURRENT