Metadata-Version: 2.1
Name: pymech
Version: 1.4.1
Summary: A Python suite of routines for Nek5000 and Simson.
Home-page: https://github.com/eX-Mech/pymech
Author: eX-Mech Developers
Author-email: jacopo.canton@gmail.com
License: GNU General Public License v3 or later (GPLv3+)
Project-URL: documentation, https://pymech.readthedocs.io
Description: [![Build Status](https://travis-ci.org/eX-Mech/pymech.svg?branch=master)](https://travis-ci.org/eX-Mech/pymech/builds)
        [![Coverage Status](https://coveralls.io/repos/github/eX-Mech/pymech/badge.png?branch=master)](https://coveralls.io/github/eX-Mech/pymech?branch=master)
        [![Documentation Status](https://readthedocs.org/projects/pymech/badge/?version=latest)](http://pymech.readthedocs.org/en/latest/?badge=latest)
        
        # pymech
        
        A Python suite of routines for *Nek5000* and *Simson*. Install with:
        
        ```
        pip install pymech
        ```
        
        Read the full documentation at [Pymech doc](http://pymech.readthedocs.io).
        
        ## Getting started
        
        For some quick wins, download some sample data
        
        ```sh
        curl -LO https://github.com/eX-Mech/pymech/raw/master/tests/nek/channel3D_0.f00001
        ```
        
        Fire up a Python / IPython console and execute:
        
        ```py
        import matplotlib as pyplot
        import pymech as pm
        ds = pm.open_dataset('channel3D_0.f00001')
        ds.mean(['x', 'z']).ux.plot()
        plt.show()
        ```
        
        You should see something like
        
        ![](https://pymech.readthedocs.io/en/latest/_images/usage_33_1.png)
        
        For an overview of how to use pymech, [follow the usage
        documentation](https://pymech.readthedocs.io/en/latest/usage.html).
        
        ## Contributing
        
        Found something that does not work? Want to add a new feature to pymech? Have a
        look at [contributing
        guidelines](https://pymech.readthedocs.io/en/latest/contributing.html).
        
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: full
Provides-Extra: docs
Provides-Extra: tests
Provides-Extra: dev
