Skip to content

Commit

Permalink
Tweaking Nozzle docs (#764)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntouran authored Jul 13, 2022
1 parent ff7dcbf commit 20ca687
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions armi/reactor/tests/test_reactors.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,10 +728,8 @@ def test_removeAssembliesInRing(self):
def test_getNozzleTypes(self):
nozzleTypes = self.r.core.getNozzleTypes()
expectedTypes = ["Inner", "Outer", "lta", "Default"]
for nozzle in nozzleTypes:
self.assertTrue(
nozzle in expectedTypes, f"nozzleType {nozzle} not in {expectedTypes}"
)
for nozzle in expectedTypes:
self.assertIn(nozzle, nozzleTypes)

def test_createAssemblyOfType(self):
"""Test creation of new assemblies."""
Expand Down
10 changes: 5 additions & 5 deletions doc/user/inputs/blueprints.rst
Original file line number Diff line number Diff line change
Expand Up @@ -376,18 +376,18 @@ hotChannelFactors
A label to define which set of hot channel factors (HCFs) get applied to
this block in the thermal/hydraulic calculations. There are various valid sets included with ARMI.

nozzleType
This is a string that identifies what type of inlet nozzle an assembly has. This parameter could
be used in an implementation of a thermal-hydraulics solver with flow orificing to apply
different pressure loss coefficients and/or flow rates to different types of assemblies.

material modifications
These are a variety of modifications that are made to the
materials in blocks in these locations. It may include the fuel enrichment (mass frac.), poison
enrichment (mass frac.), zirconium mass frac, and any additional options required to fully define
the material loaded in the component. The material definitions in the material library define
valid modifications for them.

nozzleType
This is a string that identifies what type of inlet nozzle an assembly has. This parameter could
be used in an implementation of a thermal-hydraulics solver with flow orificing to apply
different pressure loss coefficients and/or flow rates to different types of assemblies.

.. exec::
from armi.materials import Material
from tabulate import tabulate
Expand Down

0 comments on commit 20ca687

Please sign in to comment.