https://github.com/alopezrivera/huracan
Open source, 0-dimensional, object-oriented airbreathing engine modelling package for preliminary analysis and design of airbreathing engines, divulgation and educational purposes.
https://github.com/alopezrivera/huracan
aircraft engine modelling performance propulsion python
Last synced: 3 months ago
JSON representation
Open source, 0-dimensional, object-oriented airbreathing engine modelling package for preliminary analysis and design of airbreathing engines, divulgation and educational purposes.
- Host: GitHub
- URL: https://github.com/alopezrivera/huracan
- Owner: alopezrivera
- License: gpl-3.0
- Created: 2020-07-19T10:50:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-18T22:12:53.000Z (over 1 year ago)
- Last Synced: 2025-04-27T19:45:48.793Z (6 months ago)
- Topics: aircraft, engine, modelling, performance, propulsion, python
- Language: Python
- Homepage:
- Size: 4.89 MB
- Stars: 40
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Huracan
Huracan is an open source, 0-dimensional, object-oriented airbreathing engine
modelling package for preliminary analysis and design of airbreathing engines,
divulgation and educational purposes.At the moment Huracan is capable of modelling engines with an arbitrary number of
components connected by an arbitrary number of shafts. It allows for a single
combustion chamber per stream, reheating, intercooling and the addition of electrical
system power requirements. Multiple-stream systems can be modelled,
as well as splitting (such as the bypass flow of a turbofan) and mixing streams (such
as in the nozzle of a mixed exhaust turbofan).The inspiration for the project lies in traditional thermodynamic plant diagrams,
and similar architectures are used in well known proprietary tools such as
[GasTurb](https://www.gasturb.de/) and [NLR's GSP](https://www.gspteam.com/index.html).[The API reference is available here.](https://huracan-docs.github.io/)
## Install
pip install huracan
## Examples
### [Single spool turboprop engine.](https://github.com/alopezrivera/huracan/blob/master/examples/engines/turboprop/turboprop_1s-1s.py)
|
|
|
| --- | --- ||  |  |
| --- | --- |
|  |  |### [Twin-spool, reheated turbojet engine with an electrical power plant.](https://github.com/alopezrivera/huracan/blob/master/examples/engines/turbojet/turbojet_1s-2s-ab.py)
|
|
|
| --- | --- ||  |  |
| --- | --- |
|  |  |### [Three-spool, separated exhaust turbofan engine.](https://github.com/alopezrivera/huracan/blob/master/examples/engines/turbofan/turbofan_2s-3s.py)
|
|
|
| --- | --- ||  |  |
| --- | --- |
|  |  |---
[Back to top](#huracan)