Metadata-Version: 1.2
Name: pressio4py
Version: 0.6.1rc1
Summary: pressio4py: projection-based model reduction for Python
Home-page: UNKNOWN
Author: Francesco Rizzi
Author-email: fnrizzi@sandia.gov
License: UNKNOWN
Project-URL: Documentation, https://pressio.github.io/pressio4py/html/index.html
Project-URL: Source, https://github.com/Pressio/pressio4py
Description: pressio4py: Projection-based Model Reduction for Scientific Computing
        =====================================================================
        
        This package provides Python bindings for the
        **projection-based model reduction** C++ library Pressio (website_).
        The goal of this project is to enable leading-edge projection-based model
        reduction for (large-scale) linear and nonlinear dynamical systems.
        
        .. _website: https://pressio.github.io/pressio/html/index.html
        
        
        Install
        -------
        
        You need a C++14-compliant compiler and then do:
        
        .. code-block:: bash
        
          export CXX=<path-to-your-C++-compiler>
          pip3 install --no-binary :all: -i https://test.pypi.org/simple/ pressio4py
        
        
        Or you can try to use `pip` directly:
        
        .. code-block:: bash
        
          pip install pressio4py
        
        
        
        You can double check that everything worked fine by doing:
        
        .. code-block:: python
        
          import pressio4py
          print(pressio4py.__version__)
        
        
        
        Running Demos/Tutorials
        -----------------------
        
        After installing the library, you can check run the regression tests:
        
        .. code-block:: bash
        
          git clone git@github.com:Pressio/pressio4py.git
          cd pressio4py/regression_tests
          pytest -s
        
        
        And you can check out the demos:
        
        .. code-block:: bash
        
          git clone git@github.com:Pressio/pressio4py.git
          cd pressio4py/demos
          python3 ./<demo-subdir-name>/main.py
        
        
        Documentation
        -------------
        
        The documentation (in progress) can be found (here_) with some demos already available.
        
        .. _here: https://pressio.github.io/pressio4py/html/index.html
        
        
        Citations
        ---------
        
        If you use this package, please acknowledge our work-in-progress:
        
        * Francesco Rizzi, Patrick J. Blonigan, Eric. Parish, Kevin T. Carlberg
          "Pressio: Enabling projection-based model reduction for large-scale nonlinear dynamical systems"
          https://arxiv.org/abs/2003.07798
        
Keywords: model reduction,scientific computing,dense linear algebra,HPC
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Environment :: MacOS X
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Software Development :: Libraries
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3
