Metadata-Version: 2.1
Name: pycogent
Version: 0.0.1
Summary: Post-processing tools for COGENT plasma simulation code
Home-page: https://github.com/arknyazev/pycogent
Author: Alex Knyazev
Author-email: aknyazev@ucsd.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: h5py
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# PyCOGENT

This Python package is for post-processing results from plasma simulation code [COGENT](https://github.com/LLNL/COGENT).

## Installation 

Run the following command to install:

```python
pip install pycogent
```

## Usage

```python
import pycogent as pc

# import data from COGENT 4D-output file with adress 
# "folder/fileName.4d.hdf5", and save it to variable data
data = importData4D("folder/fileName.4d.hdf5")

```

## Help with developing

Tools required to develop pycogent and run tests can be installed with command:

```python
pip install pycogent[dev]
```

