Skip to content

Commit

Permalink
fix acoustic tol
Browse files Browse the repository at this point in the history
  • Loading branch information
okBrian committed Nov 1, 2024
1 parent d14d1c3 commit 529b460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchain/mfc/test/case.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 529b460

Please sign in to comment.