From 529b460e63ba50858e329e7475b8d67f23196ac0 Mon Sep 17 00:00:00 2001 From: Brian Ok Date: Fri, 1 Nov 2024 04:12:16 -0400 Subject: [PATCH] fix acoustic tol --- toolchain/mfc/test/case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/mfc/test/case.py b/toolchain/mfc/test/case.py index 2c79649588..a347aab9bf 100644 --- a/toolchain/mfc/test/case.py +++ b/toolchain/mfc/test/case.py @@ -222,7 +222,7 @@ def compute_tolerance(self) -> float: tolerance = 1e-12 # Default if "Example" in self.trace.split(" -> "): tolerance = 1e-3 - if self.params.get("hypoelasticity", 'F') == 'T': + elif self.params.get("hypoelasticity", 'F') == 'T': tolerance = 1e-7 elif any(self.params.get(key, 'F') == 'T' for key in ['relax', 'ib', 'qbmm', 'bubbles']): tolerance = 1e-10