-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslug.init
75 lines (54 loc) · 1.28 KB
/
slug.init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
####### sim variables ########
sim_name 'gp1d_JSC'
##### numerics ######
sim_cfl 0.8
sim_order 9 # 9 for GP 5 for WENO5
sim_riemann 'hllc' # 'roe' 'hll' or 'hllc'
sim_charLimiting .true.
######GP specific parameters ##########
gr_radius 2 # gp stencil radius
### gp kernel hyperparameters
### one of these should be zero always
### this is same as \ell in paper
sim_sigma 0.0 # dimensionful length scale
sim_sigdel 6.0 # fix \ell to number of grid points
######## grid variables ########
gr_ngc 4
gr_nx 128
###### problem specific physical IC ##########
sim_icType 'shock'
sim_tmax .4
gr_xbeg -1.
gr_xend 1.5
sim_Bx 1.0
sim_shockLoc 0.0
#left and right states for "shock" sim icType
sim_densL 1.0
sim_velxL 0.0
sim_velyL 0.0
sim_velzL 0.0
sim_magyL 1.0
sim_magzL 0.0
sim_presL 1.0
sim_enerL 1.0
sim_densR 0.2
sim_velxR 0.0
sim_velyR 0.0
sim_velzR 0.0
sim_magyR -0.989992496600445
sim_magzR 0.141120008059867
sim_presR 0.2
sim_enerR 1.0
sim_gamma 1.66666666667
sim_smallPres 1.e-12
########3 BC type #######
sim_bcType 'outflow'
###### IO frequency #########
sim_ioTfreq 0.5 #real
sim_ioNfreq -1 #positive integer; zero or negative if not used
sim_fixDt .false.
sim_nstep 10000
sim_nlim .false.
sim_outputIntervalTime 0.01
sim_mval 1 #ROC power for betas'
sim_WENeps 1.e-36