Time-energy fit

3ML allows the possibility to model a time-varying source by explicitly fitting the time-dependent part of the model. Let’s see this with an example.

First we import what we need:

[2]:
%%capture
import matplotlib.pyplot as plt

from threeML import *
from threeML.io.package_data import get_path_of_data_file

Generating the datasets

Then we generate a simulated dataset for a source with a cutoff powerlaw spectrum with a constant photon index and cutoff but with a normalization that changes with time following a powerlaw:

[4]:
def generate_one(K, ax):

    # Let's generate some data with y = Powerlaw(x)

    gen_function = Cutoff_powerlaw()
    gen_function.K = K

    # Generate a dataset using the power law, and a
    # constant 30% error

    x = np.logspace(0, 2, 50)

    xyl_generator = XYLike.from_function(
        "sim_data", function=gen_function, x=x, yerr=0.3 * gen_function(x)
    )

    y = xyl_generator.y
    y_err = xyl_generator.yerr

    ax.loglog(x, gen_function(x))

    ax.set_xlabel("Energy")
    ax.set_ylabel("Flux")

    return x, y, y_err

These are the times at which the simulated spectra have been observed

[5]:
time_tags = np.array([1.0, 2.0, 5.0, 10.0])

This describes the time-varying normalization. If everything works as it should, we should recover from the fit a normalization of 0.23 and a index of -1.2 for the time law.

[6]:
normalizations = 0.23 * time_tags ** (-3.5)

Now that we have a simple function to create the datasets, let’s build them.

[7]:
fig, ax = plt.subplots()

datasets = [generate_one(k, ax) for k in normalizations]
../_images/notebooks_Time-energy-fit_11_0.png

Setup the model

Now set up the fit and fit it. First we need to tell 3ML that we are going to fit using an independent variable (time in this case). We init it to 1.0 and set the unit to seconds.

[8]:
time = IndependentVariable("time", 1.0, u.s)

Then we load the data that we have generated, tagging them with their time of observation.

[9]:

plugins = []

for i, dataset in enumerate(datasets):

    x, y, y_err = dataset

    xyl = XYLike("data%i" % i, x, y, y_err)

    # This is the important part: we need to tag the instance of the
    # plugin so that 3ML will know that this instance corresponds to the
    # given tag (a time coordinate in this case). If instead of giving
    # one time coordinate we give two time coordinates, then 3ML will
    # take the average of the model between the two time coordinates
    # (computed as the integral of the model between t1 and t2 divided
    # by t2-t1)

    xyl.tag = (time, time_tags[i])

    # To access the tag we have just set we can use:

    independent_variable, start, end = xyl.tag

    # NOTE: xyl.tag will return 3 things: the independent variable, the start and the
    # end. If like in this case you do not specify an end when assigning the tag, end
    # will be None

    plugins.append(xyl)

Generate the datalist as usual

[10]:
data = DataList(*plugins)

Now let’s generate the spectral model, in this case a point source with a cutoff powerlaw spectrum.

[11]:
spectrum = Cutoff_powerlaw()

src = PointSource("test", ra=0.0, dec=0.0, spectral_shape=spectrum)

model = Model(src)

Now we need to tell 3ML that we are going to use the time coordinate to specify a time dependence for some of the parameters of the model.

[12]:
model.add_independent_variable(time)

Now let’s specify the time-dependence (a powerlaw) for the normalization of the powerlaw spectrum.

[13]:
time_po = Powerlaw()
time_po.K.bounds = (0.01, 1000)

Link the normalization of the cutoff powerlaw spectrum with time through the time law we have just generated.

[14]:
model.link(spectrum.K, time, time_po)
model
[14]:
Model summary:

N
Point sources 1
Extended sources 0
Particle sources 0


Free parameters (4):

value min_value max_value unit
test.spectrum.main.Cutoff_powerlaw.K.Powerlaw.K 1.0 0.01 1000.0 keV-1 s-1 cm-2
test.spectrum.main.Cutoff_powerlaw.K.Powerlaw.index -2.0 -10.0 10.0
test.spectrum.main.Cutoff_powerlaw.index -2.0 -10.0 10.0
test.spectrum.main.Cutoff_powerlaw.xc 10.0 1.0 None keV


Fixed parameters (4):
(abridged. Use complete=True to see all fixed parameters)


Linked parameters (1):

test.spectrum.main.Cutoff_powerlaw.K
current value 1.0
function Powerlaw
linked to time
unit 1 / (cm2 keV s)


Independent variables:

time
current value 1.0
unit s

Performing the fit

[15]:
jl = JointLikelihood(model, data)

best_fit_parameters, likelihood_values = jl.fit()
Best fit values:

result unit
parameter
test.spectrum.main.Cutoff_powerlaw.K.Powerlaw.K (2.30 +/- 0.13) x 10^-1 1 / (cm2 keV s)
test...index -3.491 +/- 0.024
test.spectrum.main.Cutoff_powerlaw.index -1.968 +/- 0.032
test.spectrum.main.Cutoff_powerlaw.xc 9.69 +/- 0.17 keV

Correlation matrix:

1.00-0.48-0.720.46
-0.481.00-0.030.03
-0.72-0.031.00-0.87
0.460.03-0.871.00

Values of -log(likelihood) at the minimum:

-log(likelihood)
data0 17.198493
data1 17.727920
data2 24.896302
data3 33.989761
total 93.812476

Values of statistical measures:

statistical measures
AIC 195.830079
BIC 208.818221
[16]:
for p in plugins:

    _ = p.plot(x_scale="log", y_scale="log")
../_images/notebooks_Time-energy-fit_28_0.png
../_images/notebooks_Time-energy-fit_28_1.png
../_images/notebooks_Time-energy-fit_28_2.png
../_images/notebooks_Time-energy-fit_28_3.png
[ ]: