Discrete controllers for Winches.
This package is part of Julia Kite Power Tools, which consists of the following packages:
The goal of this package is to provide controllers for winches that consist of a motor/generator connected to a drum (with or without gearbox). On the drum is a tether that is connected to a load or a kite. Currently operation in air is assumed, but the package could also be extended for winches connected to under-water cables. While the main use case of the author are airborne wind energy systems, I am open to add features needed for other use cases.
Implemented features:
- lower force control (assure that there is always a minimal cable tension)
- upper force control (keep the maximal force limited)
- reel-out speed control proportional to the square root of the force (other relationships can easily be added)
- control of asynchronous motors/ generators
- speed control
Planned features
- support of torque controlled winches
- length control (position control)
- integration of a quasi-steady tether model
- auto-tuning of the controller
Installation of Julia
If you do not have Julia installed yet, please read Installation.
Installation as package
It is suggested to use a local Julia environment. You can create it with:
mkdir myproject
cd myproject
julia --project=.
(don't forget typing the dot at the end), and then, on the Julia prompt enter:
using Pkg
pkg"add WinchControllers#main"
You can run the tests with:
using Pkg
pkg"test WinchControllers"
To add the examples and install the packages needed by the examples, run:
using WinchControllers
WinchControllers.install_examples()
exit()
Installation using git
In most cases -- if you want to modify, tune and understand kite controllers -- it is better to check out this project from git. You can do this with:
git clone https://github.com/opensourceawe/WinchControllers.jl.git
cd WinchControllers.jl
git checkout v0.5.0
For the checkout command, use the tag of the latest version.
- a set of generic control components, see Generic Components
- a winch controller WinchController, that limits the upper and lower force and controls the speed as function of the force
- a winch controller settings struct WCSettings for the settings
- Utility Functions and Macros
The WinchController combines the three controllers, mentioned above. It can be operated in two modes of operation:
- position control
- power production
In position control mode it requires a set speed as input. Upper and lower force limits are respected. In power production mode it does not require any input but the measured tether force. Output is the set speed of the asynchronous motor.
For a usage example look at the script test_winchcontroller.jl .
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 “KiteController.jl” (controllers for airborne wind energy systems) written by the Author(s).
Prof.dr. H.G.C. (Henri) Werij, Dean of Aerospace Engineering
A Methodology for the Design of Kite-Power Control Systems
If you like this software, please consider donating to https://gofund.me/df0ae77d .
- Research Fechner for the scientific background of this code
- The meta package KiteSimulators which contains all packages from Julia Kite Power Tools.
- the packages KiteModels and WinchModels and AtmosphericModels
- the packages KiteViewers and KiteUtils