BladeX

BladeX: Python Blade Morphing - Published in JOSS (2019)

https://github.com/mathlab/bladex

Science Score: 98.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 8 DOI reference(s) in README and JOSS metadata
  • Academic publication links
    Links to: arxiv.org, joss.theoj.org
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Keywords

blade hacktoberfest iges naca procal propeller

Keywords from Contributors

autoencoder data-driven model-order-reduction model-reduction non-intrusive-model-order-reduction pod-gpr pod-interpolation pod-nn proper-orthogonal-decomposition reduced-basis
Last synced: 6 months ago · JSON representation ·

Repository

BladeX - Python Blade Morphing

Basic Info
Statistics
  • Stars: 76
  • Watchers: 14
  • Forks: 32
  • Open Issues: 10
  • Releases: 1
Topics
blade hacktoberfest iges naca procal propeller
Created almost 8 years ago · Last pushed 10 months ago
Metadata Files
Readme License Citation

README.md

Python Package for Blade Deformation

JOSS DOI Software License Build Status Coverage Status Codacy Badge

BladeX (Python Blade Morphing) is a Python package for geometrical parametrization and bottom-up construction of propeller blades. It allows to generate and deform a blade based on the radial distribution of its parameters.

Table of contents

Description

BladeX is a Python package for geometrical parametrization and bottom-up construction of propeller blades. It allows to generate and deform a blade based on the radial distribution of its parameters such as pitch, rake, skew, and the sectional foils' parameters such as chord and camber. The package is ideally suited for parametric simulations on large number of blade deformations. It provides an automated procedure for the CAD generation, hence reducing the time and effort required for modelling. The main scope of BladeX is to deal with propeller blades, however it can be flexible to be applied on further applications with analogous geometrical structures such as aircraft wings, turbomachinery, or wind turbine blades.

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

Dependencies and installation

BladeX requires numpy, scipy, matplotlib, sphinx (for the documentation), and pytest (for the local test). They can be easily installed using pip. BladeX is compatible with Python 3.6. Moreover, some of the modules require OCC to be installed for the .iges or .stl CAD generation. This requirement cannot be satisfied through pip, but the precompiled binaries are available on conda using the command:

```bash

conda install -c conda-forge pythonocc-core=7.4.0 ```

You can also refer to pythonocc.org or github.com/tpaviot/pythonocc-core for further instructions.

Installing from source

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

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

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

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

Otherwise to install your own local branch you can use the setup.py file ```bash

pip install -e . ```

To uninstall the package just use pip again:

```bash

pip uninstall bladex ```

Documentation

BladeX uses Sphinx for code documentation. You can view the documentation online here. To build the html version of the docs locally 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 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 a bottom-up parametrized construction of the Potsdam Propeller Test Case (PPTC) provided the sectional profiles as well as the radial distribution of the pitch, rake, skew. The blade is generated and exported to .iges and .stl formats.

PPTC blade generation according to the radial distribution of the pitch, rake, skew. The generated blade is then exported to .iges and .stl formats.

Two possible deformed geometry configurations, to show the capabilities of the package, are presented here:

Undeformed reference blade on the left, and a couple of deformed configurations obtained by moving some control points defining the skew and chord length radial distributions.

How to cite

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

Gadalla et al., (2019). BladeX: Python Blade Morphing. Journal of Open Source Software, 4(34), 1203, https://doi.org/10.21105/joss.01203

