-
Notifications
You must be signed in to change notification settings - Fork 2
/
figure_8_ec_disk_validation.py
239 lines (208 loc) · 7.29 KB
/
figure_8_ec_disk_validation.py
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# script to compare the EC on Disk against Finke 2016 and jetset
import numpy as np
import astropy.units as u
import astropy.constants as const
import copy
import pkg_resources
import matplotlib.gridspec as gridspec
import matplotlib.pyplot as plt
from agnpy.emission_regions import Blob
from agnpy.targets import PointSourceBehindJet, SSDisk
from agnpy.compton import ExternalCompton
from agnpy.utils.plot import sed_x_label, sed_y_label
from pathlib import Path
from utils import reproduce_sed, time_sed_flux
# agnpy
spectrum_norm = 6e42 * u.erg
parameters = {
"p1": 2.0,
"p2": 3.5,
"gamma_b": 1e4,
"gamma_min": 20,
"gamma_max": 5e7,
}
spectrum_dict = {"type": "BrokenPowerLaw", "parameters": parameters}
R_b = 1e16 * u.cm
B = 0.56 * u.G
z = 1
delta_D = 40
Gamma = 40
blob = Blob(R_b, z, delta_D, Gamma, B, spectrum_norm, spectrum_dict)
blob.set_gamma_size(400)
# for the scattering on point source we will need a blob with a denser grid in
# Lorentz factor, let us create a copy and increase the size of the gamma grid
blob_ps = copy.copy(blob)
blob_ps.set_gamma_size(900)
# disk parameters of Finke 2016
M_sun = const.M_sun.cgs
M_BH = 1.2 * 1e9 * M_sun
L_disk = 2 * 1e46 * u.Unit("erg s-1")
eta = 1 / 12
R_in = 6
R_out = 200
disk = SSDisk(M_BH, L_disk, eta, R_in, R_out, R_g_units=True)
# point sources approximating the Disk at very large distances
ps_in = PointSourceBehindJet(L_disk, disk.epsilon(R_in))
ps_out = PointSourceBehindJet(L_disk, disk.epsilon(R_out))
# EC definition
# - near the disk, to be compared with the references
r_near = 1e17 * u.cm
ec_near = ExternalCompton(blob, disk, r=r_near)
# - far from the disk, to be compared with the point-source approximation
r_far = 1e21 * u.cm
ec_far = ExternalCompton(blob, disk, r=r_far)
ec_ps_in = ExternalCompton(blob_ps, ps_in, r=r_far)
ec_ps_out = ExternalCompton(blob_ps, ps_out, r=r_far)
nu_ec = np.logspace(16, 29, 40) * u.Hz
sed_ec_near = time_sed_flux(ec_near, nu_ec)
sed_ec_far = time_sed_flux(ec_far, nu_ec)
sed_ec_ps_in = time_sed_flux(ec_ps_in, nu_ec)
sed_ec_ps_out = time_sed_flux(ec_ps_out, nu_ec)
# reproduce Figure 8 of Finke 2016 with agnpy
data_ec_disk_finke = pkg_resources.resource_filename(
"agnpy", "data/reference_seds/finke_2016/figure_8/ec_disk_r_1e17.txt"
)
ec_nu_range = [nu_ec[0], nu_ec[-1]]
nu_ref, sed_ref, sed_ec_near_finke = reproduce_sed(
data_ec_disk_finke, ec_near, ec_nu_range
)
# jetset
from jetset.jet_model import Jet
jet = Jet(
name="ec_disk",
electron_distribution="bkn",
electron_distribution_log_values=False,
beaming_expr="bulk_theta",
)
jet.add_EC_component(["EC_Disk"], disk_type="MultiBB")
# - blob
jet.set_par("N", val=blob.n_e_tot.value)
jet.set_par("p", val=blob.n_e.p1)
jet.set_par("p_1", val=blob.n_e.p2)
jet.set_par("gamma_break", val=blob.n_e.gamma_b)
jet.set_par("gmin", val=blob.n_e.gamma_min)
jet.set_par("gmax", val=blob.n_e.gamma_max)
jet.set_par("R", val=blob.R_b.value)
jet.set_par("B", val=blob.B.value)
jet.set_par("BulkFactor", val=blob.Gamma)
jet.set_par("theta", val=blob.theta_s.value)
jet.set_par("z_cosm", val=blob.z)
# - disk
jet.set_par("L_Disk", val=L_disk.value)
jet.set_par("R_inner_Sw", val=disk.R_in_tilde / 2)
jet.set_par("R_ext_Sw", val=disk.R_out_tilde / 2)
jet.set_par("accr_eff", val=disk.eta)
jet.set_par("M_BH", val=(disk.M_BH / M_sun).to_value(""))
# - integration setup
jet.electron_distribution.update()
jet.set_gamma_grid_size(10000)
jet._blob.IC_adaptive_e_binning = True
jet._blob.theta_n_int = 500
jet.set_nu_grid(nu_ec[0].value, nu_ec[-1].value, len(nu_ec))
# - SED near the disk
jet.set_par("R_H", val=r_near.to_value("cm"))
jet.set_external_field_transf("disk")
jet.eval()
sed_ec_near_jetset = jet.spectral_components.EC_Disk.SED.nuFnu
# - SED far from the disk
jet.set_par("R_H", val=r_far.to_value("cm"))
jet.set_external_field_transf("disk")
jet.eval()
sed_ec_far_jetset = jet.spectral_components.EC_Disk.SED.nuFnu
# make figure 8
# gridspec plot setting
fig = plt.figure(figsize=(12, 6), tight_layout=True)
spec = gridspec.GridSpec(ncols=2, nrows=2, height_ratios=[2, 1], figure=fig)
ax1 = fig.add_subplot(spec[0, 0])
ax2 = fig.add_subplot(spec[0, 1])
ax3 = fig.add_subplot(spec[1, 0], sharex=ax1)
ax4 = fig.add_subplot(spec[1, 1], sharex=ax2, sharey=ax3)
# SED near the disk
ax1.loglog(nu_ref, sed_ec_near_finke, ls="-", lw=2.1, color="crimson", label="agnpy")
ax1.loglog(
nu_ref, sed_ref, ls="--", color="k", label="Fig. 8, Finke (2016)",
)
ax1.loglog(nu_ec, sed_ec_near_jetset, ls="--", color="dodgerblue", label="jetset")
ax1.set_ylabel(sed_y_label)
ax1.legend(loc="best", fontsize=12)
ax1.set_title(
"EC on Shakura Sunyaev disc, " + r"$r=10^{17}\,{\rm cm} < R_{\rm out}$", fontsize=15
)
# SED far from the disk
ax2.loglog(
nu_ec, sed_ec_far, ls="-", lw=2.1, color="crimson", label="agnpy, full calculation",
)
ax2.loglog(
nu_ec,
sed_ec_ps_in,
ls="-.",
color="k",
label="agnpy, point-source approx., " + r"$\epsilon_0 = \epsilon_0(R_{\rm in})$",
)
ax2.loglog(
nu_ec,
sed_ec_ps_out,
ls=":",
color="k",
label="agnpy, point-source approx., " + r"$\epsilon_0 = \epsilon_0(R_{\rm out})$",
)
ax2.loglog(nu_ec, sed_ec_far_jetset, ls="--", color="dodgerblue", label="jetset")
# shade the area between the two SED of the point source approximations
ax2.fill_between(nu_ec, sed_ec_ps_in, sed_ec_ps_out, color="silver")
ax2.legend(loc="best", fontsize=12)
ax2.set_title(
"EC on Shakura Sunyaev disc, " + r"$r=10^{21}\,{\rm cm} \gg R_{\rm out}$",
fontsize=15,
)
# plot the deviation from the references in the bottom panel
deviation_ref = sed_ec_near_finke / sed_ref - 1
deviation_jetset_near = sed_ec_near / sed_ec_near_jetset - 1
ax3.grid(False)
ax3.axhline(0, ls="-", color="darkgray")
ax3.axhline(0.2, ls="--", color="darkgray")
ax3.axhline(-0.2, ls="--", color="darkgray")
ax3.axhline(0.5, ls=":", color="darkgray")
ax3.axhline(-0.5, ls=":", color="darkgray")
ax3.set_ylim([-1.1, 1.1])
ax3.set_yticks([-1, -0.5, 0.0, 0.5, 1.0])
ax3.semilogx(
nu_ref, deviation_ref, ls="--", color="k", label="Fig. 8, Finke (2016)",
)
ax3.semilogx(
nu_ec, deviation_jetset_near, ls="--", color="dodgerblue", label="jetset",
)
ax3.legend(loc="best", fontsize=11)
ax3.set_xlabel(sed_x_label)
ax3.set_ylabel(r"$\frac{\nu F_{\nu, \rm agnpy}}{\nu F_{\nu, \rm ref}} - 1$")
# plot the deviation from the point like approximation and jetset in the bottom panel
deviation_ps_in = sed_ec_far / sed_ec_ps_in - 1
deviation_ps_out = sed_ec_far / sed_ec_ps_out - 1
deviation_jetset_far = sed_ec_far / sed_ec_far_jetset - 1
ax4.grid(False)
ax4.axhline(0, ls="-", color="darkgray")
ax4.axhline(0.2, ls="--", color="darkgray")
ax4.axhline(-0.2, ls="--", color="darkgray")
ax4.axhline(0.5, ls=":", color="darkgray")
ax4.axhline(-0.5, ls=":", color="darkgray")
ax4.set_ylim([-1.1, 1.1])
ax4.set_yticks([-1, -0.5, 0.0, 0.5, 1.0])
ax4.semilogx(
nu_ec,
deviation_ps_in,
ls="-.",
color="k",
label="point-source approx., " + r"$\epsilon_0 = \epsilon_0(R_{\rm in})$",
)
ax4.semilogx(
nu_ec,
deviation_ps_out,
ls=":",
color="k",
label="point-source approx., " + r"$\epsilon_0 = \epsilon_0(R_{\rm out})$",
)
ax4.semilogx(nu_ec, deviation_jetset_far, ls="--", color="dodgerblue", label="jetset")
ax4.legend(loc="best", fontsize=10)
ax4.set_xlabel(sed_x_label)
Path("figures").mkdir(exist_ok=True)
fig.savefig(f"figures/figure_8.png")
fig.savefig(f"figures/figure_8.pdf")