Skip to content

Commit

Permalink
Merge 428dc36 into 571e4f5
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Feb 20, 2024
2 parents 571e4f5 + 428dc36 commit 68a6f13
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion armi/reactor/blueprints/gridBlueprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class GridBlueprint(yamlize.Object):
class.
Includes a ``construct`` method, which instantiates an instance of one
of the subclasses of :py:class:`~armi.reactor.grids.structuredgrid.StructuredGrid`.
of the subclasses of :py:class:`~armi.reactor.grids.structuredGrid.StructuredGrid`.
This is typically called from within :py:meth:`~armi.reactor.blueprints.blockBlueprint.BlockBlueprint.construct`,
which then also associates the individual components in the block with
locations specifed in the grid.
Expand Down
2 changes: 1 addition & 1 deletion armi/reactor/grids/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
)

from armi.reactor.grids.grid import Grid
from armi.reactor.grids.structuredgrid import StructuredGrid, GridParameters, _tuplify
from armi.reactor.grids.structuredGrid import StructuredGrid, GridParameters, _tuplify
from armi.reactor.grids.axial import AxialGrid, axialUnitGrid
from armi.reactor.grids.cartesian import CartesianGrid
from armi.reactor.grids.hexagonal import HexGrid, COS30, SIN30, TRIANGLES_IN_HEXAGON
Expand Down
2 changes: 1 addition & 1 deletion armi/reactor/grids/axial.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import numpy

from armi.reactor.grids.locations import IJType, LocationBase
from armi.reactor.grids.structuredgrid import StructuredGrid
from armi.reactor.grids.structuredGrid import StructuredGrid

if TYPE_CHECKING:
from armi.reactor.composites import ArmiObject
Expand Down
2 changes: 1 addition & 1 deletion armi/reactor/grids/cartesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from armi.reactor import geometry

from armi.reactor.grids.locations import IJType
from armi.reactor.grids.structuredgrid import StructuredGrid
from armi.reactor.grids.structuredGrid import StructuredGrid


class CartesianGrid(StructuredGrid):
Expand Down
2 changes: 1 addition & 1 deletion armi/reactor/grids/hexagonal.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
BOUNDARY_CENTER,
)
from armi.reactor.grids.locations import IndexLocation, IJKType, IJType
from armi.reactor.grids.structuredgrid import StructuredGrid
from armi.reactor.grids.structuredGrid import StructuredGrid

COS30 = sqrt(3) / 2.0
SIN30 = 1.0 / 2.0
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion armi/reactor/grids/thetarz.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import numpy

from armi.reactor.grids.locations import IJType, IJKType
from armi.reactor.grids.structuredgrid import StructuredGrid
from armi.reactor.grids.structuredGrid import StructuredGrid

if TYPE_CHECKING:
# Avoid circular imports
Expand Down

0 comments on commit 68a6f13

Please sign in to comment.