Skip to content

Commit

Permalink
Fix a couple of RST formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
opotowsky committed Jan 25, 2024
1 parent 161bc61 commit 9f46493
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions armi/nuclearDataIO/cccc/cccc.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
subclassed for each CCCC file. It is subclassed directly for the CCCC files
that contain XS data:
* :py:class:`ISOTXS <armi.nuclearDataIO.cccc.isotxs.IsotxsIO>`,
* :py:mod:`GAMISO <armi.nuclearDataIO.cccc.gamiso>`,
* :py:class:`PMATRX <armi.nuclearDataIO.cccc.pmatrx.PmatrxIO>`.
* :py:class:`DLAYXS <armi.nuclearDataIO.cccc.dlayxs.DlayxsIO>`.
* :py:mod:`COMPXS <armi.nuclearDataIO.cccc.compxs>`.
* :py:class:`ISOTXS <armi.nuclearDataIO.cccc.isotxs.IsotxsIO>`
* :py:mod:`GAMISO <armi.nuclearDataIO.cccc.gamiso>`
* :py:class:`PMATRX <armi.nuclearDataIO.cccc.pmatrx.PmatrxIO>`
* :py:class:`DLAYXS <armi.nuclearDataIO.cccc.dlayxs.DlayxsIO>`
* :py:mod:`COMPXS <armi.nuclearDataIO.cccc.compxs>`
For the CCCC file types that are outputs from a flux solver such as DIF3D
(e.g., GEODST, DIF3D, NHFLUX) the streams are subclassed from
Expand Down
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 9f46493

Please sign in to comment.