Skip to content

Commit

Permalink
fix args to periodic in meshing script
Browse files Browse the repository at this point in the history
  • Loading branch information
fnrizzi committed Jul 15, 2022
1 parent 49c132d commit 69d9eb5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions meshing_scripts/create_full_mesh_for.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
"--outDir", args.outDir,
"--stencilSize", str(3),
"--bounds", str(-1.25), str(1.25), str(-1.25), str(1.25),
"--periodic", "x y")
"--periodic", "x", "y")
popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait()

elif ("euler2dsmooth" in pName):
Expand All @@ -192,7 +192,7 @@
"--outDir", args.outDir,
"--stencilSize", str(s),
"--bounds", str(-1.), str(1.0), str(-1.0), str(1.0),
"--periodic", "x y")
"--periodic", "x", "y")
popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait()

elif ("euler2dKelvinHelmholtz" in pName):
Expand All @@ -202,7 +202,7 @@
"--outDir", args.outDir,
"--stencilSize", str(s),
"--bounds", str(-5.0), str(5.0), str(-5.0), str(5.0),
"--periodic", "x y")
"--periodic", "x", "y")
popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait()

elif ("normalshock2d" in pName):
Expand Down Expand Up @@ -269,7 +269,7 @@
"--outDir", args.outDir,
"--stencilSize", str(s),
"--bounds", str(-1.0), str(1.0), str(-1.0), str(1.0), str(-1.0), str(1.0),
"--periodic", "x y z")
"--periodic", "x", "y", "z")
popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait()

elif ("sedov3dsym" in pName):
Expand All @@ -291,7 +291,7 @@
"--outDir", args.outDir,
"--stencilSize", str(s),
"--bounds", str(-1.0), str(1.0), str(-1.0), str(1.0),
"--periodic", "x y")
"--periodic", "x", "y")
popen = subprocess.Popen(args, stdout=subprocess.PIPE); popen.wait()

else:
Expand Down

0 comments on commit 69d9eb5

Please sign in to comment.