Skip to main content

Tools for plotting and manipulating JETTO runs.

Project description

jetto-pythontools

Python tools for plotting and manipulating JETTO runs.

A word of caution

These tools are a community collaboration under development, and probably always will be. If you want to report a problem or ask for a feature, please open an issue at JET or gitlab.com, so the responsible person can be identified and notified. On gitlab.com please ping a developer since it may not be actively monitored.

Prerequisites

We try to keep jetto-pythontools modular and easy-to-install. However, to keep our sanity, we request at least a recent version of:

  • python >= 3.7.0
  • pip >= 20.0.0

Different scripts might require different dependecies. Whenever a module is missing, not provided by the default environment of the machine you are at, and not installed by our pip install process, please open an issue.

Installation (user)

Install the latest relase from PyPi, including the plotting GUI jpyplot

sudo apt-get install python3-tk idle3  # On Ubuntu, tk is not always installed
sudo pip install jetto-tools[gui,tests]

Or for a lightweight install without the plotting GUI

pip install jetto-tools

Installation (developer)

An easy way to get up and running is to install from the git repository in developer mode.

python --version # Make sure you have at least python3.7
pip --version # Make sure you have at least version 20.0 of pip to read pyproject.toml files
git clone git@git.ccfe.ac.uk:jintrac/jetto-pythontools.git # Clone from JET repository if you have access
# Or git clone https://gitlab.com/jintrac/jetto-pythontools.git # for the public version
pip install -e jetto-pythontools
python -c "import jetto_tools; print(jetto_tools.__version__)" # Check if you indeed installed the right version and can call it in python

However, on Heimdall / Freia, editable mode does not always work, unless pip is updated. For Freia testing of GUI changes, use

module unload jintrac-pythontools
pip install --user --upgrade pip
cd jetto-pythontools
python -m pip install --user -e .
python -m pip install --user -e .[gui,tests]  #GUI needs to be installed explicitly

In some cases, you might also need to

export PATH=$HOME/.local/bin:$PATH
export PYTHONPATH=$HOME/.local/lib/python3.7/site-packages:$PYTHONPATH

to make your local install take precedence over the central installation. (Note: in some versions of Python, local installs take precedence over the default installed version in PYTHONPATH (via importlib) - but this is not the case with the importlib in Python version 3.7.1 on Heimdall - hence the need for explicit PYTHONPATH modification).

You can then launch the scripts or gui of your local install directly from PATH e.g. jpyplot.

Non-pip builds (e.g. pure setuptools)

It is possible to build and install this package with other tool. In that case, make sure your tools can read pyproject.toml files, and be able to generate a version number somehow. For setuptools, that means:

  • setuptools >=40.8.0
  • setuptools_scm[toml]>=3.4

Developer notes

  • Do not add JET or other tokamak data to this repository! This repository is synced to an open gitlab repository on gitlab.com
  • Open Issues and MRs at JET if you have access, or on gitlab.com if you don't. On gitlab.com please ping a developer since it may not be actively monitored.
  • We try to follow the Python Package Authority recommendations. A full guide to install Python packages can be found on their website
  • In some cases the editable install does not pickup changes (?), in which case prepending the working dir to PYTHONPATH can be a workaround - See Editable install requires python/3.7.9 (not yet in Heimdall site packages so you would need a venv for this)
  • If you are making more major changes, you may prefer to use a venv, following the expert install procedure
  • This repo uses gitlab-flow, e.g. merge to master directly, no develop branch.

Features and Examples

JETTO scan API

To progamatically generate JETTO runs from python, most useful for scans.

JETTO plotting GUI

The jpyplot tool allows to load and plot runs from either the command line or a GUI. If you launch it from a run directory it loads that case automatically.

Particularly useful is to specify run dirs and plot variables from the CLI e.g.

jpyplot --plotvars=TI,TE,NE run1 run1 runwild*

JETTO binary tools

The binary tools (in jetto_tools/binary.py) reads native JETTO outputs and can write JETTO inputs (exfiles)

  • convert_binary_file(input_file,output_file): Converts .ex,.ext,.jsp,.jst,.jse files into ASCII equivalent for easy reading
  • read_binary_file(input_file): Reads .ex,.ext,.jsp,.jst,.jse files into memory (specific structure) for further processing in Python
  • write_binary_exfile(data,output_file): Writes data (specific structure) into binary file according to .ex format
  • modify_entry(data,key,moddata): Modifies entry under key in data (specific structure), replacing it with moddata and updating tracking

