File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -176,15 +176,13 @@ def alter_riemann_solvers(num_fluids):
176176 def alter_low_Mach_correction ():
177177 stack .push ('' , {'fluid_pp(1)%gamma' : 0.16 , 'fluid_pp(1)%pi_inf' : 3515.0 , 'dt' : 1e-7 })
178178
179- for low_Mach in [1 , 2 ]:
180- stack .push (f"low_Mach={ low_Mach } " , {'low_Mach' : low_Mach })
181- stack .push (f"riemann_solver=1" ,{'riemann_solver' : 1 })
182- cases .append (define_case_d (stack , '' , {}))
183- stack .pop ()
184- stack .push (f"riemann_solver=2" ,{'riemann_solver' : 2 })
185- cases .append (define_case_d (stack , '' , {}))
186- stack .pop ()
187- stack .pop ()
179+ stack .push (f"riemann_solver=1" ,{'riemann_solver' : 1 })
180+ cases .append (define_case_d (stack , 'low_Mach=1' , {'low_Mach' : 1 }))
181+ stack .pop ()
182+ stack .push (f"riemann_solver=2" ,{'riemann_solver' : 2 })
183+ cases .append (define_case_d (stack , 'low_Mach=1' , {'low_Mach' : 1 }))
184+ cases .append (define_case_d (stack , 'low_Mach=2' , {'low_Mach' : 2 }))
185+ stack .pop ()
188186
189187 stack .pop ()
190188
You can’t perform that action at this time.
0 commit comments