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

(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
parent 843da6e0
No related branches found
No related tags found
1 merge request!1BLASTER v1.0
......@@ -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
......
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