From 1563002ee904ecea56ca480ff8050272d62d9eff Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Sat, 12 Jan 2019 15:45:45 -0600 Subject: [PATCH] Remove two references to weight correction method --- docs/source/io_formats/settings.rst | 5 ++--- openmc/settings.py | 15 +++++++-------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/docs/source/io_formats/settings.rst b/docs/source/io_formats/settings.rst index 13a53fb0b9..68848014d1 100644 --- a/docs/source/io_formats/settings.rst +++ b/docs/source/io_formats/settings.rst @@ -322,9 +322,8 @@ or sub-elements: :method: Which resonance elastic scattering method is to be applied: "rvs" (relative - velocity sampling), "dbrc" (Doppler broadening rejection correction), or - "wcm" (weight correction method). Descriptions of each of these methods are - documented here_. + velocity sampling) or "dbrc" (Doppler broadening rejection correction). + Descriptions of each of these methods are documented here_. .. _here: http://dx.doi.org/10.1016/j.anucene.2017.12.044 diff --git a/openmc/settings.py b/openmc/settings.py index ab91aa5a64..23450d98d3 100644 --- a/openmc/settings.py +++ b/openmc/settings.py @@ -82,14 +82,13 @@ class Settings(object): Settings for resonance elastic scattering. Accepted keys are 'enable' (bool), 'method' (str), 'energy_min' (float), 'energy_max' (float), and 'nuclides' (list). The 'method' can be set to 'dbrc' (Doppler broadening - rejection correction), 'wcm' (weight correction method), and 'rvs' - (relative velocity sampling). If not specified, 'rvs' is the default - method. The 'energy_min' and 'energy_max' values indicate the minimum - and maximum energies above and below which the resonance elastic - scattering method is to be applied. The 'nuclides' list indicates what - nuclides the method should be applied to. In its absence, the method - will be applied to all nuclides with 0 K elastic scattering data - present. + rejection correction) or 'rvs' (relative velocity sampling). If not + specified, 'rvs' is the default method. The 'energy_min' and + 'energy_max' values indicate the minimum and maximum energies above and + below which the resonance elastic scattering method is to be + applied. The 'nuclides' list indicates what nuclides the method should + be applied to. In its absence, the method will be applied to all + nuclides with 0 K elastic scattering data present. run_mode : {'eigenvalue', 'fixed source', 'plot', 'volume', 'particle restart'} The type of calculation to perform (default is 'eigenvalue') seed : int