Skip to content

Commit dfdc8ff

Browse files
committed
Fix warning
1 parent 519c5e4 commit dfdc8ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/KiteUtils.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ Create a demo state, using the 4 point kite model with a given height and time.
253253
254254
Returns a SysState instance.
255255
"""
256-
function demo_state_4p(P, height=6.0, time=0.0; azimuth_north=-pi/2)
256+
function demo_state_4p(P, height=6.0, time=0.014; azimuth_north=-pi/2)
257257
ss = SysState{P+4}()
258258
a = 10
259259
turn_angle = azimuth_north+pi/2
@@ -300,7 +300,7 @@ function demo_state_4p(P, height=6.0, time=0.0; azimuth_north=-pi/2)
300300
ss.v_wind_gnd = [10.4855, 0, -3.08324]
301301
ss.v_wind_200m = [10.4855, 0, -3.08324]
302302
ss.v_wind_kite = [10.4855, 0, -3.08324]
303-
ss.t_sim = 0.014
303+
ss.t_sim = time
304304
ss
305305
end
306306

@@ -355,7 +355,7 @@ end
355355
"""
356356
export_log(flight_log; path="")
357357
358-
Save a fligh log of type SysLog as .csv file.
358+
Save a flight log of type SysLog as .csv file.
359359
"""
360360
function export_log(flight_log; path="")
361361
if path == ""

0 commit comments

Comments
 (0)