Skip to content

Commit

Permalink
apply multiplier more universally in _getParamMax
Browse files Browse the repository at this point in the history
  • Loading branch information
bsculac committed Dec 6, 2024
1 parent 7ca1e13 commit 19bb4fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion armi/physics/fuelCycle/fuelHandlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def _getParamMax(a, paramName, blockLevelMax=True):
if blockLevelMax:
return a.getChildParamValues(paramName).max() * multiplier

return a.p[paramName]
return a.p[paramName] * multiplier

def findAssembly(
self,
Expand Down

0 comments on commit 19bb4fb

Please sign in to comment.