Metadata-Version: 2.1
Name: pycogent
Version: 0.0.3
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
Description: # 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 = pc.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]
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: dev