Or if you use LaTeX: tex @article{gadalla19bladex, Author = {Gadalla, Mahmoud and Tezzele, Marco and Mola, Andrea and Rozza, Gianluigi}, Title = {{BladeX: Python Blade Morphing}}, Journal = {The Journal of Open Source Software}, Volume = {4}, Number = {34}, Pages = {1203}, Year = {2019}, Doi = {https://doi.org/10.21105/joss.01203} }

Recent works with BladeX

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

  • Mola, Tezzele, Gadalla, Valdenazzi, Grassi, Padovan, Rozza. Efficient reduction in shape parameter space dimension for ship propeller blade design. In Proceedings of MARINE 2019: VIII International Conference on Computational Methods in Marine Engineering, pages 201–212, 2019. [DOI] [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].

Authors and contributors

BladeX is currently developed and mantained at SISSA mathLab by * Mahmoud Gadalla * Marco Tezzele

under the supervision of Dr. Andrea Mola and Prof. Gianluigi Rozza in the framework of the project PRELICA: Advanced Methodologies for Hydro-acoustic Design of Naval Propulsion.

Support

Contact us by email for further information or questions about BladeX. Feel free to suggest pull requests or to open GitHub issues. 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. * EZyRB: Easy Reduced Basis method, is a python library for the Model Order Reduction based on baricentric triangulation for the selection of the parameter points and on Proper Orthogonal Decomposition for the selection of the modes, https://github.com/mathLab/EZyRB. * 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

BladeX: Python Blade Morphing
Published
February 04, 2019
Volume 4, Issue 34, Page 1203
Authors
Mahmoud Gadalla ORCID
International School of Advanced Studies, SISSA, Trieste, Italy
Marco Tezzele ORCID
International School of Advanced Studies, SISSA, Trieste, Italy
Andrea Mola ORCID
International School of Advanced Studies, SISSA, Trieste, Italy
Gianluigi Rozza ORCID
International School of Advanced Studies, SISSA, Trieste, Italy
Editor
Lorena A Barba ORCID
Tags
Blade construction Blade morphing CAD files

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Gadalla"
  given-names: "Mahmoud"
  orcid: "https://orcid.org/0000-0001-9507-9468"
- family-names: "Tezzele"
  given-names: "Marco"
  orcid: "https://orcid.org/0000-0001-9747-6328"
- family-names: "Mola"
  given-names: "Andrea"
  orcid: "https://orcid.org/0000-0002-4483-0212"
- family-names: "Rozza"
  given-names: "Gianluigi"
  orcid: "https://orcid.org/0000-0002-0810-8812"
title: "BladeX: Python Blade Morphing"
version: 0.1
doi: 10.21105/joss.01203
date-released: 2019-02-4
url: "https://github.com/mathLab/BladeX"

GitHub Events

Total
  • Watch event: 7
  • Delete event: 1
  • Member event: 1
  • Push event: 11
  • Pull request event: 6
  • Fork event: 3
  • Create event: 2
Last Year
  • Watch event: 7
  • Delete event: 1
  • Member event: 1
  • Push event: 11
  • Pull request event: 6
  • Fork event: 3
  • Create event: 2

Committers

Last synced: 7 months ago

All Time
  • Total Commits: 135
  • Total Committers: 10
  • Avg Commits per committer: 13.5
  • Development Distribution Score (DDS): 0.704
Past Year
  • Commits: 2
  • Committers: 2
  • Avg Commits per committer: 1.0
  • Development Distribution Score (DDS): 0.5
Top Committers
Name Email Commits
Marco Tezzele m****z@g****m 40
mgadalla g****h@g****m 28
Nicola Demo d****a@g****m 21
aivagnes a****s@s****t 20
Gianmarco Gurioli g****i@s****t 20
Francesco Andreuzzi a****o@g****m 2
twisterbboy 5****y 1
Giulio Ortali 4****i 1
Anna Ivagnes 7****1 1
Gadalla Mahmoud g****1@t****i 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 19
  • Total pull requests: 86
  • Average time to close issues: 25 days
  • Average time to close pull requests: 3 days
  • Total issue authors: 6
  • Total pull request authors: 9
  • Average comments per issue: 0.58
  • Average comments per pull request: 0.07
  • Merged pull requests: 76
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 7
  • Average time to close issues: N/A
  • Average time to close pull requests: 14 days
  • Issue authors: 0
  • Pull request authors: 2
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 3
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • ndem0 (8)
  • mtezzele (4)
  • stefano2734 (2)
  • astrojuanlu (2)
  • annaivagnes (2)
  • fandreuz (1)
Pull Request Authors
  • mtezzele (26)
  • mahgadalla (21)
  • ndem0 (14)
  • ggurioli (11)
  • annaivagnes (7)
  • fandreuz (2)
  • twisterbboy (2)
  • gortali (2)
  • endelgado (1)
Top Labels
Issue Labels
bug (2) enhancement (2)
Pull Request Labels