Skip to content

Commit

Permalink
Removing unused parameter rdIterNum (#1704)
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed May 20, 2024
1 parent 0767728 commit 1a2ca43
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
13 changes: 0 additions & 13 deletions armi/reactor/reactorParameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@
def defineReactorParameters():
pDefs = parameters.ParameterDefinitionCollection()

pDefs.add(
parameters.Parameter(
"rdIterNum",
units=units.UNITLESS,
description="Integer number of region-density equilibrium iterations",
location=ParamLocation.AVERAGE,
saveToDB=True,
default=parameters.NoDefault,
setter=parameters.NoDefault,
categories=set(),
)
)

with pDefs.createBuilder(location=ParamLocation.AVERAGE, default=0.0) as pb:
pb.defParam(
"cycle",
Expand Down
1 change: 1 addition & 0 deletions doc/release/0.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ API Changes
* Moving ``ArmiObject.getTotalEnergyGenerationConstants`` to ``Block``.
* Moving ``ArmiObject.getFissionEnergyGenerationConstants`` to ``Block``.
* Moving ``ArmiObject.getCaptureEnergyGenerationConstants`` to ``Block``.
#. Removing the parameeter ``rdIterNum``. (`PR#1704 <https://github.com/terrapower/armi/pull/1704>`_)
#. Removing the parameters ``outsideFuelRing`` and ``outsideFuelRingFluxFr``. (`PR#1700 <https://github.com/terrapower/armi/pull/1700>`_)
#. Removing the setting ``doOrificedTH``. (`PR#1706 <https://github.com/terrapower/armi/pull/1706>`_)
#. TBD
Expand Down

0 comments on commit 1a2ca43

Please sign in to comment.