Skip to content

Commit

Permalink
fix broken needs
Browse files Browse the repository at this point in the history
  • Loading branch information
albeanth committed Jan 25, 2024
1 parent bce2e5d commit 6b5cdfc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions armi/reactor/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1812,8 +1812,8 @@ def getMaxArea(self):
:implements: R_ARMI_BLOCK_DIMS
This method first retrieves the pitch of the hexagonal Block
(:need:I_ARMI_UTIL_HEXAGON0) and then leverages the
area calculation via :need:I_ARMI_UTIL_HEXAGON0.
(:need:`I_ARMI_UTIL_HEXAGON0`) and then leverages the
area calculation via :need:`I_ARMI_UTIL_HEXAGON0`.
"""
pitch = self.getPitch()
Expand Down Expand Up @@ -2495,7 +2495,7 @@ def getFlowArea(self):
:implements: R_ARMI_BLOCK_DIMS
Retrieving the flow area requires that there be a single coolant Component.
If available, the area is calculated (:need:I_ARMI_COMP_VOL0).
If available, the area is calculated (:need:`I_ARMI_COMP_VOL0`).
"""
return self.getComponent(Flags.COOLANT, exact=True).getArea()

Expand All @@ -2518,8 +2518,8 @@ def getHydraulicDiameter(self):
4\frac{A}{P},
where :math:`A` is the flow area (:need:I_ARMI_BLOCK_DIMS8) and :math:`P` is the
wetted perimeter (:need:I_ARMI_BLOCK_DIMS7).
where :math:`A` is the flow area (:need:`I_ARMI_BLOCK_DIMS8`) and :math:`P` is the
wetted perimeter (:need:`I_ARMI_BLOCK_DIMS7`).
"""
return 4.0 * self.getFlowArea() / self.getWettedPerimeter()

Expand Down

0 comments on commit 6b5cdfc

Please sign in to comment.