Skip to content

Commit

Permalink
Spelling of Homogeneous fixed (#1190)
Browse files Browse the repository at this point in the history
  • Loading branch information
onufer committed Feb 16, 2023
1 parent 7a91be9 commit 3e47ec6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion armi/reactor/converters/blockConverters.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def convert(self):
def _addBlockRings(
self, blockToAdd, blockName, numRingsToAdd, firstRing, mainComponent=None
):
"""Add a homogenous block ring to the converted block."""
"""Add a homogeneous block ring to the converted block."""
runLog.info(
"Converting representative block {} to its equivalent cylindrical model".format(
self._sourceBlock
Expand Down
6 changes: 3 additions & 3 deletions armi/reactor/tests/test_blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1835,7 +1835,7 @@ def test_getPinCoords(self):
nRings = hexagon.numRingsToHoldNumCells(nPins) - 1
self.assertAlmostEqual(math.sqrt(cornerMag), nRings * pinPitch)

def test_getPitchHomogenousBlock(self):
def test_getPitchHomogeneousBlock(self):
"""
Demonstrate how to communicate pitch on a hex block with unshaped components.
Expand Down Expand Up @@ -2135,7 +2135,7 @@ def setUp(self):
def test_getPitchSquare(self):
self.assertEqual(self.cartesianBlock.getPitch(), (self.PITCH, self.PITCH))

def test_getPitchHomogenousBlock(self):
def test_getPitchHomogeneousBlock(self):
"""
Demonstrate how to communicate pitch on a hex block with unshaped components.
Expand All @@ -2158,7 +2158,7 @@ def test_getPitchHomogenousBlock(self):
# the desired area fraction.
# The second way is to define all physical material components as unshaped, and
# add an additional infinitely thin Void component (no area) that defines pitch.
# See second part of HexBlock_TestCase.test_getPitchHomogenousBlock for
# See second part of HexBlock_TestCase.test_getPitchHomogeneousBlock for
# demonstration.
cartBlock = blocks.CartesianBlock("TestCartBlock")

Expand Down

0 comments on commit 3e47ec6

Please sign in to comment.