Skip to content

Commit

Permalink
Fixing circular import in ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Jan 31, 2025
1 parent 6c4376a commit d37be47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion armi/physics/neutronics/crossSectionGroupManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
from armi.physics.neutronics.const import CONF_CROSS_SECTION
from armi.reactor import flags
from armi.reactor.components import basicShapes
from armi.reactor.converters.blockConverters import stripComponents
from armi.reactor.flags import Flags
from armi.utils import safeCopy
from armi.utils.units import C_TO_K, TRACE_NUMBER_DENSITY
Expand Down Expand Up @@ -710,6 +709,8 @@ def _makeRepresentativeBlock(self):

def _getNucTempHelper(self):
"""All candidate blocks are used in the average."""
from armi.reactor.converters.blockConverters import stripComponents

nvt = np.zeros(len(self.allNuclidesInProblem))
nv = np.zeros(len(self.allNuclidesInProblem))
for block in self.getCandidateBlocks():
Expand Down

0 comments on commit d37be47

Please sign in to comment.