|
182 | 182 | "--outDir", args.outDir, |
183 | 183 | "--stencilSize", str(3), |
184 | 184 | "--bounds", str(-1.25), str(1.25), str(-1.25), str(1.25), |
185 | | - "--periodic", "x y") |
| 185 | + "--periodic", "x", "y") |
186 | 186 | popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait() |
187 | 187 |
|
188 | 188 | elif ("euler2dsmooth" in pName): |
|
192 | 192 | "--outDir", args.outDir, |
193 | 193 | "--stencilSize", str(s), |
194 | 194 | "--bounds", str(-1.), str(1.0), str(-1.0), str(1.0), |
195 | | - "--periodic", "x y") |
| 195 | + "--periodic", "x", "y") |
196 | 196 | popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait() |
197 | 197 |
|
198 | 198 | elif ("euler2dKelvinHelmholtz" in pName): |
|
202 | 202 | "--outDir", args.outDir, |
203 | 203 | "--stencilSize", str(s), |
204 | 204 | "--bounds", str(-5.0), str(5.0), str(-5.0), str(5.0), |
205 | | - "--periodic", "x y") |
| 205 | + "--periodic", "x", "y") |
206 | 206 | popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait() |
207 | 207 |
|
208 | 208 | elif ("normalshock2d" in pName): |
|
269 | 269 | "--outDir", args.outDir, |
270 | 270 | "--stencilSize", str(s), |
271 | 271 | "--bounds", str(-1.0), str(1.0), str(-1.0), str(1.0), str(-1.0), str(1.0), |
272 | | - "--periodic", "x y z") |
| 272 | + "--periodic", "x", "y", "z") |
273 | 273 | popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait() |
274 | 274 |
|
275 | 275 | elif ("sedov3dsym" in pName): |
|
291 | 291 | "--outDir", args.outDir, |
292 | 292 | "--stencilSize", str(s), |
293 | 293 | "--bounds", str(-1.0), str(1.0), str(-1.0), str(1.0), |
294 | | - "--periodic", "x y") |
| 294 | + "--periodic", "x", "y") |
295 | 295 | popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait() |
296 | 296 |
|
297 | 297 | else: |
|
0 commit comments