Skip to content

Commit 6f6e3d3

Browse files
author
Mark Zhang
committed
Fix formatting issues.
1 parent 22e3756 commit 6f6e3d3

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

examples/2D_kelvin_helmholtz/case.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,3 @@
8787
}
8888
)
8989
)
90-

examples/2D_richtmyer_meshkov/case.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@
9696
}
9797
)
9898
)
99-

examples/2D_viscous_shock_tube/case.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,3 @@
8989
}
9090
)
9191
)
92-

src/common/include/2dHardcodedIC.fpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,16 +134,13 @@
134134
end if
135135

136136
case (207) ! Kelvin Helmholtz Instability
137-
138137
sigma = 0.05_wp / sqrt(2.0_wp)
139138
gauss1 = exp(- (y_cc(j) - 0.75_wp) ** 2 / (2 * sigma ** 2))
140139
gauss2 = exp(- (y_cc(j) - 0.25_wp) ** 2 / (2 * sigma ** 2))
141-
142140
q_prim_vf(momxb + 1)%sf(i, j, 0) = &
143141
0.1_wp * sin(4.0_wp * pi * x_cc(i)) * (gauss1 + gauss2)
144142

145143
case (208) ! Richtmeyer Meshkov Instability
146-
147144
lam = 1.0_wp
148145
eps = 1.0e-6_wp
149146
ei = 5.0_wp
@@ -153,7 +150,6 @@
153150
fsm = 0.5_wp * (1.0_wp + erf(d / (ei * sqrt(dx * dy))))
154151
alpha_air = eps + (1.0_wp - 2.0_wp * eps) * fsm
155152
alpha_sf6 = 1.0 - alpha_air
156-
157153
q_prim_vf(contxb)%sf(i, j, 0) = alpha_sf6 * 5.04
158154
q_prim_vf(contxe)%sf(i, j, 0) = alpha_air * 1.0
159155
q_prim_vf(advxb)%sf(i, j, 0) = alpha_sf6

0 commit comments

Comments
 (0)