{ "cells": [ { "cell_type": "markdown", "id": "c7835cf9", "metadata": {}, "source": [ "# How to Generate the Plasma Graph" ] }, { "cell_type": "markdown", "id": "0329e9f4", "metadata": {}, "source": [ "After running a simulation, TARDIS has the ability to create a [graph](https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)) showcasing how each variable used to compute the plasma state is connected and calculated (see the [Plasma Documentation](../../physics/setup/plasma/index.rst) for more information). To do so, one needs to utilize the `write_to_tex` command to generate a .tex file that displays the graph. This tutorial aims to showcase how the .tex file can be generated and what options can be inputted to display the graph in a preferred method. To start, TARDIS needs to perform a simulation. Here the `tardis_example.yml` configuration file is used as in the [quickstart guide](../../quickstart.ipynb)." ] }, { "cell_type": "code", "execution_count": null, "id": "b9fbaaa9", "metadata": {}, "outputs": [], "source": [ "#downloading necessary modules\n", "from tardis import run_tardis\n", "from tardis.io.atom_data import download_atom_data\n", "\n", "import networkx as nx\n", "\n", "from IPython.display import Image, display" ] }, { "cell_type": "code", "execution_count": null, "id": "631f5cd2", "metadata": {}, "outputs": [], "source": [ "#downloading atom data\n", "download_atom_data('kurucz_cd23_chianti_H_He')" ] }, { "cell_type": "code", "execution_count": null, "id": "2212037a", "metadata": {}, "outputs": [], "source": [ "#running simulation\n", "sim = run_tardis('tardis_example.yml')" ] }, { "cell_type": "markdown", "id": "2eff6574", "metadata": {}, "source": [ "## Displaying the Graph Within A Jupyter Notebook" ] }, { "cell_type": "markdown", "id": "12802d67", "metadata": {}, "source": [ "Now that TARDIS has finished a simulation run, the plasma graph can now be generated. To display the basic graph within a Jupyter Notebook, one can simply use the `nx.draw` as follows: " ] }, { "cell_type": "code", "execution_count": null, "id": "ca47e24a", "metadata": {}, "outputs": [], "source": [ "%pylab inline\n", "\n", "nx.draw(sim.plasma.graph)" ] }, { "cell_type": "markdown", "id": "54a7c171", "metadata": {}, "source": [ "There are many different ways of displaying the graph in a more readable format. One such example is shown below." ] }, { "cell_type": "code", "execution_count": null, "id": "6cf742ed", "metadata": {}, "outputs": [], "source": [ "position = nx.spring_layout(sim.plasma.graph, k=0.75, iterations=15)\n", "\n", "nx.draw(sim.plasma.graph, position, with_labels=True)" ] }, { "cell_type": "markdown", "id": "671db7f1", "metadata": {}, "source": [ "
True
to enable writing)nodesep
: changes spacing of nodesedge[lblstyle]
: edits the edge labelsmargin
: sets the margins of the outputted graphratio
: sets the drawing height and widthsize
: sets the maximum height and width of the graph