[ANN] VortexStepMethod.jl Aerodynamic models of 3D wings using the Vortex Step Method

The Vortex Step Method (VSM) is an enhanced lifting line method that improves upon the classic approach by solving the circulation system at the three-quarter chord position, among the most important details. This adjustment allows for more accurate calculations of lift and drag forces, particularly addressing the shortcomings in induced drag prediction. VSM is further refined by coupling it with 2D viscous airfoil polars, making it well-suited for complex geometries, including low aspect ratio wings, as well as configurations with sweep, dihedral, and anhedral angles.

The software presented here includes a couple of examples: a rectangular wing, a leading-edge inflatable kite and a ram-air kite.

This package was translated from the Python code version 1.0.0 available at GitHub - ocayon/Vortex-Step-Method: Vortex Step Method with some extensions as documented in News.md.

The performance is very good. A call to solve() with a simple geometry needs only 600µs on a Ryzen 7950X, therefore it can be used for simulations running faster than realtime.

9 Likes

Great work! Thanks for making this code, originally witten by Oriol Cayon and Jelle Poland from TU Delft in Python, available in Julia.

The documentation is available at: Home · VortexStepMethod.jl

Thank you for helping me a lot with the development for the package!

Impressive work! Does it use ModelingToolkit.jl for the implementation?

Thanks! It doesn’t use ModelingToolkit: in order to make translating the python code to Julia easier, I stuck to the python source code as closely as possible, using structs instead of python classes.

1 Like