Skip to content

Commit

Permalink
Make Tinput warning a single.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgjarrett committed Aug 23, 2022
1 parent d31b532 commit 3f17e4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion armi/reactor/components/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ def tInputWarning(self, Tinput):
runLog.warning(
f"Thermal expansion for {self.material} at Tinput = {Tinput} is non-zero "
f"({expansionFactor}). The modeled density for this material will be off "
f"by a factor of {(1 + expansionFactor) ** 2}."
f"by a factor of {(1 + expansionFactor) ** 2}.",
single=True,
)

@property
Expand Down

0 comments on commit 3f17e4b

Please sign in to comment.