One use is to read an existing ex-file into memory to generate the specific structure needed, modifying it as required using the function as it preserves some degree of providence, and writing it back out as a binary for use in JETTO. The tracking is updated simply by erasing all DDA/DTYPE/SEQ tags and replacing the DDA tag with the string "Python modification tool" and setting seq=0.

Units can be accessed from jetto_tools dictionary via dict['INFO'][<var>]['UNITS']

Simple example to expose what the low level functions do (don't actually make plots like this, use the JETTO class - see below...!):

from jetto_tools.binary import *
import matplotlib.pyplot as plt

jst = read_binary_file('jetto.jst')
time = jst['TVEC1'][0,:] # First index is rho-index,
                         # but since this is a time trace,
                         # dimension is singular
Teax = jst['TEAX'][0,:]

plt.figure()
plt.plot(time,Teax,label='Simulation')
plt.legend()
plt.xlabel('Time [s]')
plt.ylabel('Te,core [eV]')
plt.show()

JETTO class

The JETTO class reads all data into a structure which drives the results_gui (jpyplot).

For more information:

  • Overview of class design here
  • Try using the docstrings...
  • Try browsing or searching the gitlab issues and merge requests.

Example (cut down from here) - untested...

from pathlib import Path

import numpy as np
import xarray as xr
import matplotlib.pyplot as plt

from jetto_tools.classes import JETTO, ODS
from jetto_tools.results_gui import run_list_to_runs, slice_plotter

from IPython import embed

# Read runs
run_list = ['run1','run2']
runs = run_list_to_runs(run_list)

# For convenience, extract a JINTRAC run
jrun = runs[list(runs.keys())[0]]
jsp = jrun['JSP']

# Set plot variables
yvar = 'TE'
file = 'JSP'
# Find the max time in all JSPs
max_time = np.max([run[file]['time'].max() for run in runs.values()])
time = max_time

# Use GUI scripts to make a plot
fig, axes = plt.subplots(3)
ax0, ax1, ax2 = axes
xvar = 'XRHO'
for ax, yvar in zip(axes, ['TE', 'TI', 'NE']):
    slice_plotter(ax, None, runs, file, xvar, yvar, zslice=('time', time), verbosity=1)

ax0.legend([Path(k).name for k in runs.keys()])
plt.show()

JETTO-HELENA-MISHKA coupling data

If youa are running pedestal coupling such that the pedestal which is detailed here you can extrat the data required for the coupling and the profiles which are pasted to the MHD stability analysis. To load in the data the following options is needed in the jetto class:

from jetto_tools.classes import JETTO, ODS
jrun = JETTO(pathToJETTOrun, load_mishkainfo=True)

The following objects are avialable within the JETTO class:

  1. jrun['JSP_MISHKA']: JSP interpolated on to the time basis of either the JSP or MISHKA (set by FCALLMISH) which ever is the most coarse. The entry toroidal_mode which is the most untable toroidal mode number and growth_rate which is the growth rate (after filtering, see here for here for different filtering systems) of the most unstable mode. This data is parsed from the MISHKAinstabilities.info file.
  2. jrun['JST_MISHKA']: JST interpolated on to the time basis of either the JSP or MISHKA (set by FCALLMISH) which ever is the most coarser. The entry toroidal_mode which is the most untable toroidal mode number and growth_rate which is the growth rate (after filtering, see here for here for different filtering systems) of the most unstable mode. This data is parsed from the MISHKAinstabilities.info file.
  3. jrun['JETTO_stability_profiles']: These are the profiles which are passed from JETTO to the matlab interface which are then processed to make the HELENA input file and the subsquently the MISHA input files. These are the files avialable in the run directory named JETTO_*.dat
  4. jrun['HELENA_profiles']: These are the profiles which are written out in the HELENA input file (which are processed from the above profiles).

Each of these objects is an xarray dataset which have an avialable x coordinate, and has descriptions for some of the enteries.

JINTRAC class

The JINTRAC class was devised as an extension to the JETTO class to handle simultaneously JETTO and EDGE2D outputs. The class therefore parses typical JETTO output files, such as jsp, jst, ssp, etc. and also EDGE2D TRAN files. Reading JETTO files is achieved through the JETTO binary tools library previously described for standard output, or through the IMAS DB tools for IDS output. The TRAN files are parsed using the EPROC library. The output is then casted into a single Python dictionary using the same key names independently of where the output comes from (i.e. in JETTO standard or IDS). This is at the moment a CL tool, and has no GUI, but can be used for plotting or data manipulation for scientific production. To get started, all you have to do is open a Python session:

import imas
from idstools.ids_tools import *
import numpy as np
import matplotlib.pyplot as plt
import matplotlib, os
from read_jetto_gsl import jintrac
from IPython import embed

embed()

#jetto_path should be the path to your run directory, and the rest of the
#variables should match your IMAS /imasdb folder if you are reading IDS
#The resulting dictionary "jet" will now contain most of the output data from
#your run.
jet = jintrac(database="iter", nshot=53298,
              run=2, jetto_path=jetto_path, 
              data_version="3.39.0",
              out_memory=True)

#Plot the electron temperature profile in [keV]
fig, ax = plt.subplots(figsize=(5,5))
ax.plot(jet.out["rhot_norm"][-1,:], jet.out["Te"][-1,:]/1.e3,
        c='blue', ls="-")
        
#The JINTRAC class also contains a basic plotting function, which functionality
#is still being extended. This can be invoked by:
jet.plot_jettorun()

A word of caution: The dictionary keys, such as "Te" do not correspond to the names of the variables in the JINTRAC Wiki, i.e. the spelling is "Te" and not "TE". To see all the key names, one needs to check the jintrac class at the moment or do:

jet.out.keys()

Future developments might include an overhaul to match the names to those of the Wiki.

JETTO file generation utilities

coconut-to-jetto

Takes as input a list of COCONUT run directories and generates JETTO input file jetto.jset. Requires a 'donor' JETTO run to take the initial jetto.jset from.

set-exfile-profiles

Replaces exfile contents with last time point from a selected JSP file.

time-dependent-boundary-condition

Read in a sequence of COCONUT/JETTO outputs and writes time-dependent boundary condition files for JETTO input, smoothing with a Savitzky-Golay filter.

Adding Documentation

Some external user docs are maintained on the JINTRAC pages (WIP: merging here):

Developer API docs are deployed on gitlab pages via gitlab CI:

The API documentation is written using reStructuredText and Sphinx. In order to build the documentation, run the commands:

$ cd docs/
$ make html

They can then be viewed in the browser of your choice e.g.

$ firefox docs/_build/html/index.html

The packages required to build the documentation are listed in requirements_docs.txt. If this pakage was installed via pip, as above, then the prerequisites should have been installed automatically.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jetto_tools-3.0.1.tar.gz (16.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jetto_tools-3.0.1-py3-none-any.whl (418.8 kB view details)

Uploaded Python 3

File details

Details for the file jetto_tools-3.0.1.tar.gz.

File metadata

  • Download URL: jetto_tools-3.0.1.tar.gz
  • Upload date:
  • Size: 16.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for jetto_tools-3.0.1.tar.gz
Algorithm Hash digest
SHA256 9c75e2a6a87988204b37aeedaade58352e38e51686e16601cd32f102a64501c5
MD5 da60c8d48c02428279ff596da8531bfa
BLAKE2b-256 37d3c0e94ffaaaa9493835f42faba927f245c9eaf3a00857a82501ffe584eba9

See more details on using hashes here.

File details

Details for the file jetto_tools-3.0.1-py3-none-any.whl.

File metadata

  • Download URL: jetto_tools-3.0.1-py3-none-any.whl
  • Upload date:
  • Size: 418.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for jetto_tools-3.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2cb3b80584020a25634f833c41a85a1433fd400e3b81cb0e3ab70427ae9d088e
MD5 eb1d37b104e867e05a5f0a3ae0a8a6fb
BLAKE2b-256 8fc8ba5e19a5411058726abe44ce9749cd7bc38dfc05a33e4911047b0f8c022e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page