Skip to content

Commit

Permalink
Modeling fission products in the HexToRZReactor Conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehader committed Sep 7, 2022
1 parent 9cb79cf commit 5685791
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions armi/reactor/converters/geometryConverters.py
Expand Up @@ -800,6 +800,9 @@ def _createRadialThetaZone(
newBlock.p.zbottom = lowerAxialZ
newBlock.p.ztop = upperAxialZ

fpi = self._o.getInterface("fissionProducts")
newBlock.setLumpedFissionProducts(fpi.getGlobalLumpedFissionProducts())

# Assign the new block cross section type and burn up group
newBlock.setType(newBlockType)
newXsType, newBuGroup = self._createBlendedXSID(newBlock)
Expand Down
4 changes: 2 additions & 2 deletions armi/reactor/converters/tests/test_axialExpansionChanger.py
Expand Up @@ -1164,7 +1164,7 @@ def __init__(self):
materials.ht9.HT9.__init__(self)

def linearExpansionPercent(self, Tk=None, Tc=None):
""" A fake linear expansion percent"""
"""A fake linear expansion percent"""
Tc = units.getTc(Tc, Tk)
return 0.02 * Tc

Expand All @@ -1184,6 +1184,6 @@ def __init__(self):
materials.ht9.HT9.__init__(self)

def linearExpansionPercent(self, Tk=None, Tc=None):
""" A fake linear expansion percent"""
"""A fake linear expansion percent"""
Tc = units.getTc(Tc, Tk)
return 0.08 * Tc

0 comments on commit 5685791

Please sign in to comment.