Skip to main content

python tools for handling field output of xshells code

Project description

Python modules and programs to handle outputs of the xshells code.

xsplot

xsplot is a python module and also a command line utility that can display:

  • time evolution of quantities stored in the energy.* files,
  • slices and spectra produced by the xspp program from simulation fields.

For instance, from command line:

python -m xsplot energy.bench -c Eu   # displays kinetic energy ('Eu') as a function of time

The same things within a python script or notebook:

import matplotlib.pyplot as plt
import xsplot
y = xsplot.load_diags('energy.bench')
plt.plot(y['t'],y['Eu'])

pyxshells

pyxshells is a python module to work with field* files from simulations. For instance:

 import pyxshells
 f = pyxshells.load_field('fieldU.bench')
 kinetic_energy = f.energy()
 print(kinetic_energy)

DOCUMENTATION

For more info, see https://nschaeff.bitbucket.io/xshells/Ch3.html

Project details


Release history Release notifications | RSS feed

This version

2.8

Download files

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

Source Distribution

pyxshells-2.8.tar.gz (24.0 kB view hashes)

Uploaded Source

Built Distribution

pyxshells-2.8-py3-none-any.whl (23.9 kB view hashes)

Uploaded Python 3

Supported by

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