Skip to content

Commit f1526f8

Browse files
Fixed one test case that was uninitialized
1 parent 44a4ee7 commit f1526f8

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

examples/2D_GreshoVortex/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"fd_order": 1,
6868
"omega_wrt(3)": "T",
6969
# Patch 1
70-
"patch_icpp(1)%geometry": 7,
70+
"patch_icpp(1)%geometry": 3,
7171
"patch_icpp(1)%hcid": 203,
7272
"patch_icpp(1)%x_centroid": 0.5,
7373
"patch_icpp(1)%y_centroid": 0.5,

examples/2D_hardcodied_ic/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"prim_vars_wrt": "T",
5656
"parallel_io": "T",
5757
# Patch 1: Base
58-
"patch_icpp(1)%geometry": 7,
58+
"patch_icpp(1)%geometry": 3,
5959
"patch_icpp(1)%hcid": 200,
6060
"patch_icpp(1)%x_centroid": 4.0,
6161
"patch_icpp(1)%y_centroid": 4.0,

examples/2D_lungwave/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
"patch_icpp(1)%alpha(1)": alphal_back,
154154
"patch_icpp(1)%alpha(2)": alphag_back,
155155
# Patch 2: Lung
156-
"patch_icpp(2)%geometry": 7,
156+
"patch_icpp(2)%geometry": 3,
157157
"patch_icpp(2)%hcid": 205,
158158
"patch_icpp(2)%alter_patch(1)": "T",
159159
"patch_icpp(2)%x_centroid": dlengx / 2.0,

examples/2D_lungwave_horizontal/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
"patch_icpp(1)%alpha(1)": alphal_back,
150150
"patch_icpp(1)%alpha(2)": alphag_back,
151151
# Patch 2: Lung
152-
"patch_icpp(2)%geometry": 7,
152+
"patch_icpp(2)%geometry": 3,
153153
"patch_icpp(2)%hcid": 206,
154154
"patch_icpp(2)%alter_patch(1)": "T",
155155
"patch_icpp(2)%x_centroid": -dlengx / 4.0,

examples/2D_orszag_tang/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# v = (-sin(2*pi*y), sin(2*pi*x), 0)
5555
# B = (-sin(2*pi*y)/sqrt(4*pi), sin(4*pi*x)/sqrt(4*pi), 0)
5656
"patch_icpp(1)%hcid": 250,
57-
"patch_icpp(1)%geometry": 7,
57+
"patch_icpp(1)%geometry": 3,
5858
"patch_icpp(1)%x_centroid": 0.5,
5959
"patch_icpp(1)%y_centroid": 0.5,
6060
"patch_icpp(1)%length_x": 1.0,

examples/2D_orszag_tang_powell/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# v = (-sin(2*pi*y), sin(2*pi*x), 0)
5757
# B = (-sin(2*pi*y)/sqrt(4*pi), sin(4*pi*x)/sqrt(4*pi), 0)
5858
"patch_icpp(1)%hcid": 250,
59-
"patch_icpp(1)%geometry": 7,
59+
"patch_icpp(1)%geometry": 3,
6060
"patch_icpp(1)%x_centroid": 0.5,
6161
"patch_icpp(1)%y_centroid": 0.5,
6262
"patch_icpp(1)%length_x": 1.0,

examples/2D_rayleigh_taylor/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"p_y": 0.0,
8686
"g_y": -9.81,
8787
# Water Patch
88-
"patch_icpp(1)%geometry": 7,
88+
"patch_icpp(1)%geometry": 3,
8989
"patch_icpp(1)%hcid": 204,
9090
"patch_icpp(1)%x_centroid": 0,
9191
"patch_icpp(1)%y_centroid": h / 2,

examples/2D_zero_circ_vortex/case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
"patch_icpp(2)%x_centroid": 0,
8282
"patch_icpp(2)%y_centroid": 0,
8383
"patch_icpp(2)%radius": 1.0,
84+
"patch_icpp(2)%vel(1)": 0.0,
8485
"patch_icpp(2)%vel(2)": 0.0,
8586
"patch_icpp(2)%hcid": 282,
8687
"patch_icpp(2)%alpha(1)": 1.0,

examples/3D_rayleigh_taylor/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"p_y": 0.0,
9393
"g_y": -98.1,
9494
# Water Patch
95-
"patch_icpp(1)%geometry": 13,
95+
"patch_icpp(1)%geometry": 9,
9696
"patch_icpp(1)%hcid": 300,
9797
"patch_icpp(1)%x_centroid": 0,
9898
"patch_icpp(1)%y_centroid": h / 2,

0 commit comments

Comments
 (0)