2022-10-26 00:48:24 -03:00
|
|
|
--[[
|
|
|
|
trajectory tracking aerobatic control
|
|
|
|
See README.md for usage
|
|
|
|
Written by Matthew Hampsey, Andy Palmer and Andrew Tridgell, with controller
|
|
|
|
assistance from Paul Riseborough, testing by Henry Wurzburg
|
2022-09-15 00:52:13 -03:00
|
|
|
]]--
|
|
|
|
|
|
|
|
-- setup param block for aerobatics, reserving 30 params beginning with AERO_
|
|
|
|
local PARAM_TABLE_KEY = 70
|
|
|
|
local PARAM_TABLE_PREFIX = 'AEROM_'
|
|
|
|
assert(param:add_table(PARAM_TABLE_KEY, "AEROM_", 30), 'could not add param table')
|
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
-- add a parameter and bind it to a variable
|
2022-09-15 00:52:13 -03:00
|
|
|
function bind_add_param(name, idx, default_value)
|
2022-10-06 03:05:31 -03:00
|
|
|
assert(param:add_param(PARAM_TABLE_KEY, idx, name, default_value), string.format('could not add param %s', name))
|
|
|
|
return Parameter(PARAM_TABLE_PREFIX .. name)
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
|
2022-11-05 01:11:44 -03:00
|
|
|
AEROM_ANG_ACCEL = bind_add_param('ANG_ACCEL', 1, 6000)
|
2022-11-05 05:11:24 -03:00
|
|
|
AEROM_ANG_TC = bind_add_param('ANG_TC', 2, 0.1)
|
|
|
|
AEROM_KE_ANG = bind_add_param('KE_ANG', 3, 0)
|
2022-10-06 03:05:31 -03:00
|
|
|
THR_PIT_FF = bind_add_param('THR_PIT_FF', 4, 80)
|
|
|
|
SPD_P = bind_add_param('SPD_P', 5, 5)
|
|
|
|
SPD_I = bind_add_param('SPD_I', 6, 25)
|
|
|
|
ERR_CORR_TC = bind_add_param('ERR_COR_TC', 7, 3)
|
|
|
|
ROLL_CORR_TC = bind_add_param('ROL_COR_TC', 8, 0.25)
|
2022-11-07 22:10:00 -04:00
|
|
|
-- removed 9 and 10
|
2022-10-06 03:05:31 -03:00
|
|
|
TIME_CORR_P = bind_add_param('TIME_COR_P', 11, 1.0)
|
|
|
|
ERR_CORR_P = bind_add_param('ERR_COR_P', 12, 2.0)
|
|
|
|
ERR_CORR_D = bind_add_param('ERR_COR_D', 13, 2.8)
|
2022-10-27 00:30:55 -03:00
|
|
|
AEROM_ENTRY_RATE = bind_add_param('ENTRY_RATE', 14, 60)
|
2022-10-27 17:44:36 -03:00
|
|
|
AEROM_THR_LKAHD = bind_add_param('THR_LKAHD', 15, 1)
|
2022-10-28 02:32:39 -03:00
|
|
|
AEROM_DEBUG = bind_add_param('DEBUG', 16, 0)
|
2022-11-04 22:07:15 -03:00
|
|
|
|
|
|
|
-- cope with old param values
|
2022-11-05 04:07:46 -03:00
|
|
|
if AEROM_ANG_ACCEL:get() < 100 and AEROM_ANG_ACCEL:get() > 0 then
|
2022-11-04 22:07:15 -03:00
|
|
|
AEROM_ANG_ACCEL:set_and_save(3000)
|
|
|
|
end
|
2022-11-05 04:07:46 -03:00
|
|
|
if AEROM_ANG_TC:get() > 1.0 then
|
|
|
|
AEROM_ANG_TC:set_and_save(0.2)
|
|
|
|
end
|
2022-11-04 22:07:15 -03:00
|
|
|
|
2022-11-01 22:16:24 -03:00
|
|
|
ACRO_ROLL_RATE = Parameter("ACRO_ROLL_RATE")
|
2022-11-04 22:07:15 -03:00
|
|
|
ARSPD_FBW_MIN = Parameter("ARSPD_FBW_MIN")
|
|
|
|
SCALING_SPEED = Parameter("SCALING_SPEED")
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-05 02:10:45 -03:00
|
|
|
local GRAVITY_MSS = 9.80665
|
|
|
|
|
2022-10-25 02:43:03 -03:00
|
|
|
--[[
|
|
|
|
Aerobatic tricks on a switch support - allows for tricks to be initiated outside AUTO mode
|
|
|
|
--]]
|
|
|
|
-- 2nd param table for tricks on a switch
|
|
|
|
local PARAM_TABLE_KEY2 = 71
|
|
|
|
local PARAM_TABLE_PREFIX2 = "TRIK"
|
|
|
|
assert(param:add_table(PARAM_TABLE_KEY2, PARAM_TABLE_PREFIX2, 63), 'could not add param table2')
|
|
|
|
|
|
|
|
-- add a parameter and bind it to a variable in table2
|
|
|
|
function bind_add_param2(name, idx, default_value)
|
|
|
|
assert(param:add_param(PARAM_TABLE_KEY2, idx, name, default_value), string.format('could not add param %s', name))
|
|
|
|
return Parameter(PARAM_TABLE_PREFIX2 .. name)
|
|
|
|
end
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-25 02:43:03 -03:00
|
|
|
local TRIK_ENABLE = bind_add_param2("_ENABLE", 1, 0)
|
|
|
|
local TRICKS = nil
|
|
|
|
local TRIK_SEL_FN = nil
|
|
|
|
local TRIK_ACT_FN = nil
|
|
|
|
local TRIK_COUNT = nil
|
|
|
|
|
|
|
|
local function TrickDef(id, arg1, arg2, arg3, arg4)
|
|
|
|
local self = {}
|
|
|
|
self.id = id
|
|
|
|
self.args = {arg1, arg2, arg3, arg4}
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
|
|
|
-- constrain a value between limits
|
|
|
|
function constrain(v, vmin, vmax)
|
|
|
|
if v < vmin then
|
|
|
|
v = vmin
|
|
|
|
end
|
|
|
|
if v > vmax then
|
|
|
|
v = vmax
|
|
|
|
end
|
|
|
|
return v
|
|
|
|
end
|
|
|
|
|
|
|
|
if TRIK_ENABLE:get() > 0 then
|
|
|
|
TRIK_SEL_FN = bind_add_param2("_SEL_FN", 2, 301)
|
|
|
|
TRIK_ACT_FN = bind_add_param2("_ACT_FN", 3, 300)
|
|
|
|
TRIK_COUNT = bind_add_param2("_COUNT", 4, 3)
|
|
|
|
TRICKS = {}
|
|
|
|
|
|
|
|
-- setup parameters for tricks
|
|
|
|
local count = math.floor(constrain(TRIK_COUNT:get(),1,11))
|
|
|
|
for i = 1, count do
|
|
|
|
local k = 5*i
|
|
|
|
local prefix = string.format("%u", i)
|
|
|
|
TRICKS[i] = TrickDef(bind_add_param2(prefix .. "_ID", k+0, i),
|
|
|
|
bind_add_param2(prefix .. "_ARG1", k+1, 30),
|
|
|
|
bind_add_param2(prefix .. "_ARG2", k+2, 0),
|
|
|
|
bind_add_param2(prefix .. "_ARG3", k+3, 0),
|
|
|
|
bind_add_param2(prefix .. "_ARG4", k+4, 0))
|
|
|
|
end
|
|
|
|
gcs:send_text(0, string.format("Enabled %u aerobatic tricks", TRIK_COUNT:get()))
|
2022-10-06 03:05:31 -03:00
|
|
|
end
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
local NAV_TAKEOFF = 22
|
|
|
|
local NAV_WAYPOINT = 16
|
|
|
|
local NAV_SCRIPT_TIME = 42702
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-25 02:43:03 -03:00
|
|
|
local MODE_AUTO = 10
|
|
|
|
|
2022-11-06 02:53:20 -04:00
|
|
|
local LOOP_RATE = 20
|
2022-10-25 02:43:03 -03:00
|
|
|
local DO_JUMP = 177
|
|
|
|
local k_throttle = 70
|
2022-10-29 04:43:31 -03:00
|
|
|
local NAME_FLOAT_RATE = 2
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
local TRIM_ARSPD_CM = Parameter("TRIM_ARSPD_CM")
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
local last_id = 0
|
2022-10-25 02:43:03 -03:00
|
|
|
local current_task = nil
|
2022-10-29 04:43:31 -03:00
|
|
|
local last_named_float_t = 0
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-26 17:19:29 -03:00
|
|
|
local path_var = {}
|
|
|
|
|
2022-09-15 00:52:13 -03:00
|
|
|
function wrap_360(angle)
|
|
|
|
local res = math.fmod(angle, 360.0)
|
|
|
|
if res < 0 then
|
|
|
|
res = res + 360.0
|
|
|
|
end
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
|
|
|
function wrap_180(angle)
|
|
|
|
local res = wrap_360(angle)
|
|
|
|
if res > 180 then
|
|
|
|
res = res - 360
|
|
|
|
end
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
|
|
|
function wrap_pi(angle)
|
|
|
|
local angle_deg = math.deg(angle)
|
|
|
|
local angle_wrapped = wrap_180(angle_deg)
|
|
|
|
return math.rad(angle_wrapped)
|
|
|
|
end
|
|
|
|
|
|
|
|
function wrap_2pi(angle)
|
|
|
|
local angle_deg = math.deg(angle)
|
|
|
|
local angle_wrapped = wrap_360(angle_deg)
|
|
|
|
return math.rad(angle_wrapped)
|
|
|
|
end
|
|
|
|
|
2022-11-05 04:07:46 -03:00
|
|
|
|
|
|
|
--[[
|
|
|
|
calculate an alpha for a first order low pass filter
|
|
|
|
--]]
|
|
|
|
function calc_lowpass_alpha(dt, time_constant)
|
|
|
|
local rc = time_constant/(math.pi*2)
|
|
|
|
return dt/(dt+rc)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2022-09-15 00:52:13 -03:00
|
|
|
-- a PI controller implemented as a Lua object
|
|
|
|
local function PI_controller(kP,kI,iMax)
|
|
|
|
-- the new instance. You can put public variables inside this self
|
|
|
|
-- declaration if you want to
|
|
|
|
local self = {}
|
|
|
|
|
|
|
|
-- private fields as locals
|
|
|
|
local _kP = kP or 0.0
|
|
|
|
local _kI = kI or 0.0
|
|
|
|
local _kD = kD or 0.0
|
|
|
|
local _iMax = iMax
|
|
|
|
local _last_t = nil
|
|
|
|
local _I = 0
|
|
|
|
local _P = 0
|
|
|
|
local _total = 0
|
|
|
|
local _counter = 0
|
|
|
|
local _target = 0
|
|
|
|
local _current = 0
|
|
|
|
|
|
|
|
-- update the controller.
|
|
|
|
function self.update(target, current)
|
|
|
|
local now = millis():tofloat() * 0.001
|
|
|
|
if not _last_t then
|
|
|
|
_last_t = now
|
|
|
|
end
|
|
|
|
local dt = now - _last_t
|
|
|
|
_last_t = now
|
|
|
|
local err = target - current
|
|
|
|
_counter = _counter + 1
|
|
|
|
|
|
|
|
local P = _kP * err
|
|
|
|
_I = _I + _kI * err * dt
|
|
|
|
if _iMax then
|
|
|
|
_I = constrain(_I, -_iMax, iMax)
|
|
|
|
end
|
|
|
|
local I = _I
|
|
|
|
local ret = P + I
|
|
|
|
|
|
|
|
_target = target
|
|
|
|
_current = current
|
|
|
|
_P = P
|
|
|
|
_total = ret
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
-- reset integrator to an initial value
|
|
|
|
function self.reset(integrator)
|
|
|
|
_I = integrator
|
|
|
|
end
|
|
|
|
|
|
|
|
function self.set_I(I)
|
|
|
|
_kI = I
|
|
|
|
end
|
|
|
|
|
|
|
|
function self.set_P(P)
|
|
|
|
_kP = P
|
|
|
|
end
|
|
|
|
|
|
|
|
function self.set_Imax(Imax)
|
|
|
|
_iMax = Imax
|
|
|
|
end
|
|
|
|
|
|
|
|
-- log the controller internals
|
|
|
|
function self.log(name, add_total)
|
|
|
|
-- allow for an external addition to total
|
|
|
|
logger.write(name,'Targ,Curr,P,I,Total,Add','ffffff',_target,_current,_P,_I,_total,add_total)
|
|
|
|
end
|
|
|
|
-- return the instance
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-27 17:44:36 -03:00
|
|
|
local function speed_controller(kP_param,kI_param, kFF_pitch_param, Imax)
|
2022-09-22 02:56:21 -03:00
|
|
|
local self = {}
|
|
|
|
local kFF_pitch = kFF_pitch_param
|
|
|
|
local PI = PI_controller(kP_param:get(), kI_param:get(), Imax)
|
|
|
|
|
2022-10-27 17:44:36 -03:00
|
|
|
function self.update(target, anticipated_pitch_rad)
|
2022-09-22 02:56:21 -03:00
|
|
|
local current_speed = ahrs:get_velocity_NED():length()
|
|
|
|
local throttle = PI.update(target, current_speed)
|
2022-10-27 17:44:36 -03:00
|
|
|
local FF = math.sin(anticipated_pitch_rad)*kFF_pitch:get()
|
|
|
|
PI.log("AESP", FF)
|
|
|
|
return throttle + FF
|
2022-09-22 02:56:21 -03:00
|
|
|
end
|
|
|
|
|
|
|
|
function self.reset()
|
|
|
|
PI.reset(0)
|
2022-10-27 17:44:36 -03:00
|
|
|
local temp_throttle = self.update(ahrs:get_velocity_NED():length(), 0)
|
2022-09-22 02:56:21 -03:00
|
|
|
local current_throttle = SRV_Channels:get_output_scaled(k_throttle)
|
|
|
|
PI.reset(current_throttle-temp_throttle)
|
|
|
|
end
|
|
|
|
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-27 17:44:36 -03:00
|
|
|
local speed_PI = speed_controller(SPD_P, SPD_I, THR_PIT_FF, 100.0)
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-24 02:41:59 -03:00
|
|
|
function sgn(x)
|
|
|
|
local eps = 0.000001
|
|
|
|
if (x > eps) then
|
|
|
|
return 1.0
|
|
|
|
elseif x < eps then
|
|
|
|
return -1.0
|
|
|
|
else
|
|
|
|
return 0.0
|
|
|
|
end
|
|
|
|
end
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
function get_wp_location(i)
|
|
|
|
local m = mission:get_item(i)
|
|
|
|
local loc = Location()
|
|
|
|
loc:lat(m:x())
|
|
|
|
loc:lng(m:y())
|
2022-10-06 03:05:31 -03:00
|
|
|
loc:relative_alt(true)
|
2022-09-15 00:52:13 -03:00
|
|
|
loc:terrain_alt(false)
|
|
|
|
loc:origin_alt(false)
|
|
|
|
loc:alt(math.floor(m:z()*100))
|
|
|
|
return loc
|
|
|
|
end
|
|
|
|
|
|
|
|
function resolve_jump(i)
|
|
|
|
local m = mission:get_item(i)
|
|
|
|
while m:command() == DO_JUMP do
|
|
|
|
i = math.floor(m:param1())
|
|
|
|
m = mission:get_item(i)
|
|
|
|
end
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
|
2022-10-27 18:30:13 -03:00
|
|
|
--[[
|
|
|
|
Wrapper to construct a Vector3f{x, y, z} from (x, y, z)
|
|
|
|
--]]
|
|
|
|
function makeVector3f(x, y, z)
|
|
|
|
local vec = Vector3f()
|
|
|
|
vec:x(x)
|
|
|
|
vec:y(y)
|
|
|
|
vec:z(z)
|
|
|
|
return vec
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
|
2022-11-05 01:11:44 -03:00
|
|
|
--[[
|
|
|
|
get quaternion rotation between vector1 and vector2
|
|
|
|
with thanks to https://stackoverflow.com/questions/1171849/finding-quaternion-representing-the-rotation-from-one-vector-to-another
|
|
|
|
--]]
|
|
|
|
function vectors_to_quat_rotation(vector1, vector2)
|
|
|
|
local v1 = vector1:copy()
|
|
|
|
local v2 = vector2:copy()
|
|
|
|
v1:normalize()
|
|
|
|
v2:normalize()
|
|
|
|
local dot = v1:dot(v2)
|
|
|
|
local a = v1:cross(v2)
|
|
|
|
local w = 1.0 + dot
|
|
|
|
local q = Quaternion()
|
|
|
|
q:q1(w)
|
|
|
|
q:q2(a:x())
|
|
|
|
q:q3(a:y())
|
|
|
|
q:q4(a:z())
|
|
|
|
q:normalize()
|
|
|
|
return q
|
|
|
|
end
|
|
|
|
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
|
2022-10-27 18:30:13 -03:00
|
|
|
--[[
|
|
|
|
trajectory building blocks. We have two types of building blocks,
|
|
|
|
roll blocks and path blocks. These are combined to give composite paths
|
|
|
|
--]]
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
--[[
|
|
|
|
all roll components inherit from RollComponent
|
|
|
|
--]]
|
|
|
|
function RollComponent()
|
|
|
|
local self = {}
|
|
|
|
self.name = nil
|
|
|
|
function self.get_roll(t)
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-26 17:19:29 -03:00
|
|
|
--[[
|
|
|
|
roll component that goes through a fixed total angle at a fixed roll rate
|
|
|
|
--]]
|
|
|
|
function roll_angle(_angle)
|
2022-10-28 02:06:34 -03:00
|
|
|
local self = RollComponent()
|
|
|
|
self.name = "roll_angle"
|
2022-10-26 17:19:29 -03:00
|
|
|
local angle = _angle
|
|
|
|
function self.get_roll(t)
|
|
|
|
return angle * t
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-27 00:30:55 -03:00
|
|
|
--[[
|
|
|
|
roll component that banks to _angle over AEROM_ENTRY_RATE
|
|
|
|
degrees/s, then holds that angle, then banks back to zero at
|
|
|
|
AEROM_ENTRY_RATE degrees/s
|
|
|
|
--]]
|
|
|
|
function roll_angle_entry_exit(_angle)
|
2022-10-28 02:06:34 -03:00
|
|
|
local self = RollComponent()
|
|
|
|
self.name = "roll_angle_entry_exit"
|
2022-10-27 00:30:55 -03:00
|
|
|
local angle = _angle
|
|
|
|
local entry_s = math.abs(angle) / AEROM_ENTRY_RATE:get()
|
2022-10-27 03:39:40 -03:00
|
|
|
|
2022-10-27 00:30:55 -03:00
|
|
|
function self.get_roll(t, time_s)
|
|
|
|
local entry_t = entry_s / time_s
|
2022-10-27 03:39:40 -03:00
|
|
|
if entry_t > 0.5 then
|
|
|
|
entry_t = 0.5
|
|
|
|
end
|
2022-10-29 01:35:52 -03:00
|
|
|
if t <= 0 then
|
|
|
|
return 0
|
|
|
|
end
|
2022-10-27 00:30:55 -03:00
|
|
|
if t < entry_t then
|
|
|
|
return angle * t / entry_t
|
|
|
|
end
|
|
|
|
if t < 1.0 - entry_t then
|
|
|
|
return angle
|
|
|
|
end
|
2022-10-29 01:35:52 -03:00
|
|
|
if angle == 0 or t >= 1.0 then
|
2022-10-28 02:06:34 -03:00
|
|
|
return 0
|
|
|
|
end
|
2022-10-27 00:30:55 -03:00
|
|
|
return (1.0 - ((t - (1.0 - entry_t)) / entry_t)) * angle
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
--[[
|
|
|
|
roll component that banks to _angle over AEROM_ENTRY_RATE
|
|
|
|
degrees/s, then holds that angle
|
|
|
|
--]]
|
|
|
|
function roll_angle_entry(_angle)
|
2022-10-28 02:06:34 -03:00
|
|
|
local self = RollComponent()
|
|
|
|
self.name = "roll_angle_entry"
|
2022-10-27 19:01:18 -03:00
|
|
|
local angle = _angle
|
|
|
|
local entry_s = math.abs(angle) / AEROM_ENTRY_RATE:get()
|
|
|
|
|
|
|
|
function self.get_roll(t, time_s)
|
|
|
|
local entry_t = entry_s / time_s
|
|
|
|
if entry_t > 0.5 then
|
|
|
|
entry_t = 0.5
|
|
|
|
end
|
|
|
|
if t < entry_t then
|
|
|
|
return angle * t / entry_t
|
|
|
|
end
|
|
|
|
return angle
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[
|
|
|
|
roll component that holds angle until the end of the subpath, then
|
|
|
|
rolls back to 0 at the AEROM_ENTRY_RATE
|
|
|
|
--]]
|
|
|
|
function roll_angle_exit(_angle)
|
|
|
|
local self = {}
|
2022-10-28 02:06:34 -03:00
|
|
|
self.name = "roll_angle_exit"
|
2022-10-27 19:01:18 -03:00
|
|
|
local angle = _angle
|
|
|
|
local entry_s = math.abs(angle) / AEROM_ENTRY_RATE:get()
|
|
|
|
|
|
|
|
function self.get_roll(t, time_s)
|
|
|
|
local entry_t = entry_s / time_s
|
|
|
|
if t < 1.0 - entry_t then
|
|
|
|
return 0
|
|
|
|
end
|
2022-10-28 02:32:39 -03:00
|
|
|
if angle == 0 then
|
|
|
|
return 0
|
|
|
|
end
|
2022-10-27 19:01:18 -03:00
|
|
|
return ((t - (1.0 - entry_t)) / entry_t) * angle
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
--[[
|
|
|
|
all path components inherit from PathComponent
|
|
|
|
--]]
|
|
|
|
function PathComponent()
|
|
|
|
local self = {}
|
|
|
|
self.name = nil
|
|
|
|
function self.get_pos(t)
|
|
|
|
return makeVector3f(0, 0, 0)
|
|
|
|
end
|
|
|
|
function self.get_length()
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
function self.get_final_orientation()
|
|
|
|
return Quaternion()
|
|
|
|
end
|
2022-10-29 07:17:58 -03:00
|
|
|
function self.get_roll_correction(t)
|
|
|
|
return 0
|
|
|
|
end
|
2022-10-28 02:06:34 -03:00
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
--[[
|
|
|
|
rotate a vector by a quaternion
|
|
|
|
--]]
|
|
|
|
function quat_earth_to_body(quat, v)
|
|
|
|
local v = v:copy()
|
|
|
|
quat:earth_to_body(v)
|
|
|
|
return v
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[
|
|
|
|
rotate a vector by a inverse quaternion
|
|
|
|
--]]
|
|
|
|
function quat_body_to_earth(quat, v)
|
|
|
|
local v = v:copy()
|
|
|
|
quat:inverse():earth_to_body(v)
|
|
|
|
return v
|
|
|
|
end
|
|
|
|
|
2022-10-26 17:19:29 -03:00
|
|
|
--[[
|
|
|
|
path component that does a straight horizontal line
|
|
|
|
--]]
|
|
|
|
function path_straight(_distance)
|
2022-10-28 02:06:34 -03:00
|
|
|
local self = PathComponent()
|
|
|
|
self.name = "path_straight"
|
2022-10-26 17:19:29 -03:00
|
|
|
local distance = _distance
|
|
|
|
function self.get_pos(t)
|
|
|
|
return makeVector3f(distance*t, 0, 0)
|
|
|
|
end
|
|
|
|
function self.get_length()
|
|
|
|
return distance
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[
|
|
|
|
path component that does a vertical arc over a given angle
|
|
|
|
--]]
|
|
|
|
function path_vertical_arc(_radius, _angle)
|
2022-10-28 02:06:34 -03:00
|
|
|
local self = PathComponent()
|
|
|
|
self.name = "path_vertical_arc"
|
2022-10-26 17:19:29 -03:00
|
|
|
local radius = _radius
|
|
|
|
local angle = _angle
|
|
|
|
function self.get_pos(t)
|
2022-10-28 02:06:34 -03:00
|
|
|
local t2ang = wrap_2pi(t * math.rad(angle))
|
2022-10-26 18:55:47 -03:00
|
|
|
return makeVector3f(math.abs(radius)*math.sin(t2ang), 0, -radius*(1.0 - math.cos(t2ang)))
|
2022-10-26 17:19:29 -03:00
|
|
|
end
|
|
|
|
function self.get_length()
|
2022-10-27 01:19:30 -03:00
|
|
|
return math.abs(radius) * 2 * math.pi * math.abs(angle) / 360.0
|
2022-10-26 17:19:29 -03:00
|
|
|
end
|
|
|
|
function self.get_final_orientation()
|
|
|
|
local q = Quaternion()
|
2022-10-28 02:06:34 -03:00
|
|
|
q:from_axis_angle(makeVector3f(0,1,0), sgn(radius)*math.rad(wrap_180(angle)))
|
2022-11-04 22:07:15 -03:00
|
|
|
q:normalize()
|
2022-10-26 17:19:29 -03:00
|
|
|
return q
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-27 00:30:55 -03:00
|
|
|
--[[
|
|
|
|
integrate a function, assuming fn takes a time t from 0 to 1
|
|
|
|
--]]
|
|
|
|
function integrate_length(fn)
|
|
|
|
local total = 0.0
|
|
|
|
local p = fn(0)
|
|
|
|
for i = 1, 100 do
|
|
|
|
local t = i*0.01
|
|
|
|
local p2 = fn(t)
|
|
|
|
local dv = p2 - p
|
|
|
|
total = total + dv:length()
|
|
|
|
p = p2
|
|
|
|
end
|
|
|
|
return total
|
|
|
|
end
|
|
|
|
|
2022-10-26 21:23:40 -03:00
|
|
|
--[[
|
|
|
|
path component that does a horizontal arc over a given angle
|
|
|
|
--]]
|
2022-10-27 00:30:55 -03:00
|
|
|
function path_horizontal_arc(_radius, _angle, _height_gain)
|
2022-10-28 02:06:34 -03:00
|
|
|
local self = PathComponent()
|
|
|
|
self.name = "path_horizontal_arc"
|
2022-10-26 21:23:40 -03:00
|
|
|
local radius = _radius
|
|
|
|
local angle = _angle
|
2022-10-27 00:30:55 -03:00
|
|
|
local height_gain = _height_gain
|
|
|
|
if height_gain == nil then
|
|
|
|
height_gain = 0
|
|
|
|
end
|
2022-10-26 21:23:40 -03:00
|
|
|
function self.get_pos(t)
|
|
|
|
local t2ang = t * math.rad(angle)
|
2022-10-27 00:30:55 -03:00
|
|
|
return makeVector3f(math.abs(radius)*math.sin(t2ang), radius*(1.0 - math.cos(t2ang)), -height_gain*t)
|
2022-10-26 21:23:40 -03:00
|
|
|
end
|
|
|
|
function self.get_length()
|
2022-10-29 01:35:52 -03:00
|
|
|
local circumference = 2 * math.pi * math.abs(radius)
|
|
|
|
local full_circle_height_gain = height_gain * 360.0 / math.abs(angle)
|
|
|
|
local helix_length = math.sqrt(full_circle_height_gain*full_circle_height_gain + circumference*circumference)
|
|
|
|
return helix_length * math.abs(angle) / 360.0
|
2022-10-26 21:23:40 -03:00
|
|
|
end
|
|
|
|
function self.get_final_orientation()
|
|
|
|
local q = Quaternion()
|
|
|
|
q:from_axis_angle(makeVector3f(0,0,1), sgn(radius)*math.rad(angle))
|
2022-10-31 01:14:09 -03:00
|
|
|
--[[
|
|
|
|
we also need to apply the roll correction to the final orientation
|
|
|
|
--]]
|
|
|
|
local rc = self.get_roll_correction(1.0)
|
|
|
|
if rc ~= 0 then
|
|
|
|
local q2 = Quaternion()
|
|
|
|
q2:from_axis_angle(makeVector3f(1,0,0), math.rad(-rc))
|
|
|
|
q = q * q2
|
|
|
|
q:normalize()
|
|
|
|
end
|
2022-10-26 21:23:40 -03:00
|
|
|
return q
|
|
|
|
end
|
2022-10-29 07:17:58 -03:00
|
|
|
|
|
|
|
--[[
|
|
|
|
roll correction for the rotation caused by height gain
|
|
|
|
--]]
|
|
|
|
function self.get_roll_correction(t)
|
|
|
|
if height_gain == 0 then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
local gamma=math.atan(height_gain*(angle/360)/(2*math.pi*radius))
|
|
|
|
return -t*360*math.sin(gamma)
|
|
|
|
end
|
2022-10-26 21:23:40 -03:00
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
--[[
|
|
|
|
a Path has the methods of both RollComponent and
|
|
|
|
PathComponent allowing for a complete description of a subpath
|
|
|
|
--]]
|
|
|
|
function Path(_path_component, _roll_component)
|
|
|
|
local self = {}
|
|
|
|
self.name = string.format("%s|%s", _path_component.name, _roll_component.name)
|
|
|
|
local path_component = _path_component
|
|
|
|
local roll_component = _roll_component
|
|
|
|
function self.get_roll(t, time_s)
|
2022-10-29 07:17:58 -03:00
|
|
|
return wrap_180(roll_component.get_roll(t, time_s) + path_component.get_roll_correction(t))
|
2022-10-28 02:06:34 -03:00
|
|
|
end
|
|
|
|
function self.get_pos(t)
|
|
|
|
return path_component.get_pos(t)
|
|
|
|
end
|
|
|
|
function self.get_speed(t)
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
function self.get_length()
|
|
|
|
return path_component.get_length()
|
|
|
|
end
|
|
|
|
function self.get_final_orientation()
|
|
|
|
return path_component.get_final_orientation()
|
|
|
|
end
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2022-10-26 17:19:29 -03:00
|
|
|
--[[
|
2022-10-27 18:30:13 -03:00
|
|
|
componse multiple sub-paths together to create a full trajectory
|
2022-10-26 17:19:29 -03:00
|
|
|
--]]
|
2022-10-28 02:06:34 -03:00
|
|
|
function path_composer(_name, _subpaths)
|
2022-10-26 17:19:29 -03:00
|
|
|
local self = {}
|
2022-10-28 02:06:34 -03:00
|
|
|
self.name = _name
|
2022-10-26 17:19:29 -03:00
|
|
|
local subpaths = _subpaths
|
|
|
|
local lengths = {}
|
|
|
|
local proportions = {}
|
|
|
|
local start_time = {}
|
|
|
|
local end_time = {}
|
|
|
|
local start_orientation = {}
|
|
|
|
local start_pos = {}
|
|
|
|
local start_angle = {}
|
2022-10-26 21:23:40 -03:00
|
|
|
local end_speed = {}
|
|
|
|
local start_speed = {}
|
2022-10-26 17:19:29 -03:00
|
|
|
local total_length = 0
|
|
|
|
local num_sub_paths = #subpaths
|
2022-10-28 02:06:34 -03:00
|
|
|
local last_subpath_t = { -1, 0, 0 }
|
2022-10-26 17:19:29 -03:00
|
|
|
|
|
|
|
local orientation = Quaternion()
|
|
|
|
local pos = makeVector3f(0,0,0)
|
|
|
|
local angle = 0
|
2022-10-27 19:01:18 -03:00
|
|
|
local speed = target_groundspeed()
|
2022-10-28 02:32:39 -03:00
|
|
|
local highest_i = 0
|
2022-10-30 17:50:27 -03:00
|
|
|
local cache_i = -1
|
|
|
|
local cache_sp = nil
|
2022-11-01 22:16:24 -03:00
|
|
|
local message = nil
|
2022-10-26 17:19:29 -03:00
|
|
|
|
2022-10-30 17:50:27 -03:00
|
|
|
-- return the subpath with index i. Used to cope with two ways of calling path_composer
|
|
|
|
function self.subpath(i)
|
|
|
|
if i == cache_i then
|
|
|
|
return cache_sp
|
|
|
|
end
|
|
|
|
cache_i = i
|
|
|
|
local sp = subpaths[i]
|
|
|
|
if sp.name then
|
|
|
|
-- we are being called with a list of Path objects
|
|
|
|
cache_sp = sp
|
2022-11-01 22:16:24 -03:00
|
|
|
message = nil
|
2022-10-30 17:50:27 -03:00
|
|
|
else
|
|
|
|
-- we are being called with a list function/argument tuples
|
|
|
|
local args = subpaths[i][2]
|
2022-10-31 02:38:53 -03:00
|
|
|
cache_sp = subpaths[i][1](args[1], args[2], args[3], args[4], start_pos[i], start_orientation[i])
|
2022-11-01 22:16:24 -03:00
|
|
|
message = subpaths[i].message
|
2022-10-30 17:50:27 -03:00
|
|
|
end
|
|
|
|
return cache_sp
|
|
|
|
end
|
|
|
|
|
2022-10-26 17:19:29 -03:00
|
|
|
for i = 1, num_sub_paths do
|
|
|
|
-- accumulate orientation, position and angle
|
|
|
|
start_orientation[i] = orientation
|
|
|
|
start_pos[i] = pos
|
|
|
|
start_angle[i] = angle
|
2022-10-31 02:38:53 -03:00
|
|
|
|
|
|
|
local sp = self.subpath(i)
|
|
|
|
lengths[i] = sp.get_length()
|
|
|
|
total_length = total_length + lengths[i]
|
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
local spos = quat_earth_to_body(orientation, sp.get_pos(1.0))
|
|
|
|
|
2022-10-26 18:55:47 -03:00
|
|
|
pos = pos + spos
|
2022-10-30 17:50:27 -03:00
|
|
|
orientation = orientation * sp.get_final_orientation()
|
2022-11-04 22:07:15 -03:00
|
|
|
orientation:normalize()
|
2022-10-30 17:50:27 -03:00
|
|
|
angle = angle + sp.get_roll(1.0, lengths[i]/speed)
|
2022-10-26 21:23:40 -03:00
|
|
|
|
|
|
|
start_speed[i] = speed
|
2022-10-30 17:50:27 -03:00
|
|
|
end_speed[i] = sp.get_speed(1.0)
|
2022-10-26 21:23:40 -03:00
|
|
|
if end_speed[i] == nil then
|
2022-10-27 19:01:18 -03:00
|
|
|
end_speed[i] = target_groundspeed()
|
2022-10-26 21:23:40 -03:00
|
|
|
end
|
|
|
|
speed = end_speed[i]
|
2022-11-02 17:24:38 -03:00
|
|
|
|
|
|
|
if sp.roll_ref ~= nil then
|
|
|
|
q = Quaternion()
|
|
|
|
q:from_axis_angle(makeVector3f(1,0,0), math.rad(sp.roll_ref))
|
|
|
|
orientation = orientation * q
|
2022-11-04 22:07:15 -03:00
|
|
|
orientation:normalize()
|
2022-11-02 17:24:38 -03:00
|
|
|
end
|
2022-10-26 17:19:29 -03:00
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
-- get our final orientation, including roll
|
|
|
|
local final_orientation = orientation
|
|
|
|
local q = Quaternion()
|
|
|
|
q:from_axis_angle(makeVector3f(1,0,0), math.rad(wrap_180(angle)))
|
|
|
|
final_orientation = q * final_orientation
|
|
|
|
|
2022-10-26 17:19:29 -03:00
|
|
|
-- work out the proportion of the total time we will spend in each sub path
|
|
|
|
local total_time = 0
|
|
|
|
for i = 1, num_sub_paths do
|
|
|
|
proportions[i] = lengths[i] / total_length
|
|
|
|
start_time[i] = total_time
|
|
|
|
end_time[i] = total_time + proportions[i]
|
|
|
|
total_time = total_time + proportions[i]
|
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
function self.get_subpath_t(t)
|
|
|
|
if last_subpath_t[1] == t then
|
|
|
|
-- use cached value
|
|
|
|
return last_subpath_t[2], last_subpath_t[3]
|
|
|
|
end
|
2022-10-26 17:19:29 -03:00
|
|
|
local i = 1
|
|
|
|
while t >= end_time[i] and i < num_sub_paths do
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
local subpath_t = (t - start_time[i]) / proportions[i]
|
2022-10-28 02:06:34 -03:00
|
|
|
last_subpath_t = { t, subpath_t, i }
|
2022-10-30 17:50:27 -03:00
|
|
|
local sp = self.subpath(i)
|
2022-10-28 02:32:39 -03:00
|
|
|
if i > highest_i and t < 1.0 and t > 0 then
|
|
|
|
highest_i = i
|
2022-11-01 22:16:24 -03:00
|
|
|
if message ~= nil then
|
|
|
|
gcs:send_text(0, message)
|
|
|
|
end
|
2022-10-28 02:32:39 -03:00
|
|
|
if AEROM_DEBUG:get() > 0 then
|
2022-10-30 17:50:27 -03:00
|
|
|
gcs:send_text(0, string.format("starting %s[%d] %s", self.name, i, sp.name))
|
2022-10-28 02:32:39 -03:00
|
|
|
end
|
|
|
|
end
|
2022-10-28 02:06:34 -03:00
|
|
|
return subpath_t, i
|
|
|
|
end
|
|
|
|
|
|
|
|
-- return position at time t
|
|
|
|
function self.get_pos(t)
|
|
|
|
local subpath_t, i = self.get_subpath_t(t)
|
2022-10-30 17:50:27 -03:00
|
|
|
local sp = self.subpath(i)
|
2022-11-06 19:16:02 -04:00
|
|
|
return quat_earth_to_body(start_orientation[i], sp.get_pos(subpath_t)) + start_pos[i]
|
2022-10-28 02:06:34 -03:00
|
|
|
end
|
|
|
|
|
|
|
|
-- return angle for the composed path at time t
|
|
|
|
function self.get_roll(t, time_s)
|
|
|
|
local subpath_t, i = self.get_subpath_t(t)
|
|
|
|
local speed = self.get_speed(t)
|
|
|
|
if speed == nil then
|
|
|
|
speed = target_groundspeed()
|
|
|
|
end
|
2022-10-30 17:50:27 -03:00
|
|
|
local sp = self.subpath(i)
|
|
|
|
angle = sp.get_roll(subpath_t, lengths[i]/speed)
|
2022-10-28 02:06:34 -03:00
|
|
|
return angle + start_angle[i]
|
|
|
|
end
|
|
|
|
|
|
|
|
-- return speed for the composed path at time t
|
|
|
|
function self.get_speed(t)
|
|
|
|
local subpath_t, i = self.get_subpath_t(t)
|
|
|
|
return start_speed[i] + subpath_t * (end_speed[i] - start_speed[i])
|
2022-10-26 17:19:29 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function self.get_length()
|
|
|
|
return total_length
|
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
function self.get_final_orientation()
|
|
|
|
return final_orientation
|
|
|
|
end
|
|
|
|
|
2022-10-26 17:19:29 -03:00
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-10-30 17:50:27 -03:00
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
--[[
|
|
|
|
make a list of Path() objects from a list of PathComponent, RollComponent pairs
|
|
|
|
--]]
|
|
|
|
function make_paths(name, paths)
|
|
|
|
local p = {}
|
|
|
|
for i = 1, #paths do
|
|
|
|
p[i] = Path(paths[i][1], paths[i][2])
|
2022-11-02 17:24:38 -03:00
|
|
|
if paths[i].roll_ref then
|
|
|
|
p[i].roll_ref = paths[i].roll_ref
|
|
|
|
end
|
2022-10-28 02:06:34 -03:00
|
|
|
end
|
|
|
|
return path_composer(name, p)
|
|
|
|
end
|
|
|
|
|
2022-10-27 18:30:13 -03:00
|
|
|
--[[
|
|
|
|
composed trajectories, does as individual aerobatic maneuvers
|
|
|
|
--]]
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function climbing_circle(radius, height, bank_angle, arg4)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("climbing_circle", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_horizontal_arc(radius, 360, height), roll_angle_entry_exit(bank_angle) },
|
|
|
|
})
|
2022-10-27 18:30:13 -03:00
|
|
|
end
|
|
|
|
|
2022-11-01 00:45:33 -03:00
|
|
|
function half_climbing_circle(radius, height, bank_angle, arg4)
|
|
|
|
return make_paths("half_climbing_circle", {
|
|
|
|
{ path_horizontal_arc(radius, 180, height), roll_angle_entry_exit(bank_angle) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
function loop(radius, bank_angle, num_loops, arg4)
|
2022-10-31 18:32:12 -03:00
|
|
|
if not num_loops or num_loops <= 0 then
|
2022-10-28 02:06:34 -03:00
|
|
|
num_loops = 1
|
|
|
|
end
|
|
|
|
return make_paths("loop", {
|
|
|
|
{ path_vertical_arc(radius, 360*num_loops), roll_angle_entry_exit(bank_angle) },
|
2022-10-27 19:01:18 -03:00
|
|
|
})
|
2022-10-27 18:30:13 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function straight_roll(length, num_rolls, arg3, arg4)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("straight_roll", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_straight(length), roll_angle(num_rolls*360) },
|
|
|
|
})
|
2022-10-27 18:30:13 -03:00
|
|
|
end
|
|
|
|
|
2022-10-31 02:38:53 -03:00
|
|
|
--[[
|
|
|
|
|
|
|
|
fly straight until we are distance meters from the composite path
|
|
|
|
origin in the maneuver frame along the X axis. If we are already
|
|
|
|
past that position then return immediately
|
|
|
|
--]]
|
|
|
|
function straight_align(distance, arg2, arg3, arg4, start_pos, start_orientation)
|
|
|
|
local d2 = distance - start_pos:x()
|
2022-11-06 19:16:02 -04:00
|
|
|
local v = quat_earth_to_body(start_orientation, makeVector3f(d2, 0, 0))
|
2022-10-31 02:38:53 -03:00
|
|
|
local len = math.max(v:x(),0.01)
|
|
|
|
return make_paths("straight_align", {
|
|
|
|
{ path_straight(len), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-11-01 00:45:33 -03:00
|
|
|
function immelmann_turn(r, arg2, arg3, arg4)
|
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("immelmann_turn", {
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(r, 180), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_straight(rabs/2), roll_angle(180) },
|
2022-10-27 19:01:18 -03:00
|
|
|
})
|
2022-10-26 17:19:29 -03:00
|
|
|
end
|
|
|
|
|
2022-11-01 22:16:24 -03:00
|
|
|
-- immelmann with max roll rate
|
|
|
|
function immelmann_turn_fast(r, arg2, arg3, arg4)
|
|
|
|
local rabs = math.abs(r)
|
|
|
|
local roll_time = 180.0 / ACRO_ROLL_RATE:get()
|
|
|
|
local roll_dist = target_groundspeed() * roll_time
|
|
|
|
return make_paths("immelmann_turn_fast", {
|
|
|
|
{ path_vertical_arc(r, 180), roll_angle(0) },
|
|
|
|
{ path_straight(roll_dist), roll_angle(180) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function humpty_bump(r, h, arg3, arg4)
|
2022-10-26 18:55:47 -03:00
|
|
|
assert(h >= 2*r)
|
2022-11-01 00:45:33 -03:00
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("humpty_bump", {
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(r, 90), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(180) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-r, 180), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_straight(h-2*rabs), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-r, 90), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_straight(2*rabs), roll_angle(0) },
|
2022-10-27 19:01:18 -03:00
|
|
|
})
|
2022-10-26 18:55:47 -03:00
|
|
|
end
|
|
|
|
|
2022-11-02 17:24:38 -03:00
|
|
|
function crossbox_humpty(r, h, arg3, arg4)
|
|
|
|
assert(h >= 2*r)
|
|
|
|
local rabs = math.abs(r)
|
|
|
|
return make_paths("crossbox_humpty", {
|
|
|
|
{ path_vertical_arc(r, 90), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(90), roll_ref=90 },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 180), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(-90), roll_ref=-90 },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 90), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function laydown_humpty(r, h, arg3, arg4)
|
|
|
|
assert(h >= 2*r)
|
|
|
|
local rabs = math.abs(r)
|
|
|
|
return make_paths("laydown_humpty", {
|
|
|
|
{ path_vertical_arc(r, 45), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(90), roll_ref=90 },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 180), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(-90), roll_ref=-90 },
|
|
|
|
{ path_straight((h-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(r, 45), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-11-01 00:45:33 -03:00
|
|
|
function split_s(r, arg2, arg3, arg4)
|
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("split_s", {
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_straight(rabs/2), roll_angle(180) },
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_vertical_arc(-r, 180), roll_angle(0) },
|
|
|
|
})
|
2022-10-26 20:08:11 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function upline_45(r, height_gain, arg3, arg4)
|
2022-11-06 23:13:22 -04:00
|
|
|
--local h = (height_gain - 2*r*(1.0-math.cos(math.rad(45))))/math.sin(math.rad(45))
|
|
|
|
local h = (height_gain - (2 * r) + (2 * r * math.cos(math.rad(45)))) / math.cos(math.rad(45))
|
|
|
|
assert(h >= 0)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("upline_45", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_vertical_arc(r, 45), roll_angle(0) },
|
|
|
|
{ path_straight(h), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 45), roll_angle(0) },
|
|
|
|
})
|
2022-10-26 20:08:11 -03:00
|
|
|
end
|
|
|
|
|
2022-11-01 00:45:33 -03:00
|
|
|
function upline_20(r, height_gain, arg3, arg4)
|
|
|
|
local h = (height_gain - 2*r*(1.0-math.cos(math.rad(20))))/math.sin(math.rad(20))
|
|
|
|
assert(h >= 0)
|
|
|
|
return make_paths("upline_45", {
|
|
|
|
{ path_vertical_arc(r, 20), roll_angle(0) },
|
|
|
|
{ path_straight(h), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 20), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function downline_45(r, height_loss, arg3, arg4)
|
|
|
|
local h = (height_loss - 2*r*(1.0-math.cos(math.rad(45))))/math.sin(math.rad(45))
|
|
|
|
assert(h >= 0)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("downline_45", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_vertical_arc(-r, 45), roll_angle(0) },
|
|
|
|
{ path_straight(h), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(r, 45), roll_angle(0) },
|
|
|
|
})
|
2022-10-26 20:08:11 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function rolling_circle(radius, num_rolls, arg3, arg4)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("rolling_circle", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_horizontal_arc(radius, 360), roll_angle(360*num_rolls) },
|
|
|
|
})
|
2022-10-26 21:23:40 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function straight_flight(length, bank_angle, arg3, arg4)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("straight_flight", {
|
2022-10-28 02:32:39 -03:00
|
|
|
{ path_straight(length), roll_angle_entry_exit(bank_angle) },
|
2022-10-27 19:01:18 -03:00
|
|
|
})
|
2022-10-27 00:30:55 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function scale_figure_eight(r, bank_angle, arg3, arg4)
|
2022-11-01 00:45:33 -03:00
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("scale_figure_eight", {
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_straight(rabs), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_horizontal_arc(r, 90), roll_angle_entry_exit(bank_angle) },
|
|
|
|
{ path_horizontal_arc(-r, 360), roll_angle_entry_exit(-bank_angle) },
|
|
|
|
{ path_horizontal_arc(r, 270), roll_angle_entry_exit(bank_angle) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_straight(3*rabs), roll_angle(0) },
|
2022-10-27 19:01:18 -03:00
|
|
|
})
|
2022-10-27 00:30:55 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function figure_eight(r, bank_angle, arg3, arg4)
|
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("figure_eight", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_straight(rabs*math.sqrt(2)), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(r, 225), roll_angle_entry_exit(bank_angle) },
|
|
|
|
{ path_straight(2*rabs), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(-r, 270), roll_angle_entry_exit(-bank_angle) },
|
|
|
|
{ path_straight(2*rabs), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(r, 45), roll_angle_entry_exit(bank_angle) },
|
|
|
|
})
|
2022-10-27 01:19:30 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 00:30:55 -03:00
|
|
|
|
2022-10-26 21:23:40 -03:00
|
|
|
--[[
|
|
|
|
stall turn is not really correct, as we don't fully stall. Needs to be
|
|
|
|
reworked
|
|
|
|
--]]
|
2022-10-27 19:01:18 -03:00
|
|
|
function stall_turn(radius, height, direction, min_speed)
|
|
|
|
local h = height - radius
|
|
|
|
assert(h >= 0)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("stall_turn", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight(h), roll_angle(0), min_speed },
|
|
|
|
{ path_horizontal_arc(5*direction, 180), roll_angle(0), min_speed },
|
|
|
|
{ path_straight(h), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
})
|
2022-10-26 21:23:40 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function half_cuban_eight(r, arg2, arg3, arg4)
|
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("half_cuban_eight", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_straight(2*rabs*math.sqrt(2)), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(r, 225), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(180) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 45), roll_angle(0) },
|
2022-10-27 19:01:18 -03:00
|
|
|
})
|
2022-10-27 01:19:30 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function cuban_eight(r, arg2, arg3, arg4)
|
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("cuban_eight", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_straight(rabs*math.sqrt(2)), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(r, 225), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(180) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 270), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(180) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(r, 45), roll_angle(0) },
|
2022-10-27 19:01:18 -03:00
|
|
|
})
|
2022-10-27 01:19:30 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function half_reverse_cuban_eight(r, arg2, arg3, arg4)
|
|
|
|
local rabs = math.abs(r)
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("half_reverse_cuban_eight", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_vertical_arc(r, 45), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(180) },
|
|
|
|
{ path_straight(2*rabs/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 225), roll_angle(0) },
|
|
|
|
})
|
2022-10-27 01:19:30 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function horizontal_rectangle(total_length, total_width, r, bank_angle)
|
|
|
|
local l = total_length - 2*r
|
|
|
|
local w = total_width - 2*r
|
2022-10-27 03:39:40 -03:00
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("horizontal_rectangle", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_straight(0.5*l), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(r, 90), roll_angle_entry_exit(bank_angle)},
|
|
|
|
{ path_straight(w), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(r, 90), roll_angle_entry_exit(bank_angle) },
|
|
|
|
{ path_straight(l), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(r, 90), roll_angle_entry_exit(bank_angle) },
|
|
|
|
{ path_straight(w), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(r, 90), roll_angle_entry_exit(bank_angle) },
|
|
|
|
{ path_straight(0.5*l), roll_angle(0) },
|
|
|
|
})
|
2022-10-27 03:39:40 -03:00
|
|
|
end
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
function vertical_aerobatic_box(total_length, total_width, r, bank_angle)
|
|
|
|
local l = total_length - 2*r
|
|
|
|
local w = total_width - 2*r
|
2022-10-27 03:39:40 -03:00
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
return make_paths("vertical_aerobatic_box", {
|
2022-10-27 19:01:18 -03:00
|
|
|
{ path_straight(0.5*l), roll_angle_entry(bank_angle) },
|
|
|
|
{ path_vertical_arc(r, 90), roll_angle(0) },
|
|
|
|
{ path_straight(w), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(r, 90), roll_angle(0) },
|
|
|
|
{ path_straight(l), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(r, 90), roll_angle(0) },
|
|
|
|
{ path_straight(w), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(r, 90), roll_angle(0) },
|
|
|
|
{ path_straight(0.5*l), roll_angle_exit(-bank_angle) },
|
|
|
|
})
|
2022-10-27 03:39:40 -03:00
|
|
|
end
|
|
|
|
|
2022-10-28 20:15:02 -03:00
|
|
|
function two_point_roll(length, arg2, arg3, arg4)
|
|
|
|
return make_paths("two_point_roll", {
|
|
|
|
{ path_straight((length*3)/7), roll_angle(180) },
|
|
|
|
{ path_straight(length/7), roll_angle(0) },
|
|
|
|
{ path_straight((length*3)/7), roll_angle(180) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function procedure_turn(radius, bank_angle, step_out, arg4)
|
|
|
|
local rabs = math.abs(radius)
|
|
|
|
return make_paths("procedure_turn", {
|
|
|
|
{ path_straight(rabs), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(radius, 90), roll_angle_entry_exit(bank_angle) },
|
|
|
|
{ path_straight(step_out), roll_angle(0) },
|
|
|
|
{ path_horizontal_arc(-radius, 270), roll_angle_entry_exit(-bank_angle) },
|
|
|
|
{ path_straight(4*rabs), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-11-01 00:45:33 -03:00
|
|
|
function derry_turn(radius, bank_angle, arg3, arg4)
|
|
|
|
return make_paths("derry_turn", {
|
|
|
|
{ path_horizontal_arc(radius, 90), roll_angle_entry_exit(bank_angle) },
|
|
|
|
{ path_horizontal_arc(-radius, 90), roll_angle_entry_exit(-bank_angle) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-28 20:15:02 -03:00
|
|
|
function p23_1(radius, height, width, arg4) -- top hat
|
|
|
|
return make_paths("p23_1", {
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(90) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_straight((height-2*radius)/9), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(90) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((width-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((width-2*radius)/3), roll_angle(180) },
|
|
|
|
{ path_straight((width-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(90) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_straight((height-2*radius)/9), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(90) },
|
|
|
|
{ path_straight((height-2*radius)*2/9), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_2(radius, height, arg3, arg4) -- half square
|
|
|
|
return make_paths("p23_2", {
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(180) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_3(radius, height, arg3, arg4) -- humpty
|
|
|
|
return make_paths("p23_3", {
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/8), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)*6/8), roll_angle(360) },
|
|
|
|
{ path_straight((height-2*radius)/8), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(radius, 180), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(180) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_4(radius, height, arg3, arg4) -- on corner
|
2022-11-01 00:45:33 -03:00
|
|
|
local l = ((height - (2 * radius)) * math.sin(math.rad(45)))
|
2022-10-28 20:15:02 -03:00
|
|
|
return make_paths("p23_4", {
|
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
|
|
|
{ path_straight(l/3), roll_angle(0) },
|
|
|
|
{ path_straight(l/3), roll_angle(180) },
|
|
|
|
{ path_straight(l/3), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
{ path_straight(l/3), roll_angle(0) },
|
|
|
|
{ path_straight(l/3), roll_angle(180) },
|
|
|
|
{ path_straight(l/3), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_5(radius, height_gain, arg3, arg4) -- 45 up - should be 1 1/2 snaps....
|
2022-11-06 23:13:22 -04:00
|
|
|
--local l = (height_gain - 2*radius*(1.0-math.cos(math.rad(45))))/math.sin(math.rad(45))
|
|
|
|
local l = (height_gain - (2 * radius) + (2 * radius * math.cos(math.rad(45)))) / math.cos(math.rad(45))
|
2022-10-28 20:15:02 -03:00
|
|
|
return make_paths("p23_5", {
|
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
|
|
|
{ path_straight(l/3), roll_angle(0) },
|
|
|
|
{ path_straight(l/3), roll_angle(540) },
|
|
|
|
{ path_straight(l/3), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(radius, 45), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_6(radius, height_gain, arg3, arg4) -- 3 sided
|
|
|
|
local l = (height_gain - 2*radius) / ((2*math.sin(math.rad(45))) + 1)
|
|
|
|
return make_paths("p23_6", {
|
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
|
|
|
{ path_straight(l), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
|
|
|
{ path_straight(l), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
{ path_straight(l), roll_angle(0) },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
2022-10-28 20:15:02 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-11-02 16:56:04 -03:00
|
|
|
function p23_7(length, arg2, arg3, arg4) -- roll combination
|
|
|
|
return make_paths("p23_7", {
|
|
|
|
{ path_straight(length*5/22), roll_angle(180) },
|
|
|
|
{ path_straight(length*1/22), roll_angle(0) },
|
|
|
|
{ path_straight(length*5/22), roll_angle(180) },
|
|
|
|
{ path_straight(length*5/22), roll_angle(-180) },
|
|
|
|
{ path_straight(length*1/22), roll_angle(0) },
|
|
|
|
{ path_straight(length*5/22), roll_angle(-180) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_8(radius, height, arg3, arg4) -- immelmann
|
|
|
|
return make_paths("p23_8", {
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-radius, 180), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
{ path_straight(radius/2), roll_angle(180) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_9(radius, height, num_turns, arg4) -- spin (currently a vert down 1/2 roll)
|
|
|
|
return make_paths("p23_9", {
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight(height-2*radius), roll_angle(180) },
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_10(radius, height, arg3, arg4) -- humpty
|
|
|
|
return make_paths("p23_10", {
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(180) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 180), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(180) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_11(radius, height, arg3, arg4) -- laydown loop
|
2022-11-06 23:13:22 -04:00
|
|
|
local rabs = math.abs(radius)
|
|
|
|
local vert_length = height - (2 * rabs)
|
|
|
|
local angle_length = ((2 * rabs) - (2 * (rabs - (rabs * (math.cos(math.rad(45))))))) / math.sin(math.rad(45))
|
2022-11-02 16:56:04 -03:00
|
|
|
return make_paths("p23_11", {
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-radius, 45), roll_angle(0) },
|
|
|
|
{ path_straight(angle_length*2/6), roll_angle(0) },
|
|
|
|
{ path_straight(angle_length*1/6), roll_angle(180) },
|
|
|
|
{ path_straight(angle_length*1/6), roll_angle(-180) },
|
|
|
|
{ path_straight(angle_length*2/6), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(radius, 315), roll_angle(0) },
|
|
|
|
{ path_straight(vert_length*2/9), roll_angle(0) },
|
|
|
|
{ path_straight(vert_length*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(vert_length*1/9), roll_angle(0) },
|
|
|
|
{ path_straight(vert_length*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(vert_length*2/9), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_12(radius, height, arg3, arg4) -- 1/2 square
|
|
|
|
return make_paths("p23_12", {
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(180) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_13(radius, height, arg3, arg4) -- stall turn
|
|
|
|
return make_paths("p23_13", {
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(90) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(90) },
|
|
|
|
{ path_straight((height-2*radius)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-11-06 23:13:22 -04:00
|
|
|
function p23_13a(radius, height, arg3, arg4) -- stall turn PLACE HOLDER
|
|
|
|
assert(height >= 2*radius)
|
|
|
|
local rabs = math.abs(radius)
|
|
|
|
return make_paths("P23_13a", {
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*rabs)/3), roll_angle(90), roll_ref=90 },
|
|
|
|
{ path_straight((height-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 180), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_straight((height-2*rabs)/3), roll_angle(-90), roll_ref=-90 },
|
|
|
|
{ path_straight((height-2*rabs)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
})
|
2022-11-02 16:56:04 -03:00
|
|
|
end
|
|
|
|
|
2022-11-06 23:13:22 -04:00
|
|
|
|
|
|
|
function p23_14(r, h, arg3, arg4) -- fighter turn
|
|
|
|
assert(h >= 2*r)
|
|
|
|
local rabs = math.abs(r)
|
|
|
|
local angle_length = (h - ((0.2929 * rabs)) / (math.sin(math.rad(45)))) - rabs
|
|
|
|
return make_paths("laydown_humpty", {
|
|
|
|
{ path_vertical_arc(-r, 45), roll_angle(0) },
|
|
|
|
{ path_straight((angle_length)/3), roll_angle(0) },
|
|
|
|
{ path_straight((angle_length)/3), roll_angle(90), roll_ref=90 },
|
|
|
|
{ path_straight((angle_length)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 180), roll_angle(0) },
|
|
|
|
{ path_straight((angle_length)/3), roll_angle(0) },
|
|
|
|
{ path_straight((angle_length)/3), roll_angle(-90), roll_ref=-90 },
|
|
|
|
{ path_straight((angle_length)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-r, 45), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-11-02 16:56:04 -03:00
|
|
|
function p23_15(radius, height, arg3, arg4) -- triangle
|
2022-11-06 23:13:22 -04:00
|
|
|
local h1 = radius * math.sin(math.rad(45))
|
|
|
|
local h2 = (2 * radius) - (radius * math.cos(math.rad(45)))
|
|
|
|
local h3 = height - (2 * radius)
|
|
|
|
local side = h3 / math.cos(math.rad(45))
|
|
|
|
--local base = (h3 + (2 * (radius - radius * math.cos(math.rad(45))))) - (2 * radius)
|
|
|
|
local base = (2 * (h3 + radius)) - 2 * radius
|
2022-11-02 16:56:04 -03:00
|
|
|
return make_paths("p23_15", {
|
|
|
|
{ path_straight(base * 1/5), roll_angle(180) },
|
|
|
|
{ path_straight(base * 2/5), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-radius, 135), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
{ path_straight(side*2/9), roll_angle(0) },
|
|
|
|
{ path_straight(side*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(side*1/9), roll_angle(0) },
|
|
|
|
{ path_straight(side*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(side*2/9), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
{ path_straight(side*2/9), roll_angle(0) },
|
|
|
|
{ path_straight(side*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(side*1/9), roll_angle(0) },
|
|
|
|
{ path_straight(side*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(side*2/9), roll_angle(0) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-radius, 135), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
{ path_straight(base * 2/5), roll_angle(0) },
|
|
|
|
{ path_straight(base * 1/5), roll_angle(180) },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_straight(base * 2/5), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_16(radius, height, arg3, arg4) -- sharks tooth
|
2022-11-06 23:13:22 -04:00
|
|
|
local angle_length = (height - 2 * (radius - (radius * math.cos(math.rad(45))))) / math.cos(math.rad(45))
|
|
|
|
local vert_length = height - (2 * radius)
|
2022-11-02 16:56:04 -03:00
|
|
|
return make_paths("p23_16", {
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(-radius, 90), roll_angle(0) },
|
|
|
|
{ path_straight((vert_length)/3), roll_angle(0) },
|
|
|
|
{ path_straight((vert_length)/3), roll_angle(180) },
|
|
|
|
{ path_straight((vert_length)/3), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(-radius, 135), roll_angle(0) },
|
|
|
|
{ path_straight(angle_length*2/9), roll_angle(0) },
|
|
|
|
{ path_straight(angle_length*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(angle_length*1/9), roll_angle(0) },
|
|
|
|
{ path_straight(angle_length*2/9), roll_angle(90) },
|
|
|
|
{ path_straight(angle_length*2/9), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(radius, 45), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function p23_17(radius, arg2, arg3, arg4) -- loop
|
|
|
|
return make_paths("p23_17", {
|
2022-11-06 23:13:22 -04:00
|
|
|
{ path_vertical_arc(radius, 135), roll_angle(0) },
|
|
|
|
{ path_vertical_arc(radius, 90), roll_angle(180) },
|
|
|
|
{ path_vertical_arc(radius, 135), roll_angle(0) },
|
2022-11-02 16:56:04 -03:00
|
|
|
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function half_roll(arg1, arg2, arg3, arg4) -- half roll for testing inverted manouvers
|
|
|
|
return make_paths("half_roll", {
|
|
|
|
{ path_straight(40), roll_angle(180) },
|
|
|
|
{ path_straight(10), roll_angle(0) },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function fai_f3a_box_l_r()
|
2022-11-06 23:13:22 -04:00
|
|
|
return path_composer("f3a_box_l_r", { -- positioned for a flight line 150m out. Flight line 520m total length.
|
2022-11-02 16:56:04 -03:00
|
|
|
-- Script start point is ON CENTER, with the model heading DOWNWIND!
|
|
|
|
{ straight_roll, { 150, 0 } },
|
|
|
|
{ half_reverse_cuban_eight, { 60 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ vertical_aerobatic_box, { 540, 230, 30, 0 }, message="Starting Box Demo"},
|
2022-11-02 16:56:04 -03:00
|
|
|
{ vertical_aerobatic_box, { 540, 230, 30, 0 } },
|
|
|
|
{ vertical_aerobatic_box, { 540, 230, 30, 0 } },
|
|
|
|
{ vertical_aerobatic_box, { 540, 230, 30, 0 } },
|
|
|
|
{ straight_roll, { 50, 0 } }
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-28 20:15:02 -03:00
|
|
|
--[[
|
|
|
|
NZ clubman schedule
|
|
|
|
--]]
|
2022-11-01 00:45:33 -03:00
|
|
|
function nz_clubman() -- positioned for a flight line 100m out
|
|
|
|
-- Script start point is ON CENTER, with the model heading DOWNWIND!
|
|
|
|
return path_composer("nz_clubman_l_r", {
|
|
|
|
--[[
|
2022-10-30 17:50:27 -03:00
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ procedure_turn, { 20, 45, 60 } },
|
|
|
|
{ straight_roll, { 150, 0 } },
|
|
|
|
{ half_reverse_cuban_eight, { 40 } },
|
|
|
|
{ straight_roll, { 150, 0 } },
|
2022-11-01 00:45:33 -03:00
|
|
|
--]]
|
|
|
|
{ straight_roll, { 150, 0 } },
|
|
|
|
{ half_reverse_cuban_eight, { 60 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ cuban_eight, { 60 }, message="Cuban Eight"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -100, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ half_reverse_cuban_eight, { 60 } },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { 40, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ half_reverse_cuban_eight, { 60 }, message="Half Rev Cuban"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -150, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ half_reverse_cuban_eight, { 60 } },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -90, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ two_point_roll, { 180 }, message="Two Point Roll"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { 150, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ half_reverse_cuban_eight, { 60 } },
|
|
|
|
{ straight_align, { 72, 0 } },
|
|
|
|
{ upline_45, { 30, 120 }, message="45 Upline"},
|
|
|
|
{ straight_align, { -180, 0 } }, -- missing the stall turn
|
|
|
|
{ split_s, { 60, 90 } },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -90, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_roll, { 180, 1 }, message="Slow Roll"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { 150, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ half_cuban_eight, { 60 } },
|
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ loop, { 60, 0, 2 }, message="Two Loops"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -180, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ immelmann_turn, { 60, 90 } },
|
|
|
|
{ straight_align, { -72, 0 } },
|
|
|
|
{ downline_45, { 30, 120 }, message="45 Downline"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { 150, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ half_cuban_eight, { 60 } },
|
2022-10-30 17:50:27 -03:00
|
|
|
{ straight_roll, { 100, 0 } },
|
2022-10-28 20:15:02 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[
|
|
|
|
F3A p23, preliminary schedule 2023
|
|
|
|
--]]
|
2022-11-01 00:45:33 -03:00
|
|
|
function f3a_p23_l_r()
|
|
|
|
return path_composer("f3a_p23_l_r", { -- positioned for a flight line 150m out. Flight line 520m total length.
|
|
|
|
-- Script start point is ON CENTER, with the model heading DOWNWIND!
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_roll, { 80, 0 } },
|
|
|
|
{ half_reverse_cuban_eight, { 60 } },
|
|
|
|
{ straight_align, { 130, 0 } },
|
|
|
|
{ p23_1, { 30, 200, 200 }, message="Top Hat"},
|
|
|
|
{ straight_align, { -230, 0 } },
|
|
|
|
{ p23_2, { 30, 200 }, message="Half Square Loop"},
|
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ p23_3, { 30, 200 }, message="Humpty"},
|
|
|
|
{ straight_align, { 160, 0 } },
|
|
|
|
{ p23_4, { 30, 200 }, message="Half Square on Corner"},
|
|
|
|
{ straight_align, { 110, 0 } },
|
|
|
|
{ p23_5, { 30, 200 }, message="45 Up"}, -- snap roll
|
|
|
|
{ straight_align, { -191, 0 } },
|
|
|
|
{ p23_6, { 30, 200 }, message="Half Eight Sided Loop"},
|
2022-11-02 16:56:04 -03:00
|
|
|
{ straight_align, { -100, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ p23_7, { 200 }, message="Roll Combination"},
|
|
|
|
{ straight_align, { 160, 0 } },
|
|
|
|
{ p23_8, { 100 }, message="Immelmann Turn"},
|
2022-11-02 16:56:04 -03:00
|
|
|
{ straight_align, { 30, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ p23_9, { 30, 200 }, message="Should be a Spin"}, -- spin
|
2022-11-02 16:56:04 -03:00
|
|
|
{ straight_align, { -170, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ p23_10, { 30, 200 }, message="Humpty"},
|
|
|
|
{ straight_align, { -91, 0 } },
|
|
|
|
{ p23_11, { 50, 200 }, message="Laydown Loop"},
|
2022-11-02 16:56:04 -03:00
|
|
|
{ straight_align, { 230, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ p23_12, { 30, 200 }, message="Half Square Loop"},
|
2022-11-02 16:56:04 -03:00
|
|
|
{ straight_align, { 30, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ p23_13a, { 30, 200 }, message="Stall Turn"}, -- stall turn
|
|
|
|
{ straight_roll, { 100, 0 } },
|
|
|
|
{ p23_14, { 30, 180 }, message="Fighter Turn"},
|
|
|
|
{ straight_align, { -28, 0 } },
|
|
|
|
{ p23_15, { 30, 200 }, message="Triangle"},
|
|
|
|
{ straight_align, { 230, 0 } },
|
|
|
|
{ p23_16, { 30, 160 }, message="Sharks Tooth"},
|
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ p23_17, { 100 }, message="Loop"},
|
2022-11-02 16:56:04 -03:00
|
|
|
{ straight_roll, { 100, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
})
|
2022-10-28 20:15:02 -03:00
|
|
|
end
|
|
|
|
|
2022-11-01 00:45:33 -03:00
|
|
|
--[[
|
|
|
|
F4C Scale Schedule Example
|
|
|
|
--]]
|
|
|
|
|
|
|
|
function f4c_example_l_r() -- positioned for a flight line nominally 150m out (some manouvers start 30m out)
|
|
|
|
-- Script start point is ON CENTER @ 150m, with the model heading DOWNWIND ie flying Right to Left!
|
|
|
|
return path_composer("f4c_example", {
|
|
|
|
{ straight_roll, { 180, 0 } },
|
|
|
|
{ half_climbing_circle, { -60, 0, -60 } }, -- come in close for the first two manouvers
|
|
|
|
{ straight_roll, { 20, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ scale_figure_eight, { -80, -30 }, message="Scale Figure Eight"},
|
|
|
|
{ straight_roll, { 80, 0 } },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ immelmann_turn, { 50 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
--{ straight_roll, { 340, 0 } },
|
|
|
|
{ climbing_circle, { 80, -125, 30 }, message="Descending 360"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_roll, { 40, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ upline_20, { 80, 25 } }, -- Climb up 25m to base height
|
|
|
|
{ straight_roll, { 20, 0 } },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ half_climbing_circle, { 60, 0, 60 } }, -- Go back out to 150m
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ loop, { 50, 0, 1 }, message="Loop"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -50, 0 } },
|
|
|
|
{ half_reverse_cuban_eight, { 50 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ immelmann_turn, { 50 }, message="Immelmann Turn"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -140, 0 } },
|
|
|
|
{ split_s, { 50 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ half_cuban_eight, { 50 }, message="Half Cuban Eight"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_align, { -180, 0 } },
|
|
|
|
{ half_climbing_circle, { 65, 0, 60 } },
|
|
|
|
{ straight_roll, { 115, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
{ derry_turn, { 65, 60 }, message="Derry Turn"},
|
|
|
|
{ straight_roll, { 200, 0 } },
|
|
|
|
{ half_climbing_circle, { -65, 0, -60 } },
|
|
|
|
{ straight_align, { 0, 0 } },
|
|
|
|
{ climbing_circle, { -80, 0, -30 }, message="Gear Demo"},
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_roll, { 200, 0 } },
|
|
|
|
{ half_climbing_circle, { -65, 0, -60 } },
|
|
|
|
{ straight_align, { 200, 0 } },
|
2022-11-06 23:13:22 -04:00
|
|
|
--{ barrell_roll, { 100, 200 } , message="Barrel Roll"}, -- barrel roll - (radius, length)
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
})
|
|
|
|
end
|
2022-10-28 20:15:02 -03:00
|
|
|
|
2022-11-01 22:16:24 -03:00
|
|
|
--[[
|
|
|
|
simple air show
|
|
|
|
--]]
|
|
|
|
|
|
|
|
function air_show1()
|
|
|
|
return path_composer("AirShow", {
|
2022-11-04 22:17:27 -03:00
|
|
|
{ loop, { 25, 0, 1 }, message="Loop"},
|
|
|
|
{ straight_align, { 80, 0 } },
|
2022-11-01 22:16:24 -03:00
|
|
|
{ half_reverse_cuban_eight, { 25 }, message="HalfReverseCubanEight" },
|
|
|
|
{ straight_align, { 80 } },
|
2022-11-05 04:07:46 -03:00
|
|
|
{ scale_figure_eight, { -40, -45 }, message="ScaleFigureEight" },
|
2022-11-01 22:16:24 -03:00
|
|
|
{ immelmann_turn, { 30 }, message="Immelmann" },
|
2022-11-04 22:17:27 -03:00
|
|
|
{ straight_align, { -40, 0 } },
|
|
|
|
{ straight_roll, { 80, 2 }, message="Roll" },
|
2022-11-01 22:16:24 -03:00
|
|
|
{ straight_align, { 120, 0 } },
|
|
|
|
{ split_s, { 30 }, message="Split-S"},
|
|
|
|
{ straight_align, { 0 } },
|
|
|
|
{ rolling_circle, { -50, 3}, message="RollingCircle" },
|
|
|
|
{ straight_align, { -50, 0 } },
|
|
|
|
{ humpty_bump, { 20, 60 }, message="HumptyBump" },
|
|
|
|
{ straight_align, { 80, 0 } },
|
|
|
|
{ half_cuban_eight, { 25 }, message="HalfCubanEight" },
|
2022-11-04 22:17:27 -03:00
|
|
|
{ straight_align, { 75, 0 } },
|
|
|
|
{ upline_45, { 30, 50 }, message="Upline45", },
|
|
|
|
{ downline_45, { 30, 50 }, message="Downline45" },
|
|
|
|
{ half_reverse_cuban_eight, { 25 }, message="HalfReverseCubanEight" },
|
|
|
|
{ straight_align, { 0 } },
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function air_show3()
|
|
|
|
return path_composer("AirShow3", {
|
|
|
|
{ air_show1, {}, message="AirShowPt1" },
|
|
|
|
{ air_show1, {}, message="AirShowPt2" },
|
|
|
|
{ air_show1, {}, message="AirShowPt3" },
|
2022-11-01 22:16:24 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
function test_all_paths()
|
|
|
|
return path_composer("test_all_paths", {
|
2022-10-30 17:50:27 -03:00
|
|
|
{ figure_eight, { 100, 45 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ loop, { 30, 0, 1 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ horizontal_rectangle, { 100, 100, 20, 45 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ climbing_circle, { 100, 20, 45 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ vertical_aerobatic_box, { 100, 100, 20, 0 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ rolling_circle, { 100, 2, 0, 0 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ half_cuban_eight, { 30, } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ half_reverse_cuban_eight, { 30, } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ cuban_eight, { 30, } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ humpty_bump, { 30, 100 } },
|
|
|
|
{ straight_flight, { 100, 45 } },
|
|
|
|
{ scale_figure_eight, { 100, 45 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ immelmann_turn, { 30, 60 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ split_s, { 30, 60 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ upline_45, { 20, 50 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ downline_45, { 20, 50 } },
|
2022-11-01 00:45:33 -03:00
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ procedure_turn, { 40, 45, 20 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ two_point_roll, { 100 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ derry_turn, { 40, 60 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ half_climbing_circle, { -65, 0, -60 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
--[[
|
|
|
|
{ p23_1, { 20, 150, 150 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ p23_2, { 20, 150 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ p23_3, { 20, 150 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ p23_4, { 20, 150 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ p23_5, { 20, 150 } },
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
{ p23_6, { 20, 150 } }, -- now inverted :-)
|
|
|
|
{ straight_roll, { 20, 0 } },
|
|
|
|
--]]
|
2022-10-28 02:06:34 -03:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-26 20:08:11 -03:00
|
|
|
---------------------------------------------------
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-26 00:59:15 -03:00
|
|
|
--[[
|
|
|
|
target speed is taken as max of target airspeed and current 3D
|
|
|
|
velocity at the start of the maneuver
|
|
|
|
--]]
|
2022-09-15 00:52:13 -03:00
|
|
|
function target_groundspeed()
|
2022-10-26 00:59:15 -03:00
|
|
|
return math.max(ahrs:get_EAS2TAS()*TRIM_ARSPD_CM:get()*0.01, ahrs:get_velocity_NED():length())
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
|
2022-10-31 17:21:11 -03:00
|
|
|
--[[
|
|
|
|
get ground course from AHRS
|
|
|
|
--]]
|
|
|
|
function get_ground_course_deg()
|
|
|
|
local vned = ahrs:get_velocity_NED()
|
|
|
|
return wrap_180(math.deg(math.atan(vned:y(), vned:x())))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
--args:
|
2022-09-15 00:52:13 -03:00
|
|
|
-- path_f: path function returning position
|
|
|
|
-- t: normalised [0, 1] time
|
|
|
|
-- arg1, arg2: arguments for path function
|
|
|
|
-- orientation: maneuver frame orientation
|
2022-10-26 21:23:40 -03:00
|
|
|
--returns: requested position, angle and speed in maneuver frame
|
2022-10-27 19:01:18 -03:00
|
|
|
function rotate_path(path_f, t, orientation, offset)
|
2022-11-06 19:16:02 -04:00
|
|
|
local t = constrain(t, 0, 1)
|
|
|
|
local point = path_f.get_pos(t)
|
|
|
|
local angle = path_f.get_roll(t)
|
|
|
|
local speed = path_f.get_speed(t)
|
|
|
|
local point = quat_earth_to_body(orientation, point)
|
2022-10-28 02:06:34 -03:00
|
|
|
return point+offset, math.rad(angle), speed
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
|
|
|
|
--Given vec1, vec2, returns an (rotation axis, angle) tuple that rotates vec1 to be parallel to vec2
|
|
|
|
--If vec1 and vec2 are already parallel, returns a zero vector and zero angle
|
|
|
|
--Note that the rotation will not be unique.
|
|
|
|
function vectors_to_rotation(vector1, vector2)
|
2022-11-06 19:16:02 -04:00
|
|
|
local axis = vector1:cross(vector2)
|
2022-09-15 00:52:13 -03:00
|
|
|
if axis:length() < 0.00001 then
|
|
|
|
local vec = Vector3f()
|
|
|
|
vec:x(1)
|
|
|
|
return vec, 0
|
|
|
|
end
|
|
|
|
axis:normalize()
|
2022-11-06 19:16:02 -04:00
|
|
|
local angle = vector1:angle(vector2)
|
2022-09-15 00:52:13 -03:00
|
|
|
return axis, angle
|
|
|
|
end
|
|
|
|
|
|
|
|
--returns Quaternion
|
|
|
|
function vectors_to_rotation_w_roll(vector1, vector2, roll)
|
2022-11-06 19:16:02 -04:00
|
|
|
local axis, angle = vectors_to_rotation(vector1, vector2)
|
2022-09-15 00:52:13 -03:00
|
|
|
local vector_rotation = Quaternion()
|
|
|
|
vector_rotation:from_axis_angle(axis, angle)
|
|
|
|
|
|
|
|
local roll_rotation = Quaternion()
|
|
|
|
roll_rotation:from_euler(roll, 0, 0)
|
|
|
|
|
|
|
|
local total_rot = vector_rotation*roll_rotation
|
|
|
|
return to_axis_and_angle(total_rot)
|
|
|
|
end
|
|
|
|
|
|
|
|
--Given vec1, vec2, returns an angular velocity tuple that rotates vec1 to be parallel to vec2
|
|
|
|
--If vec1 and vec2 are already parallel, returns a zero vector and zero angle
|
|
|
|
function vectors_to_angular_rate(vector1, vector2, time_constant)
|
2022-11-06 19:16:02 -04:00
|
|
|
local axis, angle = vectors_to_rotation(vector1, vector2)
|
|
|
|
local angular_velocity = angle/time_constant
|
2022-09-15 00:52:13 -03:00
|
|
|
return axis:scale(angular_velocity)
|
|
|
|
end
|
|
|
|
|
|
|
|
function vectors_to_angular_rate_w_roll(vector1, vector2, time_constant, roll)
|
2022-11-06 19:16:02 -04:00
|
|
|
local axis, angle = vectors_to_rotation_w_roll(vector1, vector2, roll)
|
|
|
|
local angular_velocity = angle/time_constant
|
2022-09-15 00:52:13 -03:00
|
|
|
return axis:scale(angular_velocity)
|
|
|
|
end
|
|
|
|
|
2022-10-27 18:30:13 -03:00
|
|
|
-- convert a quaternion to axis angle form
|
2022-09-15 00:52:13 -03:00
|
|
|
function to_axis_and_angle(quat)
|
|
|
|
local axis_angle = Vector3f()
|
|
|
|
quat:to_axis_angle(axis_angle)
|
2022-11-06 19:16:02 -04:00
|
|
|
local angle = axis_angle:length()
|
2022-10-27 18:30:13 -03:00
|
|
|
if angle < 0.00001 then
|
2022-09-15 00:52:13 -03:00
|
|
|
return makeVector3f(1.0, 0.0, 0.0), 0.0
|
|
|
|
end
|
|
|
|
return axis_angle:scale(1.0/angle), angle
|
|
|
|
end
|
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
--projects x onto the othogonal subspace of span(unit_v)
|
|
|
|
function ortho_proj(x, unit_v)
|
|
|
|
local temp_x = unit_v:cross(x)
|
|
|
|
return unit_v:cross(temp_x)
|
|
|
|
end
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
-- log a pose from position and quaternion attitude
|
|
|
|
function log_pose(logname, pos, quat)
|
|
|
|
logger.write(logname, 'px,py,pz,q1,q2,q3,q4,r,p,y','ffffffffff',
|
|
|
|
pos:x(),
|
|
|
|
pos:y(),
|
|
|
|
pos:z(),
|
|
|
|
quat:q1(),
|
|
|
|
quat:q2(),
|
|
|
|
quat:q3(),
|
|
|
|
quat:q4(),
|
|
|
|
math.deg(quat:get_euler_roll()),
|
|
|
|
math.deg(quat:get_euler_pitch()),
|
|
|
|
math.deg(quat:get_euler_yaw()))
|
|
|
|
end
|
|
|
|
|
2022-10-26 00:38:34 -03:00
|
|
|
--[[
|
|
|
|
check if a number is Nan.
|
|
|
|
--]]
|
|
|
|
function isNaN(value)
|
|
|
|
-- NaN is lua is not equal to itself
|
|
|
|
return value ~= value
|
|
|
|
end
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
function Vec3IsNaN(v)
|
|
|
|
return isNaN(v:x()) or isNaN(v:y()) or isNaN(v:z())
|
|
|
|
end
|
|
|
|
|
|
|
|
function qIsNaN(q)
|
|
|
|
return isNaN(q:q1()) or isNaN(q:q2()) or isNaN(q:q3()) or isNaN(q:q4())
|
|
|
|
end
|
|
|
|
|
2022-11-04 22:07:15 -03:00
|
|
|
--[[
|
|
|
|
return the body y projection down, this is the c.y element of the equivalent rotation matrix
|
|
|
|
--]]
|
|
|
|
function quat_projection_ground_plane(q)
|
|
|
|
local q1q2 = q:q1() * q:q2()
|
|
|
|
local q3q4 = q:q3() * q:q4()
|
|
|
|
return 2.0 * (q3q4 + q1q2)
|
|
|
|
end
|
|
|
|
|
2022-09-15 00:52:13 -03:00
|
|
|
path_var.count = 0
|
|
|
|
|
2022-10-25 02:43:03 -03:00
|
|
|
function do_path()
|
2022-09-15 00:52:13 -03:00
|
|
|
local now = millis():tofloat() * 0.001
|
2022-11-06 19:16:02 -04:00
|
|
|
local ahrs_pos_NED = ahrs:get_relative_position_NED_origin()
|
|
|
|
local ahrs_pos = ahrs:get_position()
|
|
|
|
local ahrs_gyro = ahrs:get_gyro()
|
|
|
|
local ahrs_velned = ahrs:get_velocity_NED()
|
|
|
|
local ahrs_airspeed = ahrs:airspeed_estimate()
|
|
|
|
--[[
|
|
|
|
ahrs_quat is the quaterion which when used with quat_earth_to_body() rotates a vector
|
|
|
|
from earth to body frame. It needs to be the inverse of ahrs:get_quaternion()
|
|
|
|
--]]
|
|
|
|
local ahrs_quat = ahrs:get_quaternion():inverse()
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
path_var.count = path_var.count + 1
|
|
|
|
local target_dt = 1.0/LOOP_RATE
|
2022-10-25 02:43:03 -03:00
|
|
|
local path = current_task.fn
|
|
|
|
|
|
|
|
if not current_task.started then
|
|
|
|
local initial_yaw_deg = current_task.initial_yaw_deg
|
|
|
|
current_task.started = true
|
2022-10-26 17:19:29 -03:00
|
|
|
|
|
|
|
local speed = target_groundspeed()
|
|
|
|
path_var.target_speed = speed
|
|
|
|
|
2022-10-27 19:01:18 -03:00
|
|
|
path_var.length = path.get_length()
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
path_var.total_rate_rads_ef = makeVector3f(0.0, 0.0, 0.0)
|
|
|
|
|
|
|
|
--assuming constant velocity
|
|
|
|
path_var.total_time = path_var.length/speed
|
2022-10-28 02:06:34 -03:00
|
|
|
path_var.last_pos = path.get_pos(0) --position at t0
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
--deliberately only want yaw component, because the maneuver should be performed relative to the earth, not relative to the initial orientation
|
2022-11-05 01:11:44 -03:00
|
|
|
path_var.initial_ori = Quaternion()
|
2022-09-15 00:52:13 -03:00
|
|
|
path_var.initial_ori:from_euler(0, 0, math.rad(initial_yaw_deg))
|
2022-11-07 17:40:04 -04:00
|
|
|
path_var.initial_ori = path_var.initial_ori
|
2022-11-05 01:11:44 -03:00
|
|
|
path_var.initial_ori:normalize()
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
path_var.initial_ef_pos = ahrs_pos_NED:copy()
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
path_var.start_pos = ahrs_pos:copy()
|
2022-09-15 00:52:13 -03:00
|
|
|
path_var.path_int = path_var.start_pos:copy()
|
|
|
|
|
2022-09-22 02:56:21 -03:00
|
|
|
speed_PI.reset()
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
|
|
|
|
path_var.accumulated_orientation_rel_ef = path_var.initial_ori
|
|
|
|
|
|
|
|
path_var.time_correction = 0.0
|
|
|
|
|
|
|
|
path_var.filtered_angular_velocity = Vector3f()
|
|
|
|
|
2022-11-05 01:11:44 -03:00
|
|
|
path_var.last_time = now - 1.0/LOOP_RATE
|
2022-11-05 05:11:24 -03:00
|
|
|
path_var.sideslip_angle_rad = { 0.0, 0.0 }
|
|
|
|
path_var.ff_yaw_rate_rads = 0.0
|
|
|
|
path_var.last_q_change_t = 1.0 / LOOP_RATE
|
2022-11-06 19:16:02 -04:00
|
|
|
path_var.last_ang_rate_dps = ahrs_gyro:scale(math.deg(1))
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-05 01:11:44 -03:00
|
|
|
path_var.path_t = 0.0
|
|
|
|
|
|
|
|
path_var.pos = path_var.initial_ef_pos:copy()
|
|
|
|
path_var.roll = 0.0
|
|
|
|
path_var.speed = nil
|
2022-11-07 17:40:04 -04:00
|
|
|
|
|
|
|
-- get initial tangent
|
|
|
|
local p1, r1, s1 = rotate_path(path, path_var.path_t + 0.1/(path_var.total_time*LOOP_RATE),
|
|
|
|
path_var.initial_ori, path_var.initial_ef_pos)
|
|
|
|
path_var.tangent = p1 - path_var.pos
|
2022-10-06 03:05:31 -03:00
|
|
|
return true
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
local vel_length = ahrs_velned:length()
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
local actual_dt = now - path_var.last_time
|
2022-11-05 01:11:44 -03:00
|
|
|
path_var.last_time = now
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
local local_n_dt = actual_dt/path_var.total_time
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-05 01:11:44 -03:00
|
|
|
if path_var.path_t + local_n_dt > 1.0 then
|
|
|
|
-- all done
|
2022-09-22 02:56:21 -03:00
|
|
|
return false
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
|
2022-11-05 01:11:44 -03:00
|
|
|
-- airspeed, assume we don't go below min
|
2022-11-06 19:16:02 -04:00
|
|
|
local airspeed_constrained = math.max(ARSPD_FBW_MIN:get(), ahrs_airspeed)
|
2022-11-05 01:11:44 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
--[[
|
|
|
|
calculate positions and angles at previous, current and next time steps
|
|
|
|
--]]
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-05 01:11:44 -03:00
|
|
|
local p0 = path_var.pos:copy()
|
|
|
|
local r0 = path_var.roll
|
|
|
|
local s0 = path_var.speed
|
|
|
|
local p1, r1, s1 = rotate_path(path, path_var.path_t + local_n_dt,
|
|
|
|
path_var.initial_ori, path_var.initial_ef_pos)
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
local current_measured_pos_ef = ahrs_pos_NED:copy()
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
--[[
|
|
|
|
get tangents to the path
|
|
|
|
--]]
|
2022-11-05 01:11:44 -03:00
|
|
|
local tangent1_ef = path_var.tangent:copy()
|
|
|
|
local tangent2_ef = p1 - p0
|
2022-10-28 02:06:34 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
local tv_unit = tangent2_ef:copy()
|
2022-10-28 02:06:34 -03:00
|
|
|
if tv_unit:length() < 0.00001 then
|
2022-10-28 02:32:39 -03:00
|
|
|
gcs:send_text(0, string.format("path not advancing %f", tv_unit:length()))
|
2022-10-28 02:06:34 -03:00
|
|
|
end
|
2022-10-06 03:05:31 -03:00
|
|
|
tv_unit:normalize()
|
|
|
|
|
|
|
|
--[[
|
|
|
|
use actual vehicle velocity to calculate how far along the
|
|
|
|
path we have progressed
|
|
|
|
--]]
|
2022-11-06 19:16:02 -04:00
|
|
|
local v = ahrs_velned:copy()
|
2022-10-06 03:05:31 -03:00
|
|
|
local path_dist = v:dot(tv_unit)*actual_dt
|
|
|
|
if path_dist < 0 then
|
2022-11-05 01:11:44 -03:00
|
|
|
gcs:send_text(0, string.format("aborting %.2f at %d tv=(%.2f,%.2f,%.2f) vx=%.2f adt=%.2f",
|
|
|
|
path_dist, path_var.count,
|
|
|
|
tangent2_ef:x(),
|
|
|
|
tangent2_ef:y(),
|
|
|
|
tangent2_ef:z(),
|
|
|
|
v:x(), actual_dt))
|
2022-10-06 03:05:31 -03:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
local path_t_delta = constrain(path_dist/path_var.length, 0.2*local_n_dt, 4*local_n_dt)
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
--[[
|
|
|
|
recalculate the current path position and angle based on actual delta time
|
|
|
|
--]]
|
2022-11-06 19:16:02 -04:00
|
|
|
local p1, r1, s1 = rotate_path(path,
|
|
|
|
constrain(path_var.path_t + path_t_delta, 0, 1),
|
|
|
|
path_var.initial_ori, path_var.initial_ef_pos)
|
2022-10-29 04:49:02 -03:00
|
|
|
|
2022-11-05 04:07:46 -03:00
|
|
|
local last_path_t = path_var.path_t
|
2022-10-29 04:49:02 -03:00
|
|
|
path_var.path_t = path_var.path_t + path_t_delta
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
-- tangents needs to be recalculated
|
2022-11-05 01:11:44 -03:00
|
|
|
tangent2_ef = p1 - p0
|
2022-10-06 03:05:31 -03:00
|
|
|
tv_unit = tangent2_ef:copy()
|
|
|
|
tv_unit:normalize()
|
2022-10-06 01:49:19 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
-- error in position versus current point on the path
|
|
|
|
local pos_error_ef = current_measured_pos_ef - p1
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
--[[
|
|
|
|
calculate a time correction. We first get the projection of
|
|
|
|
the position error onto the track. This tells us how far we
|
|
|
|
are ahead or behind on the track
|
|
|
|
--]]
|
|
|
|
local path_dist_err_m = tv_unit:dot(pos_error_ef)
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
-- normalize against the total path length
|
|
|
|
local path_err_t = path_dist_err_m / path_var.length
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
-- don't allow the path to go backwards in time, or faster than twice the actual rate
|
|
|
|
path_err_t = constrain(path_err_t, -0.9*path_t_delta, 2*path_t_delta)
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
-- correct time to bring us back into sync
|
|
|
|
path_var.path_t = path_var.path_t + TIME_CORR_P:get() * path_err_t
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-11-05 04:07:46 -03:00
|
|
|
-- get the path again with the corrected time
|
|
|
|
p1, r1, s1 = rotate_path(path,
|
|
|
|
constrain(path_var.path_t, 0, 1),
|
|
|
|
path_var.initial_ori, path_var.initial_ef_pos)
|
|
|
|
|
|
|
|
-- recalculate the tangent to match the amount we advanced the path time
|
|
|
|
tangent2_ef = p1 - p0
|
|
|
|
|
|
|
|
-- get the real world time corresponding to the quaternion change
|
|
|
|
local q_change_t = (path_var.path_t - last_path_t) * path_var.total_time
|
|
|
|
|
|
|
|
-- low pass filter the demanded roll angle
|
|
|
|
r1 = path_var.roll + wrap_pi(r1 - path_var.roll)
|
|
|
|
local alpha = calc_lowpass_alpha(q_change_t, AEROM_ANG_TC:get())
|
|
|
|
r1 = (1.0 - alpha) * path_var.roll + alpha * r1
|
|
|
|
r1 = wrap_pi(r1)
|
|
|
|
|
|
|
|
path_var.tangent = tangent2_ef:copy()
|
|
|
|
path_var.pos = p1:copy()
|
|
|
|
path_var.roll = r1
|
|
|
|
path_var.speed = s1
|
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
|
|
|
|
--[[
|
|
|
|
calculation of error correction, calculating acceleration
|
|
|
|
needed to bring us back on the path, and body rates in pitch and
|
|
|
|
yaw to achieve those accelerations
|
|
|
|
--]]
|
|
|
|
|
|
|
|
-- component of pos_err perpendicular to the current path tangent
|
|
|
|
local B = ortho_proj(pos_error_ef, tv_unit)
|
|
|
|
|
|
|
|
-- derivative of pos_err perpendicular to the current path tangent, assuming tangent is constant
|
|
|
|
local B_dot = ortho_proj(v, tv_unit)
|
|
|
|
|
|
|
|
-- gains for error correction.
|
|
|
|
local acc_err_ef = B:scale(ERR_CORR_P:get()) + B_dot:scale(ERR_CORR_D:get())
|
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
local acc_err_bf = quat_earth_to_body(ahrs_quat, acc_err_ef)
|
2022-10-06 03:05:31 -03:00
|
|
|
|
2022-11-04 22:07:15 -03:00
|
|
|
local TAS = constrain(ahrs:get_EAS2TAS()*airspeed_constrained, 3, 100)
|
2022-10-06 03:05:31 -03:00
|
|
|
local corr_rate_bf_y_rads = -acc_err_bf:z()/TAS
|
|
|
|
local corr_rate_bf_z_rads = acc_err_bf:y()/TAS
|
|
|
|
|
|
|
|
local cor_ang_vel_bf_rads = makeVector3f(0.0, corr_rate_bf_y_rads, corr_rate_bf_z_rads)
|
2022-10-28 02:06:34 -03:00
|
|
|
if Vec3IsNaN(cor_ang_vel_bf_rads) then
|
|
|
|
cor_ang_vel_bf_rads = makeVector3f(0,0,0)
|
|
|
|
end
|
2022-10-06 03:05:31 -03:00
|
|
|
local cor_ang_vel_bf_dps = cor_ang_vel_bf_rads:scale(math.deg(1))
|
|
|
|
|
2022-11-04 22:07:15 -03:00
|
|
|
if path_var.count < 2 then
|
|
|
|
cor_ang_vel_bf_dps = Vector3f()
|
|
|
|
end
|
|
|
|
|
2022-11-05 02:10:45 -03:00
|
|
|
--[[
|
|
|
|
get the quaternion rotation between tangent1_ef and tangent2_ef
|
|
|
|
--]]
|
|
|
|
local q_delta = vectors_to_quat_rotation(tangent1_ef, tangent2_ef)
|
2022-10-06 03:05:31 -03:00
|
|
|
|
|
|
|
--[[
|
|
|
|
work out body frame path rate, this is based on two adjacent tangents on the path
|
|
|
|
--]]
|
2022-11-05 02:10:45 -03:00
|
|
|
local path_rate_ef_rads = Vector3f()
|
|
|
|
q_delta:to_axis_angle(path_rate_ef_rads)
|
2022-11-06 02:53:20 -04:00
|
|
|
path_rate_ef_rads = path_rate_ef_rads:scale(1.0/actual_dt)
|
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
if Vec3IsNaN(path_rate_ef_rads) then
|
|
|
|
gcs:send_text(0,string.format("path_rate_ef_rads: NaN"))
|
|
|
|
path_rate_ef_rads = makeVector3f(0,0,0)
|
|
|
|
end
|
2022-10-06 03:05:31 -03:00
|
|
|
local path_rate_ef_dps = path_rate_ef_rads:scale(math.deg(1))
|
2022-11-05 01:11:44 -03:00
|
|
|
if path_var.count < 3 then
|
|
|
|
-- cope with small initial misalignment
|
|
|
|
path_rate_ef_dps:z(0)
|
|
|
|
end
|
2022-11-06 19:16:02 -04:00
|
|
|
local path_rate_bf_dps = quat_earth_to_body(ahrs_quat, path_rate_ef_dps)
|
2022-10-06 03:05:31 -03:00
|
|
|
|
|
|
|
-- set the path roll rate
|
2022-11-06 02:53:20 -04:00
|
|
|
path_rate_bf_dps:x(math.deg(wrap_pi(r1 - r0)/actual_dt))
|
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
|
|
|
|
--[[
|
|
|
|
calculate body frame roll rate to achieved the desired roll
|
|
|
|
angle relative to the maneuver path
|
|
|
|
--]]
|
2022-11-06 02:53:20 -04:00
|
|
|
local zero_roll_angle_delta = Quaternion()
|
|
|
|
zero_roll_angle_delta:from_angular_velocity(path_rate_ef_rads, actual_dt)
|
|
|
|
path_var.accumulated_orientation_rel_ef = zero_roll_angle_delta*path_var.accumulated_orientation_rel_ef
|
2022-10-06 03:05:31 -03:00
|
|
|
path_var.accumulated_orientation_rel_ef:normalize()
|
2022-11-06 02:53:20 -04:00
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
local mf_axis = quat_earth_to_body(path_var.accumulated_orientation_rel_ef, makeVector3f(1, 0, 0))
|
2022-09-15 00:52:13 -03:00
|
|
|
|
|
|
|
local orientation_rel_mf_with_roll_angle = Quaternion()
|
2022-10-06 03:05:31 -03:00
|
|
|
orientation_rel_mf_with_roll_angle:from_axis_angle(mf_axis, r1)
|
2022-09-15 00:52:13 -03:00
|
|
|
orientation_rel_ef_with_roll_angle = orientation_rel_mf_with_roll_angle*path_var.accumulated_orientation_rel_ef
|
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
--[[
|
|
|
|
calculate the error correction for the roll versus the desired roll
|
|
|
|
--]]
|
2022-11-06 19:16:02 -04:00
|
|
|
local roll_error = orientation_rel_ef_with_roll_angle * ahrs_quat
|
2022-09-15 00:52:13 -03:00
|
|
|
roll_error:normalize()
|
2022-10-06 03:05:31 -03:00
|
|
|
local err_axis_ef, err_angle_rad = to_axis_and_angle(roll_error)
|
2022-09-15 00:52:13 -03:00
|
|
|
local time_const_roll = ROLL_CORR_TC:get()
|
2022-10-06 03:05:31 -03:00
|
|
|
local err_angle_rate_ef_rads = err_axis_ef:scale(err_angle_rad/time_const_roll)
|
2022-11-06 19:16:02 -04:00
|
|
|
local err_angle_rate_bf_dps = quat_earth_to_body(ahrs_quat,err_angle_rate_ef_rads):scale(math.deg(1))
|
2022-10-06 03:05:31 -03:00
|
|
|
-- zero any non-roll components
|
|
|
|
err_angle_rate_bf_dps:y(0)
|
|
|
|
err_angle_rate_bf_dps:z(0)
|
|
|
|
|
2022-11-04 22:07:15 -03:00
|
|
|
--[[
|
|
|
|
calculate an additional yaw rate to get us to the right angle of sideslip for knifeedge
|
|
|
|
--]]
|
2022-11-05 02:10:45 -03:00
|
|
|
local g_force = (path_rate_ef_rads:cross(v)):scale(1.0/GRAVITY_MSS)
|
|
|
|
local specific_force_g_ef = g_force - makeVector3f(0,0,-1)
|
2022-11-06 19:16:02 -04:00
|
|
|
local specific_force_g_bf = quat_earth_to_body(orientation_rel_ef_with_roll_angle, specific_force_g_ef)
|
2022-11-05 05:11:24 -03:00
|
|
|
local airspeed_scaling = SCALING_SPEED:get()/airspeed_constrained
|
2022-11-05 02:10:45 -03:00
|
|
|
|
|
|
|
local sideslip_rad = specific_force_g_bf:y() * (airspeed_scaling*airspeed_scaling) * math.rad(AEROM_KE_ANG:get())
|
2022-11-05 05:11:24 -03:00
|
|
|
local ff_yaw_rate_rads1 = -(sideslip_rad - path_var.sideslip_angle_rad[2]) / q_change_t
|
|
|
|
local ff_yaw_rate_rads2 = -(path_var.sideslip_angle_rad[2] - path_var.sideslip_angle_rad[1]) / path_var.last_q_change_t
|
|
|
|
local ff_yaw_rate_rads = 0.5 * (ff_yaw_rate_rads1 + ff_yaw_rate_rads2)
|
2022-11-04 22:07:15 -03:00
|
|
|
|
2022-11-07 17:40:04 -04:00
|
|
|
if path_var.count <= 4 then
|
2022-11-04 22:07:15 -03:00
|
|
|
-- prevent an initialisation issue
|
|
|
|
ff_yaw_rate_rads = 0.0
|
|
|
|
end
|
|
|
|
|
2022-11-05 05:11:24 -03:00
|
|
|
ff_yaw_rate_rads = 0.8 * path_var.ff_yaw_rate_rads + 0.2 * ff_yaw_rate_rads
|
|
|
|
path_var.ff_yaw_rate_rads = ff_yaw_rate_rads
|
|
|
|
|
|
|
|
path_var.sideslip_angle_rad[1] = path_var.sideslip_angle_rad[2]
|
|
|
|
path_var.sideslip_angle_rad[2] = sideslip_rad
|
|
|
|
path_var.last_q_change_t = q_change_t
|
|
|
|
|
2022-11-04 22:07:15 -03:00
|
|
|
local sideslip_rate_bf_dps = makeVector3f(0, 0, ff_yaw_rate_rads):scale(math.deg(1))
|
|
|
|
|
2022-10-06 03:05:31 -03:00
|
|
|
--[[
|
|
|
|
total angular rate is sum of path rate, correction rate and roll correction rate
|
|
|
|
--]]
|
2022-11-04 22:07:15 -03:00
|
|
|
local tot_ang_vel_bf_dps = path_rate_bf_dps + cor_ang_vel_bf_dps + err_angle_rate_bf_dps + sideslip_rate_bf_dps
|
|
|
|
|
|
|
|
--[[
|
|
|
|
apply angular accel limit
|
|
|
|
--]]
|
|
|
|
local ang_rate_diff_dps = tot_ang_vel_bf_dps - path_var.last_ang_rate_dps
|
2022-11-06 02:53:20 -04:00
|
|
|
local max_delta_dps = AEROM_ANG_ACCEL:get() * actual_dt
|
2022-11-04 22:07:15 -03:00
|
|
|
if max_delta_dps > 0 then
|
|
|
|
ang_rate_diff_dps:x(constrain(ang_rate_diff_dps:x(), -max_delta_dps, max_delta_dps))
|
|
|
|
ang_rate_diff_dps:y(constrain(ang_rate_diff_dps:y(), -max_delta_dps, max_delta_dps))
|
|
|
|
ang_rate_diff_dps:z(constrain(ang_rate_diff_dps:z(), -max_delta_dps, max_delta_dps))
|
|
|
|
tot_ang_vel_bf_dps = path_var.last_ang_rate_dps + ang_rate_diff_dps
|
|
|
|
end
|
|
|
|
path_var.last_ang_rate_dps = tot_ang_vel_bf_dps
|
2022-10-06 03:05:31 -03:00
|
|
|
|
|
|
|
|
|
|
|
--[[
|
|
|
|
log POSM is pose-measured, POST is pose-track, POSB is pose-track without the roll
|
|
|
|
--]]
|
2022-11-06 19:16:02 -04:00
|
|
|
log_pose('POSM', current_measured_pos_ef, ahrs_quat:inverse())
|
2022-10-06 03:05:31 -03:00
|
|
|
log_pose('POST', p1, orientation_rel_ef_with_roll_angle)
|
|
|
|
|
2022-11-05 04:07:46 -03:00
|
|
|
logger.write('AETM', 'T,Terr,QCt,Adt','ffff',
|
2022-10-06 03:05:31 -03:00
|
|
|
path_var.path_t,
|
2022-11-05 04:07:46 -03:00
|
|
|
path_err_t,
|
|
|
|
q_change_t,
|
|
|
|
actual_dt)
|
2022-10-06 03:05:31 -03:00
|
|
|
|
2022-11-05 04:07:46 -03:00
|
|
|
logger.write('AERT','Cx,Cy,Cz,Px,Py,Pz,Ex,Tx,Ty,Tz,Perr,Aerr,Yff,SS', 'ffffffffffffff',
|
2022-10-06 03:05:31 -03:00
|
|
|
cor_ang_vel_bf_dps:x(), cor_ang_vel_bf_dps:y(), cor_ang_vel_bf_dps:z(),
|
|
|
|
path_rate_bf_dps:x(), path_rate_bf_dps:y(), path_rate_bf_dps:z(),
|
|
|
|
err_angle_rate_bf_dps:x(),
|
2022-11-03 04:29:28 -03:00
|
|
|
tot_ang_vel_bf_dps:x(), tot_ang_vel_bf_dps:y(), tot_ang_vel_bf_dps:z(),
|
|
|
|
pos_error_ef:length(),
|
2022-11-04 22:07:15 -03:00
|
|
|
wrap_180(math.deg(err_angle_rad)),
|
2022-11-05 04:07:46 -03:00
|
|
|
math.deg(ff_yaw_rate_rads),
|
|
|
|
math.deg(sideslip_rad))
|
2022-10-06 03:05:31 -03:00
|
|
|
|
|
|
|
--log_pose('POSB', p1, path_var.accumulated_orientation_rel_ef)
|
|
|
|
|
|
|
|
--[[
|
|
|
|
run the throttle based speed controller
|
|
|
|
--]]
|
2022-10-26 21:23:40 -03:00
|
|
|
if s1 == nil then
|
|
|
|
s1 = path_var.target_speed
|
|
|
|
end
|
2022-10-27 17:44:36 -03:00
|
|
|
|
|
|
|
--[[
|
|
|
|
get the anticipated pitch at the throttle lookahead time
|
|
|
|
we use the maximum of the current path pitch and the anticipated pitch
|
|
|
|
--]]
|
|
|
|
local qchange = Quaternion()
|
|
|
|
qchange:from_angular_velocity(path_rate_ef_rads, AEROM_THR_LKAHD:get())
|
|
|
|
local qnew = qchange * orientation_rel_ef_with_roll_angle
|
|
|
|
local anticipated_pitch_rad = math.max(qnew:get_euler_pitch(), orientation_rel_ef_with_roll_angle:get_euler_pitch())
|
|
|
|
|
2022-11-06 19:16:02 -04:00
|
|
|
local throttle = speed_PI.update(s1, anticipated_pitch_rad)
|
2022-09-15 00:52:13 -03:00
|
|
|
throttle = constrain(throttle, 0, 100.0)
|
2022-10-06 03:05:31 -03:00
|
|
|
|
2022-10-28 02:06:34 -03:00
|
|
|
if isNaN(throttle) or Vec3IsNaN(tot_ang_vel_bf_dps) then
|
2022-10-26 00:38:34 -03:00
|
|
|
gcs:send_text(0,string.format("Path NaN - aborting"))
|
|
|
|
return false
|
|
|
|
end
|
2022-10-06 03:05:31 -03:00
|
|
|
|
|
|
|
vehicle:set_target_throttle_rate_rpy(throttle, tot_ang_vel_bf_dps:x(), tot_ang_vel_bf_dps:y(), tot_ang_vel_bf_dps:z())
|
2022-10-29 04:43:31 -03:00
|
|
|
|
|
|
|
if now - last_named_float_t > 1.0 / NAME_FLOAT_RATE then
|
|
|
|
last_named_float_t = now
|
|
|
|
gcs:send_named_float("PERR", pos_error_ef:length())
|
|
|
|
end
|
|
|
|
|
2022-09-22 02:56:21 -03:00
|
|
|
return true
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
|
2022-10-25 02:43:03 -03:00
|
|
|
--[[
|
|
|
|
an object defining a path
|
|
|
|
--]]
|
|
|
|
function PathFunction(fn, name)
|
|
|
|
local self = {}
|
|
|
|
self.fn = fn
|
|
|
|
self.name = name
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2022-11-08 01:08:03 -04:00
|
|
|
local command_table = {}
|
2022-10-25 02:43:03 -03:00
|
|
|
command_table[1] = PathFunction(figure_eight, "Figure Eight")
|
|
|
|
command_table[2] = PathFunction(loop, "Loop")
|
|
|
|
command_table[3] = PathFunction(horizontal_rectangle, "Horizontal Rectangle")
|
|
|
|
command_table[4] = PathFunction(climbing_circle, "Climbing Circle")
|
|
|
|
command_table[5] = PathFunction(vertical_aerobatic_box, "Vertical Box")
|
2022-11-01 22:16:24 -03:00
|
|
|
command_table[6] = PathFunction(immelmann_turn_fast, "Immelmann Fast")
|
2022-10-25 02:43:03 -03:00
|
|
|
command_table[7] = PathFunction(straight_roll, "Axial Roll")
|
|
|
|
command_table[8] = PathFunction(rolling_circle, "Rolling Circle")
|
|
|
|
command_table[9] = PathFunction(half_cuban_eight, "Half Cuban Eight")
|
|
|
|
command_table[10]= PathFunction(half_reverse_cuban_eight, "Half Reverse Cuban Eight")
|
|
|
|
command_table[11]= PathFunction(cuban_eight, "Cuban Eight")
|
|
|
|
command_table[12]= PathFunction(humpty_bump, "Humpty Bump")
|
|
|
|
command_table[13]= PathFunction(straight_flight, "Straight Flight")
|
|
|
|
command_table[14]= PathFunction(scale_figure_eight, "Scale Figure Eight")
|
2022-10-26 17:19:29 -03:00
|
|
|
command_table[15]= PathFunction(immelmann_turn, "Immelmann Turn")
|
2022-10-26 20:08:11 -03:00
|
|
|
command_table[16]= PathFunction(split_s, "Split-S")
|
|
|
|
command_table[17]= PathFunction(upline_45, "Upline-45")
|
|
|
|
command_table[18]= PathFunction(downline_45, "Downline-45")
|
2022-10-26 21:23:40 -03:00
|
|
|
command_table[19]= PathFunction(stall_turn, "Stall Turn")
|
2022-11-01 00:45:33 -03:00
|
|
|
command_table[20]= PathFunction(procedure_turn, "Procedure Turn")
|
|
|
|
command_table[21]= PathFunction(derry_turn, "Derry Turn")
|
|
|
|
command_table[22]= PathFunction(two_point_roll, "Two Point Roll")
|
|
|
|
command_table[23]= PathFunction(half_climbing_circle, "Half Climbing Circle")
|
2022-11-02 17:24:38 -03:00
|
|
|
command_table[24]= PathFunction(crossbox_humpty, "Crossbox Humpty")
|
|
|
|
command_table[25]= PathFunction(laydown_humpty, "Laydown Humpty")
|
2022-10-28 02:06:34 -03:00
|
|
|
command_table[200] = PathFunction(test_all_paths, "Test Suite")
|
2022-10-28 20:15:02 -03:00
|
|
|
command_table[201] = PathFunction(nz_clubman, "NZ Clubman")
|
2022-11-01 00:45:33 -03:00
|
|
|
command_table[202] = PathFunction(f3a_p23_l_r, "FAI F3A P23 L to R")
|
|
|
|
command_table[203] = PathFunction(f4c_example_l_r, "FAI F4C Example L to R")
|
2022-11-01 22:16:24 -03:00
|
|
|
command_table[204] = PathFunction(air_show1, "AirShow")
|
2022-11-02 16:56:04 -03:00
|
|
|
command_table[205] = PathFunction(fai_f3a_box_l_r, "FAI F3A Aerobatic Box Demonstration")
|
2022-11-04 22:17:27 -03:00
|
|
|
command_table[206] = PathFunction(air_show3, "AirShow3")
|
2022-09-22 03:41:18 -03:00
|
|
|
|
2022-11-08 01:08:03 -04:00
|
|
|
|
|
|
|
--[[
|
|
|
|
a table of function available in loadable tricks
|
|
|
|
--]]
|
|
|
|
local load_table = {}
|
|
|
|
load_table["loop"] = loop
|
|
|
|
load_table["horizontal_rectangle"] = horizontal_rectangle
|
|
|
|
load_table["climbing_circle"] = climbing_circle
|
|
|
|
load_table["vertical_aerobatic_box"] = vertical_aerobatic_box
|
|
|
|
load_table["immelmann_turn_fast"] = immelmann_turn_fast
|
|
|
|
load_table["straight_roll"] = straight_roll
|
|
|
|
load_table["rolling_circle"] = rolling_circle
|
|
|
|
load_table["half_cuban_eight"] = half_cuban_eight
|
|
|
|
load_table["half_reverse_cuban_eight"] = half_reverse_cuban_eight
|
|
|
|
load_table["cuban_eight"] = cuban_eight
|
|
|
|
load_table["humpty_bump"] = humpty_bump
|
|
|
|
load_table["straight_flight"] = straight_flight
|
|
|
|
load_table["scale_figure_eight"] = scale_figure_eight
|
|
|
|
load_table["immelmann_turn"] = immelmann_turn
|
|
|
|
load_table["split_s"] = split_s
|
|
|
|
load_table["upline_45"] = upline_45
|
|
|
|
load_table["downline_45"] = downline_45
|
|
|
|
load_table["stall_turn"] = stall_turn
|
|
|
|
load_table["procedure_turn"] = procedure_turn
|
|
|
|
load_table["derry_turn"] = derry_turn
|
|
|
|
load_table["two_point_roll"] = two_point_roll
|
|
|
|
load_table["half_climbing_circle"] = half_climbing_circle
|
|
|
|
load_table["crossbox_humpty"] = crossbox_humpty
|
|
|
|
load_table["laydown_humpty"] = laydown_humpty
|
|
|
|
load_table["straight_align"] = straight_align
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[
|
|
|
|
load a trick description from a text file
|
|
|
|
--]]
|
|
|
|
function load_trick(id)
|
|
|
|
if command_table[id] ~= nil then
|
|
|
|
-- already have it
|
|
|
|
return
|
|
|
|
end
|
2022-11-09 17:42:51 -04:00
|
|
|
-- look in 3 possible locations for the trick, coping with SITL and real boards
|
|
|
|
local trickdirs = { "APM/scripts/", "scripts/", "./" }
|
|
|
|
local file = nil
|
2022-11-08 01:08:03 -04:00
|
|
|
local fname = string.format("trick%u.txt", id)
|
2022-11-09 17:42:51 -04:00
|
|
|
for i = 1, #trickdirs do
|
|
|
|
file = io.open(trickdirs[i] .. fname, "r")
|
|
|
|
if file then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2022-11-08 01:08:03 -04:00
|
|
|
if file == nil then
|
|
|
|
gcs:send_text(0,string.format("Failed to open %s", fname))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local name = string.format("Trick%u", id)
|
|
|
|
local paths = {}
|
|
|
|
local message = nil
|
|
|
|
while true do
|
|
|
|
local line = file:read()
|
|
|
|
if not line then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
local _, _, cmd, arg1, arg2, arg3, arg4 = string.find(line, "^([%w_:]+)%s*([-.%d]*)%s*([-.%d]*)%s*([-.%d]*)%s*([-.%d]*)")
|
|
|
|
if cmd == "" or cmd == nil or string.sub(cmd,1,1) == "#" then
|
|
|
|
-- ignore comments
|
|
|
|
elseif cmd == "name:" then
|
|
|
|
_, _, name = string.find(line, "^name:%s*([%w_]+)$")
|
|
|
|
elseif cmd == "message:" then
|
|
|
|
_, _, message = string.find(line, "^message:%s*(.+)$")
|
|
|
|
elseif cmd ~= nil then
|
|
|
|
arg1 = tonumber(arg1) or 0
|
|
|
|
arg2 = tonumber(arg2) or 0
|
|
|
|
arg3 = tonumber(arg3) or 0
|
|
|
|
arg4 = tonumber(arg4) or 0
|
|
|
|
local f = load_table[cmd]
|
|
|
|
if f == nil then
|
|
|
|
gcs:send_text(0,string.format("Unknown command '%s' in %s", cmd, fname))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
paths[#paths+1] = { f, { arg1, arg2, arg3, arg4 }}
|
|
|
|
if message ~= nil then
|
|
|
|
paths[#paths].message = message
|
|
|
|
message = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local pc = path_composer(name, paths)
|
|
|
|
gcs:send_text(0, string.format("Loaded trick%u '%s'", id, name))
|
|
|
|
command_table[id] = PathFunction(pc, name)
|
|
|
|
end
|
|
|
|
|
2022-10-25 02:43:03 -03:00
|
|
|
function PathTask(fn, name, id, initial_yaw_deg, arg1, arg2, arg3, arg4)
|
|
|
|
self = {}
|
2022-11-08 01:08:03 -04:00
|
|
|
if type(fn) == "table" then
|
|
|
|
self.fn = fn
|
|
|
|
else
|
|
|
|
self.fn = fn(arg1, arg2, arg3, arg4)
|
|
|
|
end
|
2022-10-25 02:43:03 -03:00
|
|
|
self.name = name
|
|
|
|
self.id = id
|
|
|
|
self.initial_yaw_deg = initial_yaw_deg
|
|
|
|
self.started = false
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
|
|
|
-- see if an auto mission item needs to be run
|
|
|
|
function check_auto_mission()
|
|
|
|
id, cmd, arg1, arg2, arg3, arg4 = vehicle:nav_script_time()
|
|
|
|
if not id then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if id ~= last_id then
|
|
|
|
-- we've started a new command
|
|
|
|
current_task = nil
|
|
|
|
last_id = id
|
2022-10-31 17:21:11 -03:00
|
|
|
local initial_yaw_deg = get_ground_course_deg()
|
2022-11-08 01:08:03 -04:00
|
|
|
load_trick(cmd)
|
2022-10-25 02:43:03 -03:00
|
|
|
gcs:send_text(0, string.format("Starting %s!", command_table[cmd].name ))
|
|
|
|
|
|
|
|
-- work out yaw between previous WP and next WP
|
|
|
|
local cnum = mission:get_current_nav_index()
|
|
|
|
-- find previous nav waypoint
|
|
|
|
local loc_prev = get_wp_location(cnum-1)
|
|
|
|
local loc_next = get_wp_location(cnum+1)
|
|
|
|
local i= cnum-1
|
|
|
|
while get_wp_location(i):lat() == 0 and get_wp_location(i):lng() == 0 do
|
|
|
|
i = i-1
|
|
|
|
loc_prev = get_wp_location(i)
|
|
|
|
end
|
|
|
|
-- find next nav waypoint
|
|
|
|
i = cnum+1
|
|
|
|
while get_wp_location(i):lat() == 0 and get_wp_location(i):lng() == 0 do
|
|
|
|
i = i+1
|
|
|
|
loc_next = get_wp_location(resolve_jump(i))
|
|
|
|
end
|
2022-10-26 00:48:24 -03:00
|
|
|
local wp_yaw_deg = math.deg(loc_prev:get_bearing(loc_next))
|
2022-10-25 02:43:03 -03:00
|
|
|
if math.abs(wrap_180(initial_yaw_deg - wp_yaw_deg)) > 90 then
|
|
|
|
gcs:send_text(0, string.format("Doing turnaround!"))
|
|
|
|
wp_yaw_deg = wrap_180(wp_yaw_deg + 180)
|
|
|
|
end
|
|
|
|
initial_yaw_deg = wp_yaw_deg
|
|
|
|
current_task = PathTask(command_table[cmd].fn, command_table[cmd].name,
|
|
|
|
id, initial_yaw_deg, arg1, arg2, arg3, arg4)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local last_trick_action_state = 0
|
|
|
|
local trick_sel_chan = nil
|
|
|
|
local last_trick_selection = nil
|
|
|
|
|
|
|
|
--[[
|
|
|
|
get selected trick. Trick numbers are 1 .. TRIK_COUNT. A value of 0 is invalid
|
|
|
|
--]]
|
|
|
|
function get_trick_selection()
|
|
|
|
if trick_sel_chan == nil then
|
|
|
|
trick_sel_chan = rc:find_channel_for_option(TRIK_SEL_FN:get())
|
|
|
|
if trick_sel_chan == nil then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- get trick selection based on selection channel input and number of tricks
|
|
|
|
local i = math.floor(TRIK_COUNT:get() * constrain(0.5*(trick_sel_chan:norm_input_ignore_trim()+1),0,0.999)+1)
|
|
|
|
if TRICKS[i] == nil then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[
|
|
|
|
check for running a trick
|
|
|
|
--]]
|
|
|
|
function check_trick()
|
|
|
|
local selection = get_trick_selection()
|
|
|
|
local action = rc:get_aux_cached(TRIK_ACT_FN:get())
|
|
|
|
if action == 0 and current_task ~= nil then
|
|
|
|
gcs:send_text(0,string.format("Trick aborted"))
|
|
|
|
current_task = nil
|
|
|
|
last_trick_selection = nil
|
|
|
|
-- use invalid mode to disable script control
|
|
|
|
vehicle:nav_scripting_enable(255)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if selection == 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if action == 1 and selection ~= last_trick_selection then
|
|
|
|
local id = TRICKS[selection].id:get()
|
2022-11-08 01:08:03 -04:00
|
|
|
load_trick(id)
|
2022-10-25 02:43:03 -03:00
|
|
|
if command_table[id] ~= nil then
|
|
|
|
local cmd = command_table[id]
|
|
|
|
gcs:send_text(0, string.format("Trick %u selected (%s)", selection, cmd.name))
|
|
|
|
last_trick_selection = selection
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if current_task ~= nil then
|
|
|
|
-- let the task finish
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if action ~= last_trick_action_state then
|
|
|
|
last_trick_selection = selection
|
|
|
|
last_trick_action_state = action
|
|
|
|
if selection == 0 then
|
|
|
|
gcs:send_text(0, string.format("No trick selected"))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local id = TRICKS[selection].id:get()
|
2022-11-08 01:08:03 -04:00
|
|
|
load_trick(id)
|
2022-10-25 02:43:03 -03:00
|
|
|
if command_table[id] == nil then
|
|
|
|
gcs:send_text(0, string.format("Invalid trick ID %u", id))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local cmd = command_table[id]
|
|
|
|
if action == 1 then
|
|
|
|
gcs:send_text(0, string.format("Trick %u selected (%s)", selection, cmd.name))
|
|
|
|
end
|
|
|
|
if action == 2 then
|
|
|
|
last_trick_selection = nil
|
|
|
|
local current_mode = vehicle:get_mode()
|
|
|
|
if not vehicle:nav_scripting_enable(current_mode) then
|
|
|
|
gcs:send_text(0, string.format("Tricks not available in mode"))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
gcs:send_text(0, string.format("Trick %u started (%s)", selection, cmd.name))
|
2022-10-31 17:21:11 -03:00
|
|
|
local initial_yaw_deg = get_ground_course_deg()
|
2022-10-25 02:43:03 -03:00
|
|
|
current_task = PathTask(cmd.fn,
|
|
|
|
cmd.name,
|
|
|
|
nil,
|
|
|
|
initial_yaw_deg,
|
|
|
|
TRICKS[selection].args[1]:get(),
|
|
|
|
TRICKS[selection].args[2]:get(),
|
|
|
|
TRICKS[selection].args[3]:get(),
|
|
|
|
TRICKS[selection].args[4]:get())
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2022-09-15 00:52:13 -03:00
|
|
|
function update()
|
2022-10-06 03:05:31 -03:00
|
|
|
|
2022-11-04 22:17:27 -03:00
|
|
|
if vehicle:get_mode() == MODE_AUTO then
|
|
|
|
check_auto_mission()
|
|
|
|
elseif TRICKS ~= nil then
|
2022-10-25 02:43:03 -03:00
|
|
|
check_trick()
|
|
|
|
end
|
2022-09-15 00:52:13 -03:00
|
|
|
|
2022-10-25 02:43:03 -03:00
|
|
|
if current_task ~= nil then
|
|
|
|
if not do_path() then
|
|
|
|
gcs:send_text(0, string.format("Finishing %s!", current_task.name))
|
|
|
|
if current_task.id ~= nil then
|
|
|
|
vehicle:nav_script_time_done(current_task.id)
|
|
|
|
else
|
|
|
|
-- use invalid mode to disable script control
|
|
|
|
vehicle:nav_scripting_enable(255)
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
2022-10-25 02:43:03 -03:00
|
|
|
current_task = nil
|
2022-09-15 00:52:13 -03:00
|
|
|
end
|
|
|
|
end
|
2022-10-25 02:43:03 -03:00
|
|
|
|
2022-09-15 00:52:13 -03:00
|
|
|
return update, 1000.0/LOOP_RATE
|
|
|
|
end
|
|
|
|
|
|
|
|
return update()
|