Skip to content

Commit

Permalink
apparently "git add ." missed this....
Browse files Browse the repository at this point in the history
  • Loading branch information
albeanth committed Oct 30, 2024
1 parent 5319cb7 commit 1408ac6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions armi/reactor/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
from armi import nuclideBases
from armi import runLog
from armi.bookkeeping import report
from armi.nucDirectory import elements
from armi.nuclearDataIO import xsCollections
from armi.physics.neutronics import GAMMA
from armi.physics.neutronics import NEUTRON
Expand Down Expand Up @@ -784,7 +783,9 @@ def completeInitialLoading(self, bolBlock=None):
## populate molesHmBOL on components within the block as well
for c in self.getChildren():
c.p.molesHmBOL = c.getHMMoles()
c.p.puFrac = self.getPuMoles() / c.p.molesHmBOL if c.p.molesHmBOL > 0.0 else 0.0
c.p.puFrac = (
self.getPuMoles() / c.p.molesHmBOL if c.p.molesHmBOL > 0.0 else 0.0
)

try:
# non-pinned reactors (or ones without cladding) will not use smear density
Expand Down Expand Up @@ -1434,7 +1435,6 @@ def updateComponentDims(self):
except NotImplementedError:
runLog.warning("{0} has no updatedDims method -- skipping".format(c))


def getIntegratedMgFlux(self, adjoint=False, gamma=False):
"""
Return the volume integrated multigroup neutron tracklength in [n-cm/s].
Expand Down

0 comments on commit 1408ac6

Please sign in to comment.