-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle_initialization.py
More file actions
63 lines (54 loc) · 1.31 KB
/
single_initialization.py
File metadata and controls
63 lines (54 loc) · 1.31 KB
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
# INITIALIZATION
global R12_coldgas_all,delta_all,delta_i_all,Dsnapshot_all,fmean_all,fstd_all,fmerger_all
delta_all=[]
delta_i_all=[]
Dsnapshot_all=[]
fmean_all=[]
fstd_all=[]
fmerger_all=[]
global f_tot,delta_if_all,delta_tot,nsuccess_all,nrelevent_all,nmergers_all,nochange_all,nsample_all,nearly_all,fprofile_max
f_tot=[]
delta_if_all=[]
delta_tot=[]
nsuccess_all=[]
nrelevent_all=[]
nmergers_all=[]
nochange_all=[]
nsample_all=[]
nearly_all=[]
fprofile_max=[]
global relevent_fangzhou_all,relevent_all,t1_array_all,t2_array_all
relevent_fangzhou_all=[]
relevent_all=[]
t1_array_all=[]
t2_array_all=[]
global fbest_all,Rbest_all,xbest_all,rprofile_all,xprofile_all,fprofile_all,fprofile_simname,mprofile_all
fbest_all=[]
Rbest_all=[]
xbest_all=[]
rprofile_all=[]
xprofile_all=[]
fprofile_all=[]
fprofile_simname=[]
mprofile_all=[]
global R12_all,Rvir_all,Mvir_all,xi_all,ok_fangzhou_all,Rvir_halo_all,Mvir_halo_all
R12_all=[]
Rvir_all=[]
Mvir_all=[]
xi_all=[]
ok_fangzhou_all=[]
Rvir_halo_all=[]
Mvir_halo_all=[]
global R12_coldgas_all,R12_coldbar_all,R12_SFR_all,Rs_NFW_all,R2_Einasto_all,Rc_Dekel_all,Re_Sersic_star_all
R12_coldgas_all=[]
R12_coldbar_all=[]
R12_SFR_all=[]
Rs_NFW_all=[]
R2_Einasto_all=[]
Rc_Dekel_all=[]
Re_Sersic_star_all=[]
global nsuccess,nmergers,nochange,nearly
nsuccess=0
nmergers=0
nochange=0
nearly=0