From c75ae2d6e09275014cfe5fd6773f65035937a384 Mon Sep 17 00:00:00 2001 From: Sarthak Sharma <54902964+engineer-scientist@users.noreply.github.com> Date: Tue, 21 Jul 2026 22:54:22 -0500 Subject: [PATCH] Fix incorrect parameter name Tw_out -> Twall_out in validator message --- toolchain/mfc/case_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/mfc/case_validator.py b/toolchain/mfc/case_validator.py index 1099b51328..419920feec 100644 --- a/toolchain/mfc/case_validator.py +++ b/toolchain/mfc/case_validator.py @@ -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"""