Skip to content

Commit

Permalink
Adding a settings validator for coupling (#1006)
Browse files Browse the repository at this point in the history
  • Loading branch information
albeanth committed Dec 14, 2022
1 parent 7a179ad commit dbc2b0c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions armi/operators/settingsValidation.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,16 @@ def _willBeCopiedFrom(fName):
self.NO_ACTION,
)

self.addQuery(
lambda: not self.cs["looseCoupling"]
and self.cs["numCoupledIterations"] > 0,
"You have {0} coupled iterations selected, but have not activated loose coupling.".format(
self.cs["numCoupledIterations"]
),
"Set looseCoupling to True?",
lambda: self._assignCS("looseCoupling", True),
)

self.addQuery(
lambda: self.cs["numCoupledIterations"] > 0,
"You have {0} coupling iterations selected.".format(
Expand Down

0 comments on commit dbc2b0c

Please sign in to comment.