armi.physics.fuelCycle.fuelHandlerInterface module
A place for the FuelHandler’s Interface.
- class armi.physics.fuelCycle.fuelHandlerInterface.FuelHandlerInterface(r, cs)[source]
Bases:
Interface
Moves and/or processes fuel in a Standard Operator.
Fuel management traditionally runs at the beginning of a cycle, before power or temperatures have been updated. This allows pre-run fuel management steps for highly customized fuel loadings. In typical runs, no fuel management occurs at the beginning of the first cycle and the as-input state is left as is.
This interface allows for a user to define custom shuffle logic that modifies to the core model. Being based on the
Interface
class, it has direct access to the current core model.User logic is able to be executed from within the
manageFuel()
method, which will use thefuelHandlerFactory()
to search for a Python file specified by the case settingshuffleLogic
. If it exists, the fuel handler with name specified by the user via thefuelHandlerName
case setting will be imported, and any actions in itsoutage
method will be executed at theinteractBOC()
hook.If no class with the name specified by the
fuelHandlerName
setting is found in the file with pathshuffleLogic
, an error is returned.See the user manual for how the custom shuffle logic file should be constructed.
- name: str | None = 'fuelHandler'
The name of the interface. This is undefined for the base class, and must be overridden by any concrete class that extends this one.
- interactBOC(cycle=None)[source]
Move and/or process fuel.
Also, if requested, first have the lattice physics system update XS.
- makeShuffleReport()[source]
Create a data file listing all the shuffles that occurred in a case.
This can be used to export shuffling to an external code or to perform explicit repeat shuffling in a restart. It creates a
*SHUFFLES.txt
file based on the Reactor.moves structureSee also
readMoves
reads this file and parses it.