Skip to content

Commit 9c4e4cb

Browse files
committed
Update docu
1 parent 23d5b60 commit 9c4e4cb

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ makedocs(;
1717
"Home" => "index.md",
1818
"Types" => "types.md",
1919
"Functions" => "functions.md",
20+
"RamAirKite" => "ram_air_kite.md",
2021
"Parameters" => "parameters.md",
2122
"Examples_1p" => "examples.md",
2223
"Examples_4p" => "examples_4p.md",

docs/src/functions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ set_v_wind_ground!
2727
unstretched_length
2828
tether_length
2929
pos_kite
30+
calc_aoa
3031
calc_height
3132
calc_elevation
3233
calc_azimuth
@@ -63,6 +64,7 @@ residual!
6364
copy_examples
6465
copy_bin
6566
calc_drag
67+
calculate_rotational_inertia!
6668
calc_set_cl_cd!
6769
calc_aero_forces!
6870
calc_particle_forces!

docs/src/ram_air_kite.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
```@meta
2+
CurrentModule = KiteModels
3+
```
4+
## Introduction
5+
The RamAirKite is based on ModelingToolkit, which allows to define the differential algebraic equations in symbolic form.
6+
7+
## Types
8+
```@docs
9+
Point
10+
Pulley
11+
Segment
12+
Tether
13+
Winch
14+
KitePointGroup
15+
```
16+
17+
## Functions
18+
```@docs
19+
create_sys!
20+
diff_eqs!
21+
reinit!
22+
scalar_eqs!
23+
linear_vsm_eqs!
24+
force_eqs!
25+
```

0 commit comments

Comments
 (0)