Skip to content

Commit 1fdfe92

Browse files
committed
Decrease dt
1 parent 5c4a4ae commit 1fdfe92

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

examples/reel_out_4p_torque_control.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ using Printf
1212
set::Settings = deepcopy(load_settings("system.yaml"))
1313

1414
# the following values can be changed to match your interest
15-
dt::Float64 = 0.05
15+
dt::Float64 = 0.05/3
1616
set.solver="DFBDF" # IDA or DFBDF
17-
STEPS = 600
17+
STEPS = 600*3
1818
const PLOT = true
1919
FRONT_VIEW = false
2020
ZOOM = true
@@ -113,6 +113,9 @@ if PLOT
113113
reactivate_host_app()
114114
end
115115
println("Number of states: $(states(kps4))")
116+
println("Kite mass: $(set.mass) kg")
117+
println("KCU mass: $(set.kcu_mass) kg")
118+
println("Tether diameter: $(set.d_tether) mm")
116119
# savefig("docs/src/reelout_force_4p.png")
117120

118121
# Solver: DFBDF, reltol=0.000001

0 commit comments

Comments
 (0)