The model has the following subcomponents, implemented in separate packages:
- AtmosphericModel from AtmosphericModels
- WinchModel from WinchModels
- KitePodModel from KitePodModels
This package is part of Julia Kite Power Tools, which consist of the following packages:
- a new groundstation / winch type is now supported, the
TorqueControlledMachine
. It can be configured in the sectionwinch
of thesettings.yaml
file. It uses a set torque as input. - a Python interfaces is now provided, see: pykitemodels
- added support for the native Julia DAE solver DFBDF. It is much more accurate and faster than the IDA solver that was used before.
If you want to run simulations and see the results in 3D, please install the meta package KiteSimulators . If you are not interested in 3D visualization or control you can just install this package.
Install Julia 1.10 or later using juliaup, if you haven't already. You can add KiteModels from Julia's package manager, by typing
using Pkg
pkg"add KiteModels"
at the Julia prompt. You can run the unit tests with the command:
pkg"test KiteModels"
This model assumes the kite to be a point mass. This is sufficient to model the aerodynamic forces, but the dynamic concerning the turning action of the kite is not realistic. When combined with a controller for the turn rate it can be used to simulate a pumping kite power system with medium accuracy.
This model assumes the kite to consist of four-point masses with aerodynamic forces acting on points B, C and D. It reacts much more realistically than the one-point model because it has rotational inertia in every axis.
The tether is modeled as point masses, connected by spring-damper elements. Aerodynamic drag is modeled realistically. When reeling out or in the unstreched length of the spring-damper elements is varied. This does not translate into physics directly, but it avoids adding point masses at run-time, which would be even worse because it would introduce discontinuities. When using Dyneema or similar high strength materials for the tether the resulting system is very stiff which is a challenge for the solver.
These models are described in detail in Dynamic Model of a Pumping Kite Power System.
If you check out this repository, you get a menu with all the examples by running:
include("examples/menu.jl")
If you want to replay old flight log files in 2D and 3D to understand and explain better how kite power systems work, please have a look at KiteViewer . How new log files can be created and replayed is explained in the documentation of KiteSimulators .
This project is licensed under the MIT License. Please see the below WAIVER in association with the license.
Technische Universiteit Delft hereby disclaims all copyright interest in the package “KiteModels.jl” (models for airborne wind energy systems) written by the Author(s).
Prof.dr. H.G.C. (Henri) Werij, Dean of Aerospace Engineering
If you like this software, please consider donating to Flood in Kenya .
- Research Fechner for the scientic background of this code
- The meta-package KiteSimulators
- the package KiteUtils
- the packages WinchModels and KitePodModels and AtmosphericModels
- the packages KiteControllers and KiteViewers
Documentation Stable Version --- Development Version
Author: Uwe Fechner ([email protected])