EZyRB

EZyRB: Easy Reduced Basis method - Published in JOSS (2018)

https://github.com/mathlab/ezyrb

Science Score: 100.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 14 DOI reference(s) in README and JOSS metadata
  • Academic publication links
    Links to: arxiv.org, joss.theoj.org
  • Committers with academic emails
    2 of 21 committers (9.5%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Keywords

autoencoder data-driven hacktoberfest model-order-reduction model-reduction non-intrusive-model-order-reduction pod-gpr pod-interpolation pod-nn proper-orthogonal-decomposition reduced-basis

Keywords from Contributors

differential-equations equation-learning lightining neural-operators ode pde physics-informed physics-informed-neural-networks pinn pytorch-lightning

Scientific Fields

Economics Social Sciences - 60% confidence
Last synced: 4 months ago · JSON representation ·

Repository

Easy Reduced Basis method

Basic Info
Statistics
  • Stars: 86
  • Watchers: 12
  • Forks: 67
  • Open Issues: 10
  • Releases: 30
Topics
autoencoder data-driven hacktoberfest model-order-reduction model-reduction non-intrusive-model-order-reduction pod-gpr pod-interpolation pod-nn proper-orthogonal-decomposition reduced-basis
Created over 9 years ago · Last pushed 4 months ago
Metadata Files
Readme License Citation

README.md

Python Dynamic Mode Decomposition

JOSS DOI Software License PyPI version Build Status Coverage Status

EZyRB: Easy Reduced Basis method

Table of contents

Description

EZyRB is a Python package that performs a data-driven model order reduction for parametrized problems exploiting the recent approaches. Such techniques are able to provide a parametric model capable to provide the real-time approximation of the solution of a generic (potentially complex and non linear) problem. The reduced model is totally built upon the numerical data obtained by the original (to reduce) model, without requiring any knowledge of the equations that describe this model, resulting in a well suited framework for industrial contexts due to its natural capability to been integrated with commercial software.

The POD-based approach

Widely exploited in the reduced basis community, the Proper Orthogonal Decomposition (also called principal analysis components) results effective also in a data-driven context, reducing dimensionality of the input data. It has been indeed exploited in several methods, like POD with Interpolation (PODI), POD with Gaussian process regression (POD-GPR) or POD with neural network (POD-NN). More in general, in the data-driven context it is usually coupled with a generic regression/interpolation techniques for the approximation of the solution.

Simple interface

The software interface has been kept as simple and intuitive as possible. Few lines of code are sufficient to built and query the reduced model, assuming the input parameters and snapshots are already available. The following lines show a minimal but working example using PODI (RBF used as interpolation method): ```python from ezyrb import POD, RBF, Database from ezyrb import ReducedOrderModel as ROM

input

params, snapshots = extractparamsandsnapshots(...) # my input data newparam = input('The new parametric point where solution will be predicted: ')

db = Database(params, snapshots) pod = POD('svd') rbf = RBF()

rom = ROM(db, pod, rbf) rom.fit();

rom.predict(new_param) ```

The package provides different reduction methods and regressors. The high level structure of the library is represented here: ```mermaid classDiagram

ReducedOrderModel *-- Database ReducedOrderModel *-- Reduction ReducedOrderModel *-- Approximation

class ReducedOrderModel{ database reduction approximation +fit() +predict() +testerror() } class Database{
parameters snapshots +add() } class Reduction{
+fit() +transform() +inverse
transform() } class Approximation{
+fit() +predict() } ```

See the Examples section below and the Tutorials to have an idea of the potential of this package.

Dependencies and installation

EZyRB requires numpy, scipy, sklearn, matplotlib, torch, pytest (for local test) and sphinx (to generate the documentation). The code has been tested with Python3.5 version, but it should be compatible with Python3. It can be installed using pip or directly from the source code.

Installing from source

The official distribution is on GitHub, and you can clone the repository using ```bash

git clone https://github.com/mathLab/EZyRB ```

To install the latest version of the package just type: ```bash

pip install git+https://github.com/mathLab/EZyRB ```

Otherwise to install your own local branch you can use ```bash

pip install -e . ```

To uninstall the package just use pip again: ```bash

pip uninstall ezyrb ```

Documentation

EZyRB uses Sphinx for code documentation. To build the html versions of the docs simply:

```bash

cd docs make html ```

The generated html can be found in docs/build/html. Open up the index.html you find there to browse.

Testing

We are using the Github Actions for continuous intergration testing. You can check out the current status here.

To run tests locally:

```bash

pytest ```

Examples

You can find useful tutorials on how to use the package in the tutorials folder. Here we show an application taken from the automotive engineering field

The first POD modes of the pressure field on the DrivAer model.

DrivAer model online evaluation: pressure (left) and wall shear stress (right) fields and errors.

How to cite

If you use this package in your publications please cite the package as follows:

Demo et al., (2018). EZyRB: Easy Reduced Basis method. Journal of Open Source Software, 3(24), 661, https://doi.org/10.21105/joss.00661

Or if you use LaTeX:

tex @article{demo18ezyrb, Author = {Demo, Nicola and Tezzele, Marco and Rozza, Gianluigi}, Title = {{EZyRB: Easy Reduced Basis method}}, Journal = {The Journal of Open Source Software}, Volume = {3}, Number = {24}, Pages = {661}, Year = {2018}, Doi = {https://doi.org/10.21105/joss.00661} }

Recent works with EZyRB

Here there is a list of the scientific works involving EZyRB you can consult and/or cite. If you want to add one, please open a PR.

  • Tezzele, Demo, Rozza. A non-intrusive approach for proper orthogonal decomposition modal coefficients reconstruction through active subspaces. Comptes Rendus de l'Academie des Sciences DataBEST 2019 Special Issue, in press. [arXiv] [bibitem] .

  • Tezzele, Demo, Rozza. Shape optimization through proper orthogonal decomposition with interpolation and dynamic mode decomposition enhanced by active subspaces. In Proceedings of MARINE 2019: VIII International Conference on Computational Methods in Marine Engineering, pages 122-133, 2019. [DOI] [arXiv] [bibitem].

  • Demo, Tezzele, Mola, Rozza. A complete data-driven framework for the efficient solution of parametric shape design and optimisation in naval engineering problems. In Proceedings of MARINE 2019: VIII International Conference on Computational Methods in Marine Engineering, pages 111-121, 2019. [DOI] [arXiv] [bibitem].

  • Garotta, Demo, Tezzele, Carraturo, Reali, Rozza. Reduced Order Isogeometric Analysis Approach for PDEs in Parametrized Domains. Submitted, 2018. [arXiv] [bibitem].

  • Tezzele, Demo, Mola, Rozza. An integrated data-driven computational pipeline with model order reduction for industrial and applied mathematics. Submitted, 2018. [arXiv] [bibitem].

  • Salmoiraghi, Scardigli, Telib, Rozza. Free-form deformation, mesh morphing and reduced-order methods: enablers for efficient aerodynamic shape optimisation. International Journal of Computational Fluid Dynamics, 32:4-5, 233-247, 2018. [DOI] [arXiv] [bibitem].

  • Demo, Tezzele, Gustin, Lavini, Rozza. Shape optimization by means of proper orthogonal decomposition and dynamic mode decomposition. In Technology and Science for the Ships of the Future: Proceedings of NAV 2018: 19th International Conference on Ship & Maritime Research, 2018. [DOI] [arXiv] [bibitem].

Authors and contributors

EZyRB is currently developed and mantained at SISSA mathLab by * Nicola Demo * Marco Tezzele

under the supervision of Prof. Gianluigi Rozza. We thank Filippo Salmoiraghi for the original idea behind this package and the major contributions.

Contact us by email for further information or questions about EZyRB, or suggest pull requests. EZyRB is at an early development stage, so contributions improving either the code or the documentation are welcome!

How to contribute

We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow.

Submitting a patch

  1. It's generally best to start by opening a new issue describing the bug or feature you're intending to fix. Even if you think it's relatively minor, it's helpful to know what people are working on. Mention in the initial issue that you are planning to work on that bug or feature so that it can be assigned to you.

  2. Follow the normal process of forking the project, and setup a new branch to work in. It's important that each group of changes be done in separate branches in order to ensure that a pull request only includes the commits related to that bug or feature.

  3. To ensure properly formatted code, please make sure to use 4 spaces to indent the code. The easy way is to run on your bash the provided script: ./code_formatter.sh. You should also run pylint over your code. It's not strictly necessary that your code be completely "lint-free", but this will help you find common style issues.

  4. Any significant changes should almost always be accompanied by tests. The project already has good test coverage, so look at some of the existing tests if you're unsure how to go about it. We're using coveralls that is an invaluable tools for seeing which parts of your code aren't being exercised by your tests.

  5. Do your best to have well-formed commit messages for each change. This provides consistency throughout the project, and ensures that commit messages are able to be formatted properly by various git tools.

  6. Finally, push the commits to your fork and submit a pull request. Please, remember to rebase properly in order to maintain a clean, linear git history.

SISSA mathLab packages for reduced order modeling

Below you can find a list of useful reduced order modelling packages from SISSA mathLab group: * PyGeM: Python library for Geometrical Morphing, that uses free form deformation to parametrize and morph complex geometries, https://github.com/mathLab/PyGeM. * PyDMD: Python library for Dynamic Mode Decomposition, for a data-driven model simplification based on spatiotemporal coherent structures, https://github.com/mathLab/PyDMD. * RBniCS: reduced order modelling in FEniCS, is an implementation in FEniCS of several reduced order modelling techniques for parametrized problems, https://github.com/mathLab/RBniCS. * BladeX: Python Package for Blade Deformation, for geometrical parametrization and bottom-up construction of propeller blades, https://github.com/mathLab/BladeX. * ITHACA-FV: In real Time Highly Advanced Computational Applications for Finite Volumes, is C++ library based on the finite volume solver OpenFOAM. It consists of the implementation of several reduced order modeling techniques for parametrized problems, https://github.com/mathLab/ITHACA-FV. * ITHACA-DG: In real Time Highly Advanced Computational Applications for Discontinuous Galerkin Methods, is C++ library based on the Discontinuous Galerkin Methods solver HopeFOAM. It consists of the implementation of reduced order modeling techniques for parametrized problems, https://github.com/mathLab/ITHACA-DG. * ITHACA-SEM: In real Time Highly Advanced Computational Applications for Spectral Element Methods, is C++ library based on the spectral element solver Nektar++. It consists of the implementation of several reduced order modeling techniques for parametrized problems, https://github.com/mathLab/ITHACA-SEM.

License

See the LICENSE file for license rights and limitations (MIT).

Owner

  • Name: SISSA mathLab
  • Login: mathLab
  • Kind: organization
  • Email: luca.heltai@sissa.it
  • Location: Via Bonomea 265, 34133 Trieste, TS, Italy

Applied Mathematics Laboratory @ SISSA

JOSS Publication

EZyRB: Easy Reduced Basis method
Published
April 11, 2018
Volume 3, Issue 24, Page 661
Authors
Nicola Demo ORCID
Internation School of Advanced Studies, SISSA, Trieste, Italy
Marco Tezzele ORCID
Internation School of Advanced Studies, SISSA, Trieste, Italy
Gianluigi Rozza ORCID
Internation School of Advanced Studies, SISSA, Trieste, Italy
Editor
Arfon Smith ORCID
Tags
Model Order Reduction Proper Orthogonal Decomposition POD Interpolation

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Demo"
  given-names: "Nicola"
  orcid: "https://orcid.org/0000-0003-3107-9738"
- family-names: "Tezzele"
  given-names: "Marco"
  orcid: "https://orcid.org/0000-0001-9747-6328"
- family-names: "Rozza"
  given-names: "Gianluigi"
  orcid: "https://orcid.org/0000-0002-0810-8812"
title: "EZyRB: Easy Reduced Basis method"
version: 1.1.1
doi: 0.21105/joss.00661
date-released: 2018-04-11
url: "https://github.com/mathLab/EZyRB"

GitHub Events

Total
  • Issues event: 4
  • Watch event: 8
  • Issue comment event: 12
  • Push event: 3
  • Pull request event: 7
  • Fork event: 4
Last Year
  • Issues event: 4
  • Watch event: 8
  • Issue comment event: 12
  • Push event: 3
  • Pull request event: 7
  • Fork event: 4

Committers

Last synced: 5 months ago

All Time
  • Total Commits: 324
  • Total Committers: 21
  • Avg Commits per committer: 15.429
  • Development Distribution Score (DDS): 0.481
Past Year
  • Commits: 12
  • Committers: 4
  • Avg Commits per committer: 3.0
  • Development Distribution Score (DDS): 0.5
Top Committers
Name Email Commits
Nicola Demo d****a@g****m 168
Marco Tezzele m****z@g****m 52
fsalmoir f****r@s****t 31
francescoandreuzzi a****o@g****m 15
Florian Kroetz f****z@u****e 11
Karim Yehia Aly k****2@g****m 11
harshith-gowrachari h****h@g****m 7
Gianmarco Gurioli g****i@s****t 6
Florian Arbes f****s@i****o 4
giovastabile g****7@g****m 3
MMRROOO m****d@g****m 3
Davide Dal Cin 1****5 2
sigvaldm s****m@f****o 2
Anna Ivagnes 7****s 2
Pasquale Africa p****a@s****t 1
“[Harshith “****h@g****” 1
Nicola Demo n****o@h****t 1
Leonardo Scandurra s****r@h****e 1
Florian Kroetz f****z@b****t 1
Simone Amadio 4****o 1
davidhernandez-cea 1****a 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 27
  • Total pull requests: 96
  • Average time to close issues: 3 months
  • Average time to close pull requests: 17 days
  • Total issue authors: 8
  • Total pull request authors: 14
  • Average comments per issue: 0.56
  • Average comments per pull request: 0.4
  • Merged pull requests: 83
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 3
  • Pull requests: 11
  • Average time to close issues: about 2 months
  • Average time to close pull requests: about 1 month
  • Issue authors: 2
  • Pull request authors: 5
  • Average comments per issue: 1.33
  • Average comments per pull request: 0.55
  • Merged pull requests: 8
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • ndem0 (10)
  • mtezzele (5)
  • flabowski (3)
  • jacktang (2)
  • fAndreuzzi (2)
  • YuDe95 (2)
  • giovastabile (2)
  • annaivagnes (1)
Pull Request Authors
  • ndem0 (57)
  • karimyehia92 (7)
  • mtezzele (7)
  • MMRROOO (7)
  • harshith-gowrachari (4)
  • DavideDC95 (4)
  • giovastabile (3)
  • flabowski (3)
  • fAndreuzzi (3)
  • davidhernandez-cea (2)
  • annaivagnes (2)
  • pcafrica (2)
  • codacy-badger (1)
  • kshitij-maths (1)
Top Labels
Issue Labels
bug (9) enhancement (5) help wanted (3)
Pull Request Labels

Packages

  • Total packages: 2
  • Total downloads:
    • pypi 699 last-month
  • Total docker downloads: 104
  • Total dependent packages: 2
    (may contain duplicates)
  • Total dependent repositories: 1
    (may contain duplicates)
  • Total versions: 35
  • Total maintainers: 1
pypi.org: ezyrb

Easy Reduced Basis

  • Versions: 27
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 699 Last month
  • Docker Downloads: 104
Rankings
Dependent packages count: 3.2%
Docker downloads count: 3.8%
Forks count: 5.7%
Downloads: 7.3%
Average: 8.3%
Stargazers count: 8.4%
Dependent repos count: 21.6%
Maintainers (1)
Last synced: 4 months ago
conda-forge.org: ezyrb
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 24.5%
Dependent repos count: 34.0%
Average: 37.0%
Stargazers count: 38.3%
Dependent packages count: 51.2%
Last synced: 4 months ago

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
.github/workflows/create-release.yml actions
  • actions/checkout v2 composite
  • ncipollo/release-action v1 composite
.github/workflows/monthly-tag.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
.github/workflows/pypi-publish.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v1 composite
  • pypa/gh-action-pypi-publish master composite
.github/workflows/sphinx-build.yml actions
  • actions/checkout v2 composite
  • ammaraskar/sphinx-action master composite
  • peaceiris/actions-gh-pages v3 composite
.github/workflows/testing_pr.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
setup.py pypi