From 26bac6aaeaaa24dca9b0539b5cae54116ea5076c Mon Sep 17 00:00:00 2001 From: Paul Dechamps <paul.dechamps@uliege.be> Date: Sun, 26 Jan 2025 18:56:55 +0100 Subject: [PATCH] (fix) Fixed M infinity in NACA test This does not change anything since Minf in the viscous solver is only used to compute the time step --- blast/mdao/opti_NACA.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blast/mdao/opti_NACA.py b/blast/mdao/opti_NACA.py index 88c185d..0665872 100644 --- a/blast/mdao/opti_NACA.py +++ b/blast/mdao/opti_NACA.py @@ -76,7 +76,7 @@ def cfgInviscid(nthrds, verb): def cfgBlast(verb): return { 'Re' : 1e7, # Freestream Reynolds number - 'Minf' : 0.2, # Freestream Mach number (used for the computation of the time step only) + 'Minf' : 0.1, # Freestream Mach number (used for the computation of the time step only) 'CFL0' : 1., # Inital CFL number of the calculation 'Verb': verb, # Verbosity level of the solver 'couplIter': 50, # Maximum number of iterations -- GitLab