Skip to content
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
2 changes: 1 addition & 1 deletion toolchain/mfc/case_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@ def check_chemistry(self):
tw_out = self.get(f"bc_{dir}%Twall_out")
self.prohibit(tw_out is None, f"Isothermal Out (bc_{dir}%isothermal_out) requires a wall temperature to be set (e.g., bc_{dir}%Twall_out).")
if tw_out is not None and self._is_numeric(tw_out):
self.prohibit(tw_out <= 0.0, f"Wall temperature bc_{dir}%Tw_out must be strictly positive for thermodynamics (got {tw_out}).")
self.prohibit(tw_out <= 0.0, f"Wall temperature bc_{dir}%Twall_out must be strictly positive for thermodynamics (got {tw_out}).")

def check_misc_pre_process(self):
"""Checks miscellaneous pre-process constraints"""
Expand Down
Loading