Metadata-Version: 2.1
Name: NavierStokes
Version: 0.2.1
Summary: Navier Stokes Calculator
Home-page: http://rickykim.net
Author: Kyu Mok (Ricky) Kim
Author-email: rickykim93@hotmail.com
License: UNKNOWN
Description: # NavierStokes
        Pre v.1.0.0 Release  - Still in development
        This is a Navier Stokes calculator which is used
        in computational fluid dynamics.
        This is the same formula that ANSYS Fluent uses.
        
        ## Getting Started
        
        ### Prerequisites
        * `Numpy`
        * `Scipy`
        * `MatplotLib`
        
        ### Installing
        ```python
        pip install NavierStokes
        ```
        To upgrade:
        ```python
        pip install NavierStokes -U
        ```
        
        ## Running the tests
        Requires `pytest`
        ```python
        python -m unittest tests.test_TDMAsolver
        ```
        
        ## Documentation
        The documentation for:
        * [Command Line Functions]()
        * [TDMA (Tridiagnal Matrix Algorithm)]()
        
        ## Example - See it in Action!
        [This page](WIP) uses this module.
        
        ## Contributing
        All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.
        
        Report all bugs and issues to [this page](https://github.com/rickykim93/NavierStokes/issues)
        
        ## Versioning
        I use [SemVer](https://semver.org) for versioning.
        For the versions available, see the [tags on this repository](https://github.com/rickykim93/NavierStokes/releases)
        
        ## Authors
        * Kyu Mok (Ricky) Kim - Initial work - [website](https://rickykim.net), [github](https://github.com/rickykim93)
        
        ## License
        This project is licensed under the MIT License - see the [License](https://github.com/rickykim93/NavierStokes/blob/master/LICENSE)
        file for details.
        
        ## Acknowledgements
        * MIE 1210: Computational Fluid Mechanics - Course from University of Toronto
        for teaching me Navier Stokes equations and how to implement them
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
