Skip to content

ufechner7/KiteModels.jl

Repository files navigation

KiteModels

Stable Dev CI Coverage

Kite power system models, consisting of tether and kite

The model has the following subcomponents, implemented in separate packages:

This package is part of Julia Kite Power Tools, which consist of the following packages:

What to install

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.

Installation

Download Julia 1.9 or later, 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"

One point model

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.

Four point model

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.

Tether

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.

Further reading

These models are described in detail in Dynamic Model of a Pumping Kite Power System.

Replaying log files

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 .

See also

Documentation Stable Version --- Development Version

Author: Uwe Fechner (uwe.fechner.msc@gmail.com)