Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a settings validator for coupling #1006

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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