{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Analysing Spectrum" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Every simulation run requires [atomic data](io/configuration/components/atomic/atomic_data.rst) and a [configuration file](io/configuration/index.rst). \n", "\n", "## Atomic Data\n", "\n", "We recommend using the [kurucz_cd23_chianti_H_He.h5](https://github.com/tardis-sn/tardis-regression-data/raw/main/atom_data/kurucz_cd23_chianti_H_He.h5) dataset." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4766e33e30a9431d9289a30474a18896", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Iterations: 0/? [00:00, ?it/s]" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8930990559304978bb4bd08234701114", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Packets: 0/? [00:00, ?it/s]" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "Atomic Data kurucz_cd23_chianti_H_He already exists in /home/abhinav/Downloads/tardis-data/kurucz_cd23_chianti_H_He.h5. Will not download - override with force_download=True.\n" ] } ], "source": [ "from tardis.io.atom_data 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\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can also obtain a copy of the atomic data from the [tardis-regression-data](https://github.com/tardis-sn/tardis-regression-data/tree/main/atom_data) repository.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Example Configuration File\n", "\n", "The configuration file [tardis_example.yml](https://github.com/tardis-sn/tardis/tree/master/docs/tardis_example.yml) is used throughout this Quickstart.\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "!wget -q -nc https://raw.githubusercontent.com/tardis-sn/tardis/master/docs/tardis_example.yml" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "# Example YAML configuration for TARDIS\n", "tardis_config_version: v1.0\n", "\n", "supernova:\n", " luminosity_requested: 9.44 log_lsun\n", " time_explosion: 13 day\n", "\n", "atom_data: kurucz_cd23_chianti_H_He.h5\n", "\n", "model:\n", " structure:\n", " type: specific\n", " velocity:\n", " start: 1.1e4 km/s\n", " stop: 20000 km/s\n", " num: 20\n", " density:\n", " type: branch85_w7\n", "\n", " abundances:\n", " type: uniform\n", " O: 0.19\n", " Mg: 0.03\n", " Si: 0.52\n", " S: 0.19\n", " Ar: 0.04\n", " Ca: 0.03\n", "\n", "plasma:\n", " disable_electron_scattering: no\n", " ionization: lte\n", " excitation: lte\n", " radiative_rates_type: dilute-blackbody\n", " line_interaction_type: macroatom\n", "\n", "montecarlo:\n", " seed: 23111963\n", " no_of_packets: 4.0e+4\n", " iterations: 20\n", " nthreads: 1\n", "\n", " last_no_of_packets: 1.e+5\n", " no_of_virtual_packets: 10\n", "\n", " convergence_strategy:\n", " type: damped\n", " damping_constant: 1.0\n", " threshold: 0.05\n", " fraction: 0.8\n", " hold_iterations: 3\n", " t_inner:\n", " damping_constant: 0.5\n", "\n", "spectrum:\n", " start: 500 angstrom\n", " stop: 20000 angstrom\n", " num: 10000\n" ] } ], "source": [ "!cat tardis_example.yml" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Running the Simulation\n", "\n", "To run the simulation, import the `run_tardis` function and create the `sim` object." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "