@@ -200,7 +200,7 @@ the apparent wind speed.
200200
201201Parameters:
202202- `vec_c`: (`pos_n`-2) - (`pos_n`-1) n: number of particles without the three kite particles
203- that do not belong to the main thether (P1, P2 and P3).
203+ that do not belong to the main tether (P1, P2 and P3).
204204- `v_app`: vector of the apparent wind speed
205205
206206Returns:
217217 get_particles(height_k, height_b, width, m_k, pos_pod= [ 75., 0., 129.90381057], vec_c=[-15., 0., -25.98076211],
218218 v_app=[10.4855, 0, -3.08324])
219219
220- Calculate the initial positions of the particels representing
220+ Calculate the initial positions of the particles representing
221221a 4-point kite, connected to a kite control unit (KCU).
222222
223223Parameters:
@@ -238,7 +238,7 @@ function get_particles(height_k, height_b, width, m_k, pos_pod= [ 75., 0., 129.9
238238 h_kz = height_k * sin (beta); # print 'h_kz: ', h_kz
239239 h_bx = height_b * cos (beta)
240240 h_bz = height_b * sin (beta)
241- pos_kite = pos_pod - (h_kz + h_bz) * z + (h_kx + h_bx) * x # top, poing B in diagram
241+ pos_kite = pos_pod - (h_kz + h_bz) * z + (h_kx + h_bx) * x # top, point B in diagram
242242 pos_C = pos_kite + h_kz * z + 0.5 * width * y + h_kx * x # side point, point C in diagram
243243 pos_A = pos_kite + h_kz * z + (h_kx + width * m_k) * x # nose, point A in diagram
244244 pos_D = pos_kite + h_kz * z - 0.5 * width * y + h_kx * x # side point, point D in diagram
337337"""
338338 save_log(flight_log::SysLog, compress=true; path="")
339339
340- Save a fligh log of type SysLog as .arrow file. By default lz4 compression is used,
340+ Save a flight log of type SysLog as .arrow file. By default lz4 compression is used,
341341if you use **false** as second parameter no compression is used.
342342"""
343343function save_log (flight_log:: SysLog , compress= true ; path= " " )
0 commit comments