From 04db02e23044afe0ed86e945f10c4b690cab1cc2 Mon Sep 17 00:00:00 2001
From: Romain Boman <romain.boman@gmail.com>
Date: Wed, 23 Mar 2022 14:59:01 +0100
Subject: [PATCH] increase lift3 CM tol for recent gmsh

---
 flow/tests/lift3.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flow/tests/lift3.py b/flow/tests/lift3.py
index 1b841a31..9b6e903f 100644
--- a/flow/tests/lift3.py
+++ b/flow/tests/lift3.py
@@ -89,7 +89,7 @@ def main():
         tests.add(CTest('CL', solver.Cl, 0.135, 5e-2))
         tests.add(CTest('CD', solver.Cd, 0.0062, 1e-2)) # Tranair (NF=0.0062, FF=0.0030), Panair 0.0035
         tests.add(CTest('CS', solver.Cs, 0.0121, 5e-2))
-        tests.add(CTest('CM', solver.Cm, -0.0278, 1e-2))
+        tests.add(CTest('CM', solver.Cm, -0.0278, 2.5e-2)) # gmsh 4.4: -0.0278 ;  gmsh 4.8: -0.027147
     else:
         raise Exception('Test not defined for this flow')
     tests.run()
-- 
GitLab