OpenConcept - A conceptual design toolkit with efficient gradients implemented in the OpenMDAO framework
OpenConcept is a new toolkit for the conceptual design of aircraft. OpenConcept was developed in order to model and optimize aircraft with electric propulsion at low computational cost. The tools are built on top of NASA Glenn's OpenMDAO framework, which in turn is written in Python.
The following charts show more than 250 individually optimized hybrid-electric light twin aircraft (similar to a King Air C90GT). Optimizing hundreds of configurations can be done in a couple of hours on a standard laptop computer.
The reason for OpenConcept's efficiency is the analytic derivatives built into each analysis routine and component. Accurate, efficient derivatives enable the use of Newton nonlinear equation solutions and gradient-based optimization at low computational cost.
Automatically-generated documentation is available at (https://openconcept.readthedocs.io)
- Clone the repo to disk
- Navigate to the root
openconcept
folder - Run
pip install -e .
to install the package (the-e
can be omitted if not editing the source) - Navigate to the
examples
folder - Run
python TBM850.py
to test OpenConcept on a single-engine turboprop aircraft (the TBM 850) - Look at the
examples/aircraft data/TBM850.py
folder to play with the assumptions / config / geometry and see the effects on the output result
examples/HybridTwin.py
is set up to do MDO in a grid of specific energies and design ranges and save the results to disk. Visualization utilities will be added soon (to produce contour plots as shown in this Readme)
This toolkit requires the use of OpenMDAO 3.10.0 or later. OpenMDAO requires a late NumPy and SciPy.
Please cite this software by reference to the conference paper:
Benjamin J. Brelje and Joaquim R.R.A. Martins, "Development of a Conceptual Design Model for Aircraft Electric Propulsion with Efficient Gradients", 2018 AIAA/IEEE Electric Aircraft Technologies Symposium, AIAA Propulsion and Energy Forum, (AIAA 2018-4979) DOI: 10.2514/6.2018-4979
@inproceedings{Brelje2018a,
address = {{C}incinnati,~{OH}},
author = {Benjamin J. Brelje and Joaquim R. R. A. Martins},
booktitle = {Proceedings of the AIAA/IEEE Electric Aircraft Technologies Symposium},
doi = {10.2514/6.2018-4979},
month = {July},
title = {Development of a Conceptual Design Model for Aircraft Electric Propulsion with Efficient Gradients},
year = {2018}
}
If using the integrated OpenAeroStruct VLM or aerostructural aerodynamic models, please cite the following conference paper:
Eytan J. Adler and Joaquim R.R.A. Martins, "Aerostructural wing design optimization considering full mission analysis", 2022 AIAA SciTech Forum, San Diego, CA, January 2022. DOI: 10.2514/6.2022-0382
@inproceedings{Adler2022a,
author = {Eytan J. Adler and Joaquim R. R. A. Martins},
title = {Aerostructural wing design optimization considering full mission analysis},
booktitle = {AIAA SciTech Forum},
doi = {10.2514/6.2022-0382},
month = {January},
year = {2022}
}
A contributor's guide is coming third (after completing documentation and automatic testing). I'm open to pull requests and issues in the meantime. Stay tuned.