{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "### Quickstart for TARDIS ###" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Every simulation run requires the atomic database (for more info refer to [atomic data](io/configuration/components/atomic/atomic_data.rst)) and a configuration file (more info at [configuration](io/configuration/index.rst)).\n", "You can obtain a copy of the atomic database from the\n", "(https://github.com/tardis-sn/tardis-refdata) repository\n", "(`atom_data` subfolder). We recommended to use the\n", "`kurucz_cd23_chianti_H_He.h5` dataset (which is auto-downloaded in the second cell already). The configuration file for this quickstart is `tardis_example.yml`, which can be downloaded [here](https://raw.githubusercontent.com/tardis-sn/tardis/master/docs/tardis_example.yml)), though this file is auto-downloaded in the third cell.\n", "\n", "After the [installation](installation.rst), start a Jupyter server executing `jupyter notebook` on the command line in a directory that contains this quickstart." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from tardis import run_tardis\n", "from tardis.io.atom_data.util import download_atom_data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Downloading the atomic data ####" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# The data are automatically downloaded\n", "download_atom_data('kurucz_cd23_chianti_H_He')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Downloading the example file ####" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "!curl -O https://raw.githubusercontent.com/tardis-sn/tardis/master/docs/tardis_example.yml" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Running the simulation (long output) ####" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "\n", "Note\n", " \n", "The progress of the simulation can be tracked using progress bars which are displayed when the notebook is run, but are not displayed in the documentation. \n", " \n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "sim = run_tardis('tardis_example.yml')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Plotting the Spectrum ####" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%pylab inline\n", "\n", "spectrum = sim.runner.spectrum\n", "spectrum_virtual = sim.runner.spectrum_virtual\n", "spectrum_integrated = sim.runner.spectrum_integrated\n", "\n", "figure(figsize=(10,6))\n", "spectrum.plot(label='normal packets')\n", "spectrum_virtual.plot(label='virtual packets')\n", "spectrum_integrated.plot(label='formal integral')\n", "xlabel('Wavelength [$\\AA$]')\n", "ylabel('Luminosity Density [erg/s/$\\AA$]')\n", "legend()\n", "xlim(500, 9000)" ] } ], "metadata": { "interpreter": { "hash": "14c438b85bc0c5441332c56c5d68185f391ef15672c5492b27fc26d9164316c1" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.12" } }, "nbformat": 4, "nbformat_minor": 2 }