Skip to content
Snippets Groups Projects
Verified Commit ddfe3c95 authored by Paul Dechamps's avatar Paul Dechamps :speech_balloon:
Browse files

(fix) Fixed values of rae 3D tests to allow pipline to pass on ubuntu

The test values are different from mac to ubuntu  which is probably related to version difference (python, numpy, scipy, swig and probably others are different).
parent 9980ae2d
No related branches found
No related tags found
1 merge request!1BLASTER v1.0
......@@ -146,9 +146,9 @@ def main():
print(ccolors.ANSI_BLUE + 'PyTesting...' + ccolors.ANSI_RESET)
tests = CTests()
tests.add(CTest('Cl', isol.getCl(), 0.135, 5e-2))
tests.add(CTest('Cd wake', vsol.Cdt, 0.00603, 1e-2))
tests.add(CTest('Cd integral', vsol.Cdf + isol.getCd(), 0.0134, 1e-2))
tests.add(CTest('Cdf', vsol.Cdf, 0.00557, 1e-2))
tests.add(CTest('Cd wake', vsol.Cdt, 0.00603, 1e-2, forceabs=True))
tests.add(CTest('Cd integral', vsol.Cdf + isol.getCd(), 0.0134, 1e-2, forceabs=True))
tests.add(CTest('Cdf', vsol.Cdf, 0.00557, 1e-2, forceabs=True))
tests.add(CTest('Iterations', len(aeroCoeffs), 3, 0, forceabs=True))
tests.run()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment