Skip to content

Commit 56f971d

Browse files
committed
requested changes
1 parent 63e005e commit 56f971d

File tree

21 files changed

+1388
-1372
lines changed

21 files changed

+1388
-1372
lines changed

examples/2D_TaylorGreenVortex/case.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
'bc_x%end' : -1,
5454
'bc_y%beg' : -1,
5555
'bc_y%end' : -1,
56+
'viscous' : 'T',
5657
# ==========================================================
5758

5859
# Formatted Database Files Structure Parameters ============
@@ -85,4 +86,4 @@
8586
'fluid_pp(1)%Re(1)' : 1/Mu,
8687
# ==========================================================
8788
}))
88-
# ==============================================================================
89+
# ==============================================================================

examples/2D_bubbly_steady_shock/case.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@
192192
'fluid_pp(1)%M_v' : M_v,
193193
'fluid_pp(1)%mu_v' : mu_v,
194194
'fluid_pp(1)%k_v' : k_v,
195-
#'fluid_pp(1)%Re(1)' : 80000,
196195

197196
# Last fluid_pp is always reserved for bubble gas state ===
198197
# if applicable ==========================================

examples/2D_ibm/case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
# Set IB to True and add 1 patch
6363
'ib' : 'T',
6464
'num_ibs' : 1,
65+
'viscous' : 'T',
6566
# ==========================================================================
6667

6768
# Formatted Database Files Structure Parameters ============================

examples/2D_ibm_cfl_dt/case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
# Set IB to True and add 1 patch
6565
'ib' : 'T',
6666
'num_ibs' : 1,
67+
'viscous' : 'T',
6768
# ==========================================================================
6869

6970
# Formatted Database Files Structure Parameters ============================

examples/2D_ibm_multiphase/case.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,7 @@
100100
# Specify 2 fluids
101101
'fluid_pp(1)%gamma' : 1.E+00/(gam_a-1.E+00), # 2.50(Not 1.40)
102102
'fluid_pp(1)%pi_inf' : 0,
103-
# 'fluid_pp(1)%Re(1)' : 2500000,
104-
# 'fluid_pp(1)%Re(2)' : 1.0e+6,
105103
'fluid_pp(2)%gamma' : 1.E+00/(gam_b-1.E+00), # 2.50(Not 1.40)
106104
'fluid_pp(2)%pi_inf' : 0,
107-
# 'fluid_pp(2)%Re(1)' : 2500000,
108105
# ==========================================================================
109106
}))

examples/2D_laplace_pressure_jump/case.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
't_step_start' : 0,
4444
't_step_stop' : 100000,
4545
't_step_save' : 1000,
46-
#'t_step_stop' : 100,
47-
#'t_step_save' : 100,
4846
# =======================================
4947

5048
# Simulation Algorithm ==================
@@ -53,9 +51,6 @@
5351
'mixture_err' : 'T',
5452
'mpp_lim' : 'F',
5553
'time_stepper' : 3,
56-
#'recon_type' : 1,
57-
#'muscl_order' : 2,
58-
#'muscl_lim' : 2,
5954
'weno_order' : 5,
6055
'avg_state' : 2,
6156
'weno_eps' : 1e-16,
@@ -72,6 +67,7 @@
7267
'num_patches' : 2,
7368
'num_fluids' : 2,
7469
'weno_avg' : 'T',
70+
'surface_tension' : 'T',
7571
# =======================================
7672

7773
# Database Structure Parameters =========
@@ -84,21 +80,15 @@
8480
# =======================================
8581

8682
'sigma' : 8,
87-
#'flux_lim' : 2,
88-
#'flux_wrt(1)' : 'T',
89-
#'flux_wrt(2)' : 'T',
90-
#'cf_grad_wrt' : 'T',
9183

9284
# Fluid Parameters (Water) ==============
9385
'fluid_pp(1)%gamma' : 1.E+00/(2.1E+00-1.E+00),
9486
'fluid_pp(1)%pi_inf' : 2.1E+00*1.E+06/(2.1E+00-1.E+00),
95-
#'fluid_pp(1)%Re(1)' : 1.e3,
9687
# =======================================
9788

9889
# Fluid Parameters (Gas) ================
9990
'fluid_pp(2)%gamma' : 1.E+00/(1.4E+00-1.E+00),
10091
'fluid_pp(2)%pi_inf' : 0.E+00,
101-
#'fluid_pp(2)%Re(1)' : 1.81e5,
10292
# =======================================
10393

10494
# Air Patch ==========================

examples/2D_lid_driven_cavity/case.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
'bc_y%beg' : -16,
4545
'bc_y%end' : -16,
4646
'bc_y%ve1' : 0.5,
47+
'viscous' : 'T',
4748
# ==========================================================
4849

4950
# Formatted Database Files Structure Parameters ============
@@ -79,4 +80,4 @@
7980
'fluid_pp(2)%Re(1)' : 1e4,
8081
# ==========================================================
8182
}))
82-
# ==============================================================================
83+
# ==============================================================================

examples/2D_mixing_artificial_Ma/case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
'bc_x%end' : -1,
9797
'bc_y%beg' : -6,
9898
'bc_y%end' : -6,
99+
'viscous' : 'T',
99100
# ==========================================================================
100101

101102
# Formatted Database Files Structure Parameters ============================

examples/2D_rayleigh_taylor/case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
'bc_y%end' : -16,
7070
'num_patches' : 1,
7171
'num_fluids' : 2,
72+
'viscous' : 'T',
7273
# =======================================
7374

7475
# Database Structure Parameters =========

examples/2D_shearlayer/case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
'bc_x%end' :-1,
4646
'bc_y%beg' :-5,
4747
'bc_y%end' :-5,
48+
'viscous' : 'T',
4849
# ==========================================================================
4950

5051
# Formatted Database Files Structure Parameters ============================

0 commit comments

Comments
 (0)