You can interact with this notebook online: Launch notebook
How to Track the Properties of Real Packets¶
TARDIS has the functionality to track the properties of the RPackets that are generated when running the Simulation. The rpacket_tracker
can track all the interactions a packet undergoes & thus keeps a track of the various properties, a packet may have.Currently, the rpacket_tracker
tracks the properties of all the rpackets in the Last Iteration of the Simulation. It generates a List
that contains the individual instances of RPacketTracker
{Numba JITClass
}, for
storing all the interaction properties as listed below.
The properties that are tracked are as follows :
index - Index of the Packet
seed - Seed of the Packet
status - Current Status for the Packet Interaction
r - Radius of the Current Shell
nu - Packet’s Frequency
mu - Propagation Direction of the Packet (cosine of the angle the packet’s path makes with the radial direction)
energy - Energy of the Packet
shell_id - Current Shell Id where the Packet is present
interaction_type - Last Interaction type of the packet
boundary_interaction - Boundary interactions data in the format (event_id, current_shell_id, next_shell_id) of the packet
The data can be obtained in two ways i.e. rpacket_tracker
and rpacket_tracker_df
. The rpacket_tracker
stores all the data for the interaction of the packets in a list
, so it needs to accessed with a list index
for each property for a particular rpacket
. rpacket_tracker_df
stores the data in a dataframe. Examples for the same are shown as follows.
How to Setup the Tracking for the RPackets?¶
TARDIS’ rpacket_tracker
is configured via the YAML
file. This functionality of tracking the packets is turned off, by default. This is due to that fact that using this property, may slow down the execution time for the Simulation. An example configuration can be seen below for setting up the tracking:
...
montecarlo:
...
tracking:
track_rpacket: true
The montecarlo
section of the YAML file now has a tracking
sub section which holds the configuration properties for the track_rpacket
& the initial_array_length
(discussed later in the tutorial).
Let us see, the new rpacket_tracker
in action.
[1]:
from tardis.io.configuration.config_reader import Configuration
[2]:
# Reading the Configuration stored in `tardis_config_packet_tracking.yml` into config
config = Configuration.from_yaml("tardis_example.yml")
[3]:
# Checking the `tracking` section via the Schema
config["montecarlo"]["tracking"]
[3]:
{'track_rpacket': False, 'initial_array_length': 10}
[4]:
# Setting `r_packet_tracking` to True to turn on the Tracking
config["montecarlo"]["tracking"]["track_rpacket"] = True
[5]:
config["montecarlo"]["tracking"]
[5]:
{'track_rpacket': True, 'initial_array_length': 10}
[6]:
from tardis import run_tardis
from tardis.io.atom_data import download_atom_data
[7]:
download_atom_data('kurucz_cd23_chianti_H_He')
Configuration File /home/runner/.astropy/config/tardis_internal_config.yml does not exist - creating new one from default
CRITICAL:root:
********************************************************************************
TARDIS will download different kinds of data (e.g. atomic) to its data directory /home/runner/Downloads/tardis-data
TARDIS DATA DIRECTORY not specified in /home/runner/.astropy/config/tardis_internal_config.yml:
ASSUMING DEFAULT DATA DIRECTORY /home/runner/Downloads/tardis-data
YOU CAN CHANGE THIS AT ANY TIME IN /home/runner/.astropy/config/tardis_internal_config.yml
********************************************************************************
WARNING:tardis.io.atom_data.atom_web_download:Atomic Data kurucz_cd23_chianti_H_He already exists in /home/runner/Downloads/tardis-data/kurucz_cd23_chianti_H_He.h5. Will not download - override with force_download=True.
[8]:
# Running the simulation from the config
sim = run_tardis(config, show_convergence_plots=False, show_progress_bars=False)
[tardis.io.model.parse_atom_data][INFO ]
Reading Atomic Data from kurucz_cd23_chianti_H_He.h5 (parse_atom_data.py:40)
INFO:tardis.io.model.parse_atom_data:
Reading Atomic Data from kurucz_cd23_chianti_H_He.h5
[tardis.io.atom_data.util][INFO ]
Atom Data kurucz_cd23_chianti_H_He.h5 not found in local path.
Exists in TARDIS Data repo /home/runner/Downloads/tardis-data/kurucz_cd23_chianti_H_He.h5 (util.py:34)
INFO:tardis.io.atom_data.util:
Atom Data kurucz_cd23_chianti_H_He.h5 not found in local path.
Exists in TARDIS Data repo /home/runner/Downloads/tardis-data/kurucz_cd23_chianti_H_He.h5
[tardis.io.atom_data.base][INFO ]
Reading Atom Data with: UUID = 6f7b09e887a311e7a06b246e96350010 MD5 = 864f1753714343c41f99cb065710cace (base.py:262)
INFO:tardis.io.atom_data.base:Reading Atom Data with: UUID = 6f7b09e887a311e7a06b246e96350010 MD5 = 864f1753714343c41f99cb065710cace
[tardis.io.atom_data.base][INFO ]
Non provided Atomic Data: synpp_refs, photoionization_data, yg_data, two_photon_data, linelist_atoms, linelist_molecules (base.py:266)
INFO:tardis.io.atom_data.base:Non provided Atomic Data: synpp_refs, photoionization_data, yg_data, two_photon_data, linelist_atoms, linelist_molecules
[tardis.io.model.parse_density_configuration][WARNING]
Number of density points larger than number of shells. Assuming inner point irrelevant (parse_density_configuration.py:114)
WARNING:tardis.io.model.parse_density_configuration:Number of density points larger than number of shells. Assuming inner point irrelevant
[tardis.model.matter.decay][INFO ]
Decaying abundances for 1123200.0 seconds (decay.py:101)
INFO:tardis.model.matter.decay:Decaying abundances for 1123200.0 seconds
[tardis.simulation.base][INFO ]
Starting iteration 1 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 1 of 20
[py.warnings ][WARNING]
/home/runner/work/tardis/tardis/tardis/transport/montecarlo/montecarlo_main_loop.py:123: NumbaTypeSafetyWarning: unsafe cast from uint64 to int64. Precision may be lost.
vpacket_collection = vpacket_collections[i]
(warnings.py:112)
WARNING:py.warnings:/home/runner/work/tardis/tardis/tardis/transport/montecarlo/montecarlo_main_loop.py:123: NumbaTypeSafetyWarning: unsafe cast from uint64 to int64. Precision may be lost.
vpacket_collection = vpacket_collections[i]
[tardis.simulation.base][INFO ]
Luminosity emitted = 7.942e+42 erg / s
Luminosity absorbed = 2.659e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 7.942e+42 erg / s
Luminosity absorbed = 2.659e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 9.93e+03 K | 1.01e+04 K | 0.4 | 0.507 |
5 | 9.85e+03 K | 1.02e+04 K | 0.211 | 0.197 |
10 | 9.78e+03 K | 1.01e+04 K | 0.143 | 0.117 |
15 | 9.71e+03 K | 9.87e+03 K | 0.105 | 0.0869 |
[tardis.simulation.base][INFO ]
Current t_inner = 9933.952 K
Expected t_inner for next iteration = 10703.212 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 9933.952 K
Expected t_inner for next iteration = 10703.212 K
[tardis.simulation.base][INFO ]
Starting iteration 2 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 2 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.071e+43 erg / s
Luminosity absorbed = 3.576e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.071e+43 erg / s
Luminosity absorbed = 3.576e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.01e+04 K | 1.08e+04 K | 0.507 | 0.525 |
5 | 1.02e+04 K | 1.1e+04 K | 0.197 | 0.203 |
10 | 1.01e+04 K | 1.08e+04 K | 0.117 | 0.125 |
15 | 9.87e+03 K | 1.05e+04 K | 0.0869 | 0.0933 |
[tardis.simulation.base][INFO ]
Current t_inner = 10703.212 K
Expected t_inner for next iteration = 10673.712 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10703.212 K
Expected t_inner for next iteration = 10673.712 K
[tardis.simulation.base][INFO ]
Starting iteration 3 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 3 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.074e+43 erg / s
Luminosity absorbed = 3.391e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.074e+43 erg / s
Luminosity absorbed = 3.391e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 1/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 1/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.08e+04 K | 1.1e+04 K | 0.525 | 0.483 |
5 | 1.1e+04 K | 1.12e+04 K | 0.203 | 0.189 |
10 | 1.08e+04 K | 1.1e+04 K | 0.125 | 0.118 |
15 | 1.05e+04 K | 1.06e+04 K | 0.0933 | 0.0895 |
[tardis.simulation.base][INFO ]
Current t_inner = 10673.712 K
Expected t_inner for next iteration = 10635.953 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10673.712 K
Expected t_inner for next iteration = 10635.953 K
[tardis.simulation.base][INFO ]
Starting iteration 4 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 4 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.058e+43 erg / s
Luminosity absorbed = 3.352e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.058e+43 erg / s
Luminosity absorbed = 3.352e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 2/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 2/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.1e+04 K | 0.483 | 0.469 |
5 | 1.12e+04 K | 1.12e+04 K | 0.189 | 0.182 |
10 | 1.1e+04 K | 1.1e+04 K | 0.118 | 0.113 |
15 | 1.06e+04 K | 1.07e+04 K | 0.0895 | 0.0861 |
[tardis.simulation.base][INFO ]
Current t_inner = 10635.953 K
Expected t_inner for next iteration = 10638.407 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10635.953 K
Expected t_inner for next iteration = 10638.407 K
[tardis.simulation.base][INFO ]
Starting iteration 5 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 5 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.055e+43 erg / s
Luminosity absorbed = 3.399e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.055e+43 erg / s
Luminosity absorbed = 3.399e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 3/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 3/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.1e+04 K | 0.469 | 0.479 |
5 | 1.12e+04 K | 1.13e+04 K | 0.182 | 0.178 |
10 | 1.1e+04 K | 1.1e+04 K | 0.113 | 0.113 |
15 | 1.07e+04 K | 1.07e+04 K | 0.0861 | 0.0839 |
[tardis.simulation.base][INFO ]
Current t_inner = 10638.407 K
Expected t_inner for next iteration = 10650.202 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10638.407 K
Expected t_inner for next iteration = 10650.202 K
[tardis.simulation.base][INFO ]
Starting iteration 6 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 6 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.061e+43 erg / s
Luminosity absorbed = 3.398e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.061e+43 erg / s
Luminosity absorbed = 3.398e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 4/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 4/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.1e+04 K | 0.479 | 0.47 |
5 | 1.13e+04 K | 1.12e+04 K | 0.178 | 0.185 |
10 | 1.1e+04 K | 1.11e+04 K | 0.113 | 0.112 |
15 | 1.07e+04 K | 1.07e+04 K | 0.0839 | 0.0856 |
[tardis.simulation.base][INFO ]
Current t_inner = 10650.202 K
Expected t_inner for next iteration = 10645.955 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10650.202 K
Expected t_inner for next iteration = 10645.955 K
[tardis.simulation.base][INFO ]
Starting iteration 7 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 7 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.061e+43 erg / s
Luminosity absorbed = 3.382e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.061e+43 erg / s
Luminosity absorbed = 3.382e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 5/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 5/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.1e+04 K | 0.47 | 0.47 |
5 | 1.12e+04 K | 1.13e+04 K | 0.185 | 0.178 |
10 | 1.11e+04 K | 1.11e+04 K | 0.112 | 0.112 |
15 | 1.07e+04 K | 1.07e+04 K | 0.0856 | 0.086 |
[tardis.simulation.base][INFO ]
Current t_inner = 10645.955 K
Expected t_inner for next iteration = 10642.050 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10645.955 K
Expected t_inner for next iteration = 10642.050 K
[tardis.simulation.base][INFO ]
Starting iteration 8 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 8 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.062e+43 erg / s
Luminosity absorbed = 3.350e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.062e+43 erg / s
Luminosity absorbed = 3.350e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 6/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 6/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.11e+04 K | 0.47 | 0.472 |
5 | 1.13e+04 K | 1.14e+04 K | 0.178 | 0.175 |
10 | 1.11e+04 K | 1.11e+04 K | 0.112 | 0.111 |
15 | 1.07e+04 K | 1.07e+04 K | 0.086 | 0.084 |
[tardis.simulation.base][INFO ]
Current t_inner = 10642.050 K
Expected t_inner for next iteration = 10636.106 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10642.050 K
Expected t_inner for next iteration = 10636.106 K
[tardis.simulation.base][INFO ]
Starting iteration 9 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 9 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.052e+43 erg / s
Luminosity absorbed = 3.411e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.052e+43 erg / s
Luminosity absorbed = 3.411e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 7/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 7/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.11e+04 K | 1.11e+04 K | 0.472 | 0.469 |
5 | 1.14e+04 K | 1.15e+04 K | 0.175 | 0.17 |
10 | 1.11e+04 K | 1.11e+04 K | 0.111 | 0.109 |
15 | 1.07e+04 K | 1.08e+04 K | 0.084 | 0.0822 |
[tardis.simulation.base][INFO ]
Current t_inner = 10636.106 K
Expected t_inner for next iteration = 10654.313 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10636.106 K
Expected t_inner for next iteration = 10654.313 K
[tardis.simulation.base][INFO ]
Starting iteration 10 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 10 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.070e+43 erg / s
Luminosity absorbed = 3.335e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.070e+43 erg / s
Luminosity absorbed = 3.335e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 8/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 8/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.11e+04 K | 1.1e+04 K | 0.469 | 0.475 |
5 | 1.15e+04 K | 1.14e+04 K | 0.17 | 0.177 |
10 | 1.11e+04 K | 1.11e+04 K | 0.109 | 0.112 |
15 | 1.08e+04 K | 1.06e+04 K | 0.0822 | 0.0878 |
[tardis.simulation.base][INFO ]
Current t_inner = 10654.313 K
Expected t_inner for next iteration = 10628.190 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10654.313 K
Expected t_inner for next iteration = 10628.190 K
[tardis.simulation.base][INFO ]
Starting iteration 11 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 11 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.053e+43 erg / s
Luminosity absorbed = 3.363e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.053e+43 erg / s
Luminosity absorbed = 3.363e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 9/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 9/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.1e+04 K | 0.475 | 0.472 |
5 | 1.14e+04 K | 1.12e+04 K | 0.177 | 0.184 |
10 | 1.11e+04 K | 1.1e+04 K | 0.112 | 0.114 |
15 | 1.06e+04 K | 1.06e+04 K | 0.0878 | 0.0859 |
[tardis.simulation.base][INFO ]
Current t_inner = 10628.190 K
Expected t_inner for next iteration = 10644.054 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10628.190 K
Expected t_inner for next iteration = 10644.054 K
[tardis.simulation.base][INFO ]
Starting iteration 12 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 12 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.056e+43 erg / s
Luminosity absorbed = 3.420e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.056e+43 erg / s
Luminosity absorbed = 3.420e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 10/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 10/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.11e+04 K | 0.472 | 0.467 |
5 | 1.12e+04 K | 1.13e+04 K | 0.184 | 0.176 |
10 | 1.1e+04 K | 1.11e+04 K | 0.114 | 0.11 |
15 | 1.06e+04 K | 1.08e+04 K | 0.0859 | 0.0821 |
[tardis.simulation.base][INFO ]
Current t_inner = 10644.054 K
Expected t_inner for next iteration = 10653.543 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10644.054 K
Expected t_inner for next iteration = 10653.543 K
[tardis.simulation.base][INFO ]
Starting iteration 13 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 13 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.062e+43 erg / s
Luminosity absorbed = 3.406e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.062e+43 erg / s
Luminosity absorbed = 3.406e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 11/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 11/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.11e+04 K | 1.11e+04 K | 0.467 | 0.466 |
5 | 1.13e+04 K | 1.13e+04 K | 0.176 | 0.18 |
10 | 1.11e+04 K | 1.11e+04 K | 0.11 | 0.111 |
15 | 1.08e+04 K | 1.08e+04 K | 0.0821 | 0.0841 |
[tardis.simulation.base][INFO ]
Current t_inner = 10653.543 K
Expected t_inner for next iteration = 10647.277 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10653.543 K
Expected t_inner for next iteration = 10647.277 K
[tardis.simulation.base][INFO ]
Starting iteration 14 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 14 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.063e+43 erg / s
Luminosity absorbed = 3.369e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.063e+43 erg / s
Luminosity absorbed = 3.369e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 12/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 12/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.11e+04 K | 1.11e+04 K | 0.466 | 0.469 |
5 | 1.13e+04 K | 1.13e+04 K | 0.18 | 0.182 |
10 | 1.11e+04 K | 1.1e+04 K | 0.111 | 0.113 |
15 | 1.08e+04 K | 1.07e+04 K | 0.0841 | 0.0854 |
[tardis.simulation.base][INFO ]
Current t_inner = 10647.277 K
Expected t_inner for next iteration = 10638.875 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10647.277 K
Expected t_inner for next iteration = 10638.875 K
[tardis.simulation.base][INFO ]
Starting iteration 15 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 15 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.053e+43 erg / s
Luminosity absorbed = 3.417e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.053e+43 erg / s
Luminosity absorbed = 3.417e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 13/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 13/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.11e+04 K | 1.1e+04 K | 0.469 | 0.484 |
5 | 1.13e+04 K | 1.13e+04 K | 0.182 | 0.181 |
10 | 1.1e+04 K | 1.1e+04 K | 0.113 | 0.113 |
15 | 1.07e+04 K | 1.07e+04 K | 0.0854 | 0.0858 |
[tardis.simulation.base][INFO ]
Current t_inner = 10638.875 K
Expected t_inner for next iteration = 10655.125 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10638.875 K
Expected t_inner for next iteration = 10655.125 K
[tardis.simulation.base][INFO ]
Starting iteration 16 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 16 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.059e+43 erg / s
Luminosity absorbed = 3.445e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.059e+43 erg / s
Luminosity absorbed = 3.445e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 14/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 14/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.1e+04 K | 0.484 | 0.472 |
5 | 1.13e+04 K | 1.13e+04 K | 0.181 | 0.177 |
10 | 1.1e+04 K | 1.1e+04 K | 0.113 | 0.113 |
15 | 1.07e+04 K | 1.06e+04 K | 0.0858 | 0.0858 |
[tardis.simulation.base][INFO ]
Current t_inner = 10655.125 K
Expected t_inner for next iteration = 10655.561 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10655.125 K
Expected t_inner for next iteration = 10655.561 K
[tardis.simulation.base][INFO ]
Starting iteration 17 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 17 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.067e+43 erg / s
Luminosity absorbed = 3.372e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.067e+43 erg / s
Luminosity absorbed = 3.372e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 15/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 15/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.1e+04 K | 1.11e+04 K | 0.472 | 0.468 |
5 | 1.13e+04 K | 1.14e+04 K | 0.177 | 0.175 |
10 | 1.1e+04 K | 1.11e+04 K | 0.113 | 0.11 |
15 | 1.06e+04 K | 1.08e+04 K | 0.0858 | 0.0816 |
[tardis.simulation.base][INFO ]
Current t_inner = 10655.561 K
Expected t_inner for next iteration = 10636.536 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10655.561 K
Expected t_inner for next iteration = 10636.536 K
[tardis.simulation.base][INFO ]
Starting iteration 18 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 18 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.057e+43 erg / s
Luminosity absorbed = 3.365e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.057e+43 erg / s
Luminosity absorbed = 3.365e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 16/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 16/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.11e+04 K | 1.11e+04 K | 0.468 | 0.464 |
5 | 1.14e+04 K | 1.13e+04 K | 0.175 | 0.177 |
10 | 1.11e+04 K | 1.1e+04 K | 0.11 | 0.113 |
15 | 1.08e+04 K | 1.07e+04 K | 0.0816 | 0.0848 |
[tardis.simulation.base][INFO ]
Current t_inner = 10636.536 K
Expected t_inner for next iteration = 10641.692 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10636.536 K
Expected t_inner for next iteration = 10641.692 K
[tardis.simulation.base][INFO ]
Starting iteration 19 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 19 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.056e+43 erg / s
Luminosity absorbed = 3.405e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.056e+43 erg / s
Luminosity absorbed = 3.405e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
[tardis.simulation.base][INFO ]
Iteration converged 17/4 consecutive times. (base.py:262)
INFO:tardis.simulation.base:Iteration converged 17/4 consecutive times.
[tardis.simulation.base][INFO ]
Plasma stratification: (base.py:631)
INFO:tardis.simulation.base:
Plasma stratification:
Shell No. | t_rad | next_t_rad | w | next_w |
---|---|---|---|---|
0 | 1.11e+04 K | 1.11e+04 K | 0.464 | 0.466 |
5 | 1.13e+04 K | 1.13e+04 K | 0.177 | 0.177 |
10 | 1.1e+04 K | 1.11e+04 K | 0.113 | 0.111 |
15 | 1.07e+04 K | 1.07e+04 K | 0.0848 | 0.0853 |
[tardis.simulation.base][INFO ]
Current t_inner = 10641.692 K
Expected t_inner for next iteration = 10650.463 K
(base.py:658)
INFO:tardis.simulation.base:
Current t_inner = 10641.692 K
Expected t_inner for next iteration = 10650.463 K
[tardis.simulation.base][INFO ]
Simulation finished in 19 iterations
Simulation took 74.98 s
(base.py:548)
INFO:tardis.simulation.base:
Simulation finished in 19 iterations
Simulation took 74.98 s
[tardis.simulation.base][INFO ]
Starting iteration 20 of 20 (base.py:450)
INFO:tardis.simulation.base:
Starting iteration 20 of 20
[tardis.simulation.base][INFO ]
Luminosity emitted = 1.061e+43 erg / s
Luminosity absorbed = 3.401e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
(base.py:663)
INFO:tardis.simulation.base:
Luminosity emitted = 1.061e+43 erg / s
Luminosity absorbed = 3.401e+42 erg / s
Luminosity requested = 1.059e+43 erg / s
Now, the tracked
properties can be accessed via the rpacket_tracker
attribute of the sim.transport.transport_state
object.
[9]:
type(sim.transport.transport_state.rpacket_tracker)
[9]:
numba.typed.typedlist.List
It can be seen from the above code, that the sim.transport.transport_state.rpacket_tracker
is an instance of the List
specifically Numba Typed List. The RPacketTracker
class has the following structure for the properties : {More information in the TARDIS API for RPacketTracker
class}
# Basic structure for the RPacketTracker Class
class RPacketTracker:
# Properties
index
seed
status
r
nu
mu
energy
shell_id
interaction_type
boundary_interaction
[10]:
len(sim.transport.transport_state.rpacket_tracker)
[10]:
100000
Accessing properties through rpacket_tracker
¶
To access these different properties, we may consider the following examples for the rpacket_tracker
: In this Example, we are trying to access the properties of the packet at index 10
.In a similar way, we can check for any property for any packet in the range of packets for the last iteration.
Accessing the index
property for the packet with index = 10 :¶
[11]:
sim.transport.transport_state.rpacket_tracker[10].index
[11]:
10
Accessing the seed
property for the packet with index = 10 :¶
[12]:
sim.transport.transport_state.rpacket_tracker[10].seed
[12]:
2729103521
Accessing the status
property for the packet with index = 10 :¶
[13]:
sim.transport.transport_state.rpacket_tracker[10].status
[13]:
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1])
Thus, all other properties (r
, nu
, mu
, energy
, shell_id
,interaction_type
, boundary_interaction
) can be accessed accordingly.
We can also see the total number of interactions of index 10
packet under went, with the following example:
[14]:
len(sim.transport.transport_state.rpacket_tracker[10].shell_id)
[14]:
12
Warning
If we try to access sim.transport.transport_state.rpacket_tracker
property when we have the track_rpacket
property in the tracking
subsection of montecarlo
config, turned off as follows config["montecarlo"]["tracking"]["track_rpacket"] = False
, it will return None
. Error will be raised if we try to access the properties i.e. seed
, index
, etc.
Note
When we initialise the RPacketTracker()
class, the properties arrays {index
, seed
, status
, etc} are allocated certain length based on the initial_array_length
parameter that can be set via the initial_array_length
property under montecarlo -> tracking
section of the configuration. The default size of the array is 10
. This variable is important as the number of interactions a packet may have is variable, thus we need to allocate space dynamically. This variable is
used to compute the size and expand the array such that the properties are able to hold these values for the packet interaction. Higher number, allocates more space initially leading to lesser times the arrays expands and vice versa. It can be set in the following manner config["montecarlo"]["tracking"]["initial_array_length"] = {value}
.
Accessing properties with rpacket_tracker_df
¶
Also, the tracked
properties can be accessed via the rpacket_tracker_df
attribute of the sim.transport
object.
[15]:
type(sim.transport.transport_state.rpacket_tracker_df)
[15]:
pandas.core.frame.DataFrame
Here, all the properties of the rpackets discussed above are stored as a Pandas.Dataframe
object. This makes accessing the properties of any rpacket more convenient and in a more organized way.
The Basic structure of the Dataframe is as follows: Index Columns:
index - Indicates the index number of the packet.
step - It is the step number that any particular packet is on, as it moves through the ejecta.
Properties: These following properties are present as columns in the Dataframe. These are the same properties that were present in the rpacket_tracker
status
seed
r
nu
mu
energy
shell_id
interaction_type
The entire dataframe, containing all the properties mentioned above, can be fetched as:
[16]:
sim.transport.transport_state.rpacket_tracker_df
[16]:
status | seed | r | nu | mu | energy | shell_id | interaction_type | ||
---|---|---|---|---|---|---|---|---|---|
index | step | ||||||||
0 | 0 | 0 | 3338016338 | 1.235520e+15 | 1.736483e+15 | 0.839765 | 0.00001 | 0 | -1 |
1 | 0 | 3338016338 | 1.263676e+15 | 2.569811e+15 | -0.608549 | 0.00001 | 0 | 2 | |
2 | 0 | 3338016338 | 1.244956e+15 | 1.684571e+15 | 0.052209 | 0.00001 | 0 | 2 | |
3 | 0 | 3338016338 | 1.245022e+15 | 1.682866e+15 | 0.025872 | 0.00001 | 0 | 2 | |
4 | 0 | 3338016338 | 1.248276e+15 | 9.577869e+14 | -0.281524 | 0.00001 | 0 | 2 | |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
99998 | 1 | 0 | 856604741 | 1.240971e+15 | 4.678372e+14 | 0.228747 | 0.00001 | 0 | 1 |
2 | 1 | 856604741 | 2.246400e+15 | 4.678372e+14 | 0.843086 | 0.00001 | 19 | -1 | |
99999 | 0 | 0 | 864415001 | 1.235520e+15 | 1.157406e+14 | 0.663583 | 0.00001 | 0 | -1 |
1 | 0 | 864415001 | 1.382033e+15 | 1.159042e+14 | 0.776785 | 0.00001 | 2 | 1 | |
2 | 1 | 864415001 | 2.246400e+15 | 1.159042e+14 | 0.921893 | 0.00001 | 19 | -1 |
365281 rows × 8 columns
To access these different properties in the dataframe, we may consider the following examples for the rpacket_tracker_df
: In this Example, we are trying to access the properties of the packet at index 10
.In a similar way, we can check for any property for any packet in the range of packets for the last iteration.
Accessing all the properties for the packet with index = 10:¶
[17]:
sim.transport.transport_state.rpacket_tracker_df.loc[10]
[17]:
status | seed | r | nu | mu | energy | shell_id | interaction_type | |
---|---|---|---|---|---|---|---|---|
step | ||||||||
0 | 0 | 2729103521 | 1.235520e+15 | 2.100434e+15 | 0.587433 | 0.000010 | 0 | -1 |
1 | 0 | 2729103521 | 1.514008e+15 | 1.966980e+15 | -0.707127 | 0.000010 | 5 | 1 |
2 | 0 | 2729103521 | 1.387113e+15 | 2.093418e+15 | 0.868696 | 0.000010 | 2 | 2 |
3 | 0 | 2729103521 | 1.709334e+15 | 2.754770e+15 | 0.357089 | 0.000010 | 9 | 2 |
4 | 0 | 2729103521 | 1.726723e+15 | 3.040742e+15 | 0.224209 | 0.000010 | 9 | 2 |
5 | 0 | 2729103521 | 1.752721e+15 | 1.680385e+15 | 0.226400 | 0.000010 | 10 | 2 |
6 | 0 | 2729103521 | 1.764487e+15 | 1.669485e+15 | 0.129774 | 0.000010 | 10 | 2 |
7 | 0 | 2729103521 | 1.793179e+15 | 1.575386e+15 | -0.889332 | 0.000009 | 11 | 2 |
8 | 0 | 2729103521 | 1.439546e+15 | 1.610949e+15 | -0.287407 | 0.000009 | 4 | 1 |
9 | 0 | 2729103521 | 1.419306e+15 | 2.160489e+15 | 0.495893 | 0.000010 | 3 | 2 |
10 | 0 | 2729103521 | 1.513523e+15 | 1.212817e+15 | 0.618740 | 0.000010 | 5 | 2 |
11 | 1 | 2729103521 | 2.246400e+15 | 1.212817e+15 | 0.848435 | 0.000010 | 19 | -1 |
Accessing the energy
property for the packet with index = 10:¶
[18]:
sim.transport.transport_state.rpacket_tracker_df.loc[10]["energy"]
[18]:
step
0 0.000010
1 0.000010
2 0.000010
3 0.000010
4 0.000010
5 0.000010
6 0.000010
7 0.000009
8 0.000009
9 0.000010
10 0.000010
11 0.000010
Name: energy, dtype: float64
The above command returns a Pandas Series for the packet #10
across different steps. To access any property at a particular step (for example at step 5
), the following commands can be used.
[19]:
sim.transport.transport_state.rpacket_tracker_df.loc[10,5]["energy"]
[19]:
9.784099768780122e-06
[20]:
sim.transport.transport_state.rpacket_tracker_df.loc[10]["energy"][5]
[20]:
9.784099768780122e-06
Thus, all other properties (status
, seed
, r
, nu
, mu
, shell_id
,interaction_type
) can be accessed accordingly.