Skip to content

Commit

Permalink
Get wetted perimeter even if components have DEPLETABLE flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgjarrett committed Jan 7, 2025
1 parent c078cde commit c92a90d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions armi/reactor/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2434,13 +2434,17 @@ def getWettedPerimeter(self):
Flags.GRID_PLATE,
Flags.INLET_NOZZLE,
Flags.HANDLING_SOCKET,
Flags.DUCT | Flags.DEPLETABLE,
Flags.GRID_PLATE | Flags.DEPLETABLE,
Flags.INLET_NOZZLE | Flags.DEPLETABLE,
Flags.HANDLING_SOCKET | Flags.DEPLETABLE,
)

# flags pertaining to circular pin components where the exterior of the circle is wetted
wettedPinComponentFlags = (Flags.CLAD, Flags.WIRE)
wettedPinComponentFlags = (Flags.CLAD, Flags.WIRE, Flags.CLAD | Flags.DEPLETABLE, Flags.WIRE | Flags.DEPLETABLE)

# flags pertaining to components where both the interior and exterior are wetted
wettedHollowComponentFlags = (Flags.DUCT | Flags.INNER,)
wettedHollowComponentFlags = (Flags.DUCT | Flags.INNER, Flags.DUCT | Flags.INNER | Flags.DEPLETABLE,)

# obtain all wetted components based on type
wettedHollowHexagonComponents = []
Expand Down

0 comments on commit c92a90d

Please sign in to comment.