{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Generating Data Exploration Widgets\n", "A demonstration of how to generate TARDIS widgets that allows you to **explore simulation data within Jupyter Notebook with ease**!\n", "\n", "This notebook is a quickstart tutorial, but more details on each widget (and its features) is given in the [Using TARDIS Widgets](https://tardis-sn.github.io/tardis/using/visualization/using_widgets.html) section of the documentation." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First create and run a simulation that we can use to generate widgets (more details about running simulation in [Quickstart](https://tardis-sn.github.io/tardis/quickstart/quickstart.html) section):" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "ExecuteTime": { "end_time": "2021-02-18T16:10:42.838867Z", "start_time": "2021-02-18T16:09:22.826173Z" }, "scrolled": true }, "outputs": [], "source": [ "from tardis import run_tardis\n", "from tardis.io.atom_data.util import download_atom_data\n", "\n", "# We download the atomic data needed to run the simulation\n", "download_atom_data('kurucz_cd23_chianti_H_He')\n", "\n", "sim = run_tardis('tardis_example.yml', virtual_packet_logging=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now, import functions & class to create widgets from `visualization` subpackage:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "ExecuteTime": { "end_time": "2021-02-18T17:29:30.986893Z", "start_time": "2021-02-18T17:29:30.978764Z" } }, "outputs": [], "source": [ "from tardis.visualization import (\n", " shell_info_from_simulation,\n", " shell_info_from_hdf,\n", " LineInfoWidget,\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Shell Info Widget\n", "This widget allows you to explore chemical abundances of each shell - all the way from elements to ions to levels - by just clicking on the rows you want to explore!\n", "\n", "There are two ways in which you can generate the widget:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Using a Simulation object\n", "We will use the simulation object we created in the beginning, `sim` to generate shell info widget. Then simply display it to start using." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "ExecuteTime": { "end_time": "2021-02-18T16:11:15.097803Z", "start_time": "2021-02-18T16:11:14.753761Z" } }, "outputs": [], "source": [ "shell_info_widget = shell_info_from_simulation(sim)\n", "shell_info_widget.display()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can interact with the widget produced in output above (which won't be visible if you're viewing this notebook in our docs as an html page) like this:\n", "\n", "\n", "\n", "Use the button at the top of this page to run the notebook in interactively to use the widgets!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Using a saved simulation (HDF file)\n", "Alternatively, if you have a TARDIS simulation model saved on your disk as an HDF file, you can also use it to generate the shell info widget." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "ExecuteTime": { "end_time": "2021-02-18T17:24:41.195180Z", "start_time": "2021-02-18T17:24:39.006861Z" }, "scrolled": true }, "outputs": [], "source": [ "# shell_info_widget = shell_info_from_hdf('demo.hdf')\n", "# shell_info_widget.display()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Line Info Widget\n", "This widget lets you explore the atomic lines responsible for producing features in the simulated spectrum.\n", "\n", "You can select any wavelength range in the spectrum interactively to display a table giving the fraction of packets that experienced their last interaction with each species. Using toggle buttons, you can specify whether to filter the selected range by the emitted or absorbed wavelengths of packets. Clicking on a row in the species table, shows packet counts for each last line interaction of the selected species, which can be grouped in several ways." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To generate line info widget, we will again use the simulation object `sim` and then display the widget:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "ExecuteTime": { "end_time": "2021-02-18T17:24:55.634945Z", "start_time": "2021-02-18T17:24:49.354718Z" } }, "outputs": [], "source": [ "line_info_widget = LineInfoWidget.from_simulation(sim)\n", "line_info_widget.display()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can interact with this widget (which again won't be visible if you're viewing this notebook in our docs as an html page) like this:\n", "\n", "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "