Skip to content

Commit 12db907

Browse files
committed
remove unicode
1 parent 765bdc6 commit 12db907

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

examples/2D_orszag_tang/case.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
"mhd": "T",
5050
# Patch 1 - Analytical for v and B
5151
# gamma = 5/3
52-
# rho = 25/(36π)
53-
# p = 5/(12π)
54-
# v = (-sin(y), sin(x), 0)
55-
# B = (-sin(y)/sqrt(), sin(x)/sqrt(), 0)
52+
# rho = 25/(36*pi)
53+
# p = 5/(12*pi)
54+
# v = (-sin(2*pi*y), sin(2*pi*x), 0)
55+
# B = (-sin(2*pi*y)/sqrt(4*pi), sin(4*pi*x)/sqrt(4*pi), 0)
5656
"patch_icpp(1)%hcid": 250,
5757
"patch_icpp(1)%geometry": 7,
5858
"patch_icpp(1)%x_centroid": 0.5,

examples/2D_orszag_tang_powell/case.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
"fd_order": 2,
5252
# Patch 1 - Analytical for v and B
5353
# gamma = 5/3
54-
# rho = 25/(36π)
55-
# p = 5/(12π)
56-
# v = (-sin(y), sin(x), 0)
57-
# B = (-sin(y)/sqrt(), sin(x)/sqrt(), 0)
54+
# rho = 25/(36*pi)
55+
# p = 5/(12*pi)
56+
# v = (-sin(2*pi*y), sin(2*pi*x), 0)
57+
# B = (-sin(2*pi*y)/sqrt(4*pi), sin(4*pi*x)/sqrt(4*pi), 0)
5858
"patch_icpp(1)%hcid": 250,
5959
"patch_icpp(1)%geometry": 7,
6060
"patch_icpp(1)%x_centroid": 0.5,

src/pre_process/include/2dHardcodedIC.fpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@
132132

133133
case (250) ! MHD Orszag-Tang vortex
134134
! gamma = 5/3
135-
! rho = 25/(36π)
136-
! p = 5/(12π)
137-
! v = (-sin(2π y), sin(2π x), 0)
138-
! B = (-sin(2π y)/sqrt(4π), sin(4π x)/sqrt(4π), 0)
135+
! rho = 25/(36*pi)
136+
! p = 5/(12*pi)
137+
! v = (-sin(2*pi*y), sin(2*pi*x), 0)
138+
! B = (-sin(2*pi*y)/sqrt(4*pi), sin(4*pi*x)/sqrt(4*pi), 0)
139139

140140
q_prim_vf(momxb)%sf(i, j, 0) = -sin(2._wp*pi*y_cc(j))
141141
q_prim_vf(momxb + 1)%sf(i, j, 0) = sin(2._wp*pi*x_cc(i))

src/simulation/m_mhd.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ contains
112112
! 2: vx -> - (divB) * Bx
113113
! 3: vy -> - (divB) * By
114114
! 4: vz -> - (divB) * Bz
115-
! 5: E -> - (divB) * (v·B)
115+
! 5: E -> - (divB) * (v dot B)
116116
! 6: Bx -> - (divB) * vx
117117
! 7: By -> - (divB) * vy
118118
! 8: Bz -> - (divB) * vz

0 commit comments

Comments
 (0)