Skip to content

Commit 53ed33e

Browse files
committed
format
1 parent fdc378f commit 53ed33e

File tree

8 files changed

+1381
-6
lines changed

8 files changed

+1381
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Backward Facing Step (2D)
22

33
## Final Condition (Density)
4-
<img src="final.png" height="MAX_HEIGHT"/>
4+
<img src="final.png"/>

examples/2D_backward_facing_step/case.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
p0 = 101325
99
rho0 = 1
1010
c0 = math.sqrt(gam_a * p0 / rho0)
11-
v0 = 3*c0
11+
v0 = 3 * c0
1212
mu = v0 * h / Re
1313

1414
# Configuring case dictionary
@@ -82,6 +82,7 @@
8282
"fluid_pp(1)%gamma": 1.0 / (gam_a - 1.0),
8383
"fluid_pp(1)%pi_inf": 0.0,
8484
"fluid_pp(1)%Re(1)": 1 / mu,
85-
}, indent=4
85+
},
86+
indent=4,
8687
)
8788
)

examples/2D_forward_facing_step/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Reference:
44
> Woodward, P. *(1984). The numerical simulation of two-dimensional fluid flow with strong shocks. Journal of Computational Physics, 54(1), 115–173. https://doi.org/10.1016/0021-9991(84)90140-2*
55
66
## Final Condition (Density)
7-
<img src="final.png" height="MAX_HEIGHT"/>
7+
<img src="final.png"/>

examples/2D_forward_facing_step/case.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
p0 = 1
88
rho0 = 1.4
99
c0 = math.sqrt(gam_a * p0 / rho0)
10-
v0 = 3*c0
10+
v0 = 3 * c0
1111
mu = rho0 * v0 * h / 2e5
1212

1313
# Configuring case dictionary
@@ -80,6 +80,7 @@
8080
"fluid_pp(1)%pi_inf": 0.0,
8181
"viscous": "T",
8282
"fluid_pp(1)%Re(1)": 1 / mu,
83-
}, indent=4
83+
},
84+
indent=4,
8485
)
8586
)

tests/665682FA/golden-metadata.txt

Lines changed: 183 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)