Commit 9944ae2 1 parent 13cb490 commit 9944ae2 Copy full SHA for 9944ae2
File tree 1 file changed +16
-1
lines changed
chile_optimization_sims/phase1/sims
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 13
13
14
14
f_total = {}
15
15
16
+ # fsky for measurement requirement
17
+
18
+ fskies = {}
19
+
16
20
# Factors not included in f_total
17
21
18
22
yield_ = 0.8
43
47
"f280" : 0.18 ,
44
48
}
45
49
f_field ["lat_wide" ] = 0.908
50
+ fskies ["lat_wide" ] = 0.6
46
51
47
52
# LAT delensing f_total from
48
53
# https://docs.google.com/spreadsheets/d/116Xa1vHrIwO6xTLsZalXo-QK7aKRQJnTE5LhkSl9eig/edit?gid=226211982#gid=226211982
58
63
"f280" : 0.18 ,
59
64
}
60
65
f_field ["lat_delensing" ] = 0.972
66
+ fskies ["lat_delensing" ] = 0.03
61
67
62
68
# LAT delensing_core is a variant of LAT delensing
63
69
71
77
"f280" : 0.18 ,
72
78
}
73
79
f_field ["lat_delensing_core" ] = 0.971
80
+ fskies ["lat_delensing_core" ] = 0.03
74
81
75
82
# f_weather from the simulation logs on 09/27/2024
76
83
192
199
depth = depth_I
193
200
vmin = np .amin (depth [depth != 0 ])
194
201
vmax = 2 * vmin
202
+ #
203
+ sorted_depth = depth .copy ()
204
+ sorted_depth [sorted_depth == 0 ] = 1e10
205
+ sorted_depth = np .sort (sorted_depth )
206
+ fsky = fskies [flavor ]
207
+ lim = int (depth .size * fsky )
208
+ mean_depth = np .mean (sorted_depth [:lim ])
209
+ #
195
210
depth [depth == 0 ] = hp .UNSEEN
196
211
hp .mollview (
197
212
depth ,
198
213
min = vmin ,
199
214
max = vmax ,
200
- title = band ,
215
+ title = f" { band } , mean = { mean_depth :.2f } (fsky= { fsky } )" ,
201
216
sub = [nrow , ncol , iplot ],
202
217
cmap = "inferno" ,
203
218
unit = "$\mu$K.arcmin" ,
You can’t perform that action at this time.
0 commit comments