Skip to content

Commit 6b7f319

Browse files
authored
Update case parameters
1 parent fd32588 commit 6b7f319

File tree

1 file changed

+6
-10
lines changed
  • examples/2D_TaylorGreenVortex

1 file changed

+6
-10
lines changed

examples/2D_TaylorGreenVortex/case.py

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
'm' : 199,
2626
'n' : 199,
2727
'p' : 0,
28-
'dt' : 5.0E-09,
28+
'dt' : 1.0E-08,
2929
't_step_start' : 0,
30-
't_step_stop' : 20000,
31-
't_step_save' : 200,
30+
't_step_stop' : 10000,
31+
't_step_save' : 100,
3232
# ==========================================================
3333

3434
# Simulation Algorithm Parameters ==========================
@@ -70,13 +70,9 @@
7070
'patch_icpp(1)%y_centroid' : 0.0,
7171
'patch_icpp(1)%length_x' : 2.0*L,
7272
'patch_icpp(1)%length_y' : 2.0*L,
73-
'patch_icpp(1)%vel(1)' : 0.E+00,
74-
'patch_icpp(1)%vel(2)' : 0.E+00,
73+
'patch_icpp(1)%vel(1)' : 1.E-01, # Define the characteristic velocity of the vortex
74+
'patch_icpp(1)%vel(2)' : 1.E+00, # Define the characteristic length of the vortex
7575
'patch_icpp(1)%pres' : 1.E+05,
76-
# Define the characteristic length of the vortex
77-
'patch_icpp(1)%vortex_l' : l,
78-
# Define the characteristic velocity of the vortex
79-
'patch_icpp(1)%vortex_vel' : 0.1,
8076
'patch_icpp(1)%alpha_rho(1)' : 1.22,
8177
'patch_icpp(1)%alpha(1)' : 1.,
8278
# ==========================================================
@@ -86,7 +82,7 @@
8682
'fluid_pp(1)%gamma' : 1.E+00/(gam_a-1.E+00),
8783
'fluid_pp(1)%pi_inf' : 0.0,
8884
# Shear viscosity of STD air
89-
'fluid_pp(1)%Re(1)' : 0.0000184,
85+
'fluid_pp(1)%Re(1)' : 0.0001,
9086
# ==========================================================
9187
}))
9288
# ==============================================================================

0 commit comments

Comments
 (0)