Skip to content

Commit a0c1542

Browse files
committed
Bug Fixes, Formatting, etc
1 parent 81c5d13 commit a0c1542

File tree

21 files changed

+305
-28923
lines changed

21 files changed

+305
-28923
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
cmake_minimum_required(VERSION 3.20)
1010

11+
1112
# We include C as a language because - for some reason -
1213
# FIND_LIBRARY_USE_LIB64_PATHS is otherwise ignored.
1314

cpu.txt

Lines changed: 0 additions & 14093 deletions
This file was deleted.

examples/1D_bubblescreen/case.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@
9393
"mpp_lim": "F",
9494
"mixture_err": "F",
9595
"time_stepper": 3,
96-
"recon_type": 1,
9796
"weno_order": 5,
9897
"weno_eps": 1.0e-16,
9998
"weno_Re_flux": "F",

examples/1D_sodshocktube_muscl/case.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,7 @@
3636
"recon_type": 2,
3737
"muscl_order": 2,
3838
"muscl_lim": 2,
39-
# "weno_order": 5,
40-
# "weno_eps": 1.0e-16,
41-
# "weno_Re_flux": "F",
42-
# "weno_avg": "F",
43-
# "mapped_weno": "T",
44-
"null_weights": "F",
45-
# "mp_weno": "F",
39+
"int_comp": "T",
4640
"riemann_solver": 2,
4741
"wave_speeds": 1,
4842
"avg_state": 2,

examples/2D_riemann_test_muscl/case.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@
2828
"mpp_lim": "F",
2929
"mixture_err": "T",
3030
"time_stepper": 3,
31-
#"mp_weno": "F",
32-
'recon_type': 2,
33-
#"weno_order": 5,
34-
#"weno_eps": 1e-16,
35-
'muscl_order' : 2,
36-
'muscl_lim' : 1,
31+
# "mp_weno": "F",
32+
"recon_type": 2,
33+
# "weno_order": 5,
34+
# "weno_eps": 1e-16,
35+
"muscl_order": 2,
36+
"muscl_lim": 1,
37+
"int_comp": "T",
3738
"riemann_solver": 2,
3839
"wave_speeds": 1,
3940
"avg_state": 2,

examples/2D_shockdroplet/case.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
eps = 1e-9
1717

1818
D = 0.048
19-
Ny = 99.0
20-
Nx = 399.0
19+
Ny = 299.0
20+
Nx = 1199.0
2121
dx = 0.25 / Nx # 8.3e-6
2222

2323
time_end = 0.005 # 50us
@@ -47,7 +47,7 @@
4747
"dt": dt,
4848
"t_step_start": 0,
4949
"t_step_stop": Nt,
50-
"t_step_save": math.ceil(Nt/100),
50+
"t_step_save": Nt, # math.ceil(Nt/100),
5151
# Simulation Algorithm Parameters
5252
"num_patches": 3,
5353
"model_eqns": 2,
@@ -56,7 +56,7 @@
5656
"mpp_lim": "T",
5757
"mixture_err": "T",
5858
"time_stepper": 3,
59-
"weno_order": 3,
59+
"weno_order": 5,
6060
"weno_eps": 1.0e-16,
6161
"weno_Re_flux": "F",
6262
"weno_avg": "F",

examples/2D_shockdroplet_muscl/case.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
eps = 1e-9
1717

1818
D = 0.048
19-
Ny = 99.0
20-
Nx = 399.0
19+
Ny = 299.0
20+
Nx = 1199.0
2121
dx = 0.25 / Nx # 8.3e-6
2222

2323
time_end = 0.005 # 50us
@@ -47,7 +47,7 @@
4747
"dt": dt,
4848
"t_step_start": 0,
4949
"t_step_stop": Nt,
50-
"t_step_save": math.ceil(Nt/100),
50+
"t_step_save": math.ceil(Nt / 100),
5151
# Simulation Algorithm Parameters
5252
"num_patches": 3,
5353
"model_eqns": 2,
@@ -59,7 +59,7 @@
5959
"recon_type": 2,
6060
"muscl_order": 2,
6161
"muscl_lim": 4,
62-
"int_comp": "F",
62+
"int_comp": "T",
6363
"null_weights": "F",
6464
"riemann_solver": 2,
6565
"wave_speeds": 1,

examples/2D_shockdroplet_muscl_cpu/case.py

Lines changed: 0 additions & 122 deletions
This file was deleted.

examples/2D_shockdroplet_muscl_gpu/case.py

Lines changed: 0 additions & 122 deletions
This file was deleted.

0 commit comments

Comments
 (0)