.. _dataanalysis-yt:
yt-project
==========
`yt `__ is a Python package that can help in analyzing and visualizing MicroEleX data (among other data formats).
It is convenient to use yt within a `Jupyter notebook `__.
Data Support
------------
yt primarily supports MicroEleX through plotfiles.
Installation
------------
From the terminal, install the latest version of yt:
.. code-block:: bash
python3 -m pip install cython
python3 -m pip install --upgrade yt
Alternatively, yt can be installed via their installation script, see `yt installation web page `__.
Visualizing the data
--------------------
Once data ("plotfiles") has been created by the simulation, open a Jupyter notebook from
the terminal:
.. code-block:: bash
jupyter notebook
Then use the following commands in the first cell of the notebook to import yt
and load the first plot file:
.. code-block:: python
import yt
ds = yt.load('./diags/plotfiles/plt00000/')
The list of field data and particle data stored can be seen with:
.. code-block:: python
ds.field_list
For a quick start-up, the most useful commands for post-processing can be found
in our Jupyter notebook
:download:`Visualization.ipynb<../../../Tools/PostProcessing/Visualization.ipynb>`
Field data
~~~~~~~~~~
Field data can be visualized using ``yt.SlicePlot`` (see the docstring of
this function `here `__)
For instance, in order to plot the field ``f`` in a slice orthogonal to ``y`` (``1``):
.. code-block:: python
yt.SlicePlot( ds, 1, 'f', origin='native' )
.. note::
`yt.SlicePlot` creates a 2D plot with the same aspect ratio as the physical
size of the simulation box. Sometimes this can lead to very elongated plots
that are difficult to read. You can modify the aspect ratio with the
`aspect` argument ; for instance:
.. code-block:: python
yt.SlicePlot( ds, 1, 'f', aspect=1./10 )
Alternatively, the data can be obtained as a `numpy `__ array.
For instance, in order to obtain the field `f` (on level 0) as a numpy array:
.. code-block:: python
ad0 = ds.covering_grid(level=0, left_edge=ds.domain_left_edge, dims=ds.domain_dimensions)
f_array = ad0['f'].to_ndarray()
Further information
-------------------
A lot more information can be obtained from the yt documentation, and the
corresponding notebook tutorials `here `__